如何将特殊字符 (0x80..0x9F) 写入 Windows 控制台?
我想要这样的代码:
System.Console.Out.WriteLine ("œil");
显示 œil
而不是 oil
,就像我的测试程序中那样。
Console.OutputEncoding
默认设置为 西欧 (DOS)
(CodePage
设置为 850,WindowsCodePage
设置为到 1252)在我的系统上。字符集包含特殊的 OE 和 oe 双元符号(如 有关 Windows-1252 的维基百科文章所示)但不知何故,我怀疑在 ISO-8859-1 设置被丢弃/替换。
â
、ç
等字符可以在控制台上正确显示,但扩展 0x80 ... 0x9F 范围内的任何字符则无法正确显示。
如何才能在控制台上正确显示它们?
I would like to have this code:
System.Console.Out.WriteLine ("œil");
display œil
instead of oil
as it does in my test program.
The Console.OutputEncoding
is set by default to Western European (DOS)
(CodePage
set to 850 and WindowsCodePage
set to 1252) on my system. The character set contains the special OE and oe diphtongs (as can be seen on the Wikipedia article on Windows-1252) but somehow, I suspect that the characters not found in the ISO-8859-1 set get discarded/replaced.
Characters such as â
, ç
, etc. get properly displayed on the console, but any character in the extended 0x80 ... 0x9F range are not.
How can I properly display them on the console?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
不要忘记为控制台窗口选择支持您需要的字符的字体。这是我的控制台窗口使用 Consolas 字体的屏幕截图。
Like this:
Don't forget to select a font for your console window that supports the characters you need. This is a screen shot of my console window using the Consolas font.
您可以像这样在控制台上设置输出编码......
You could set the output encoding on the console like this...