windows 有哪些语言使用双字节字符?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/6698356/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 17:26:23  来源:igfitidea点击:

What are all the languages use double byte characters?

windowsdouble-byte

提问by svv

Can anyone point me to the list of languages that use double byte characters?

谁能指出我使用双字节字符的语言列表?

Thanks,

谢谢,

回答by Jim Jeffries

Most languages will support this in some way. I would recommend you have a read of this excellent articleby Joel Spolsky (a co-founder of this site) on character encodings.

大多数语言都会以某种方式支持这一点。我建议您阅读Joel Spolsky(本网站的联合创始人)撰写的关于字符编码的这篇优秀文章

回答by Hans Passant

DBCS is a property of a code page. A code page needs double-byte characters when it needs to encode more than 128 non-ASCII glyphs. On Windows that's

DBCS 是代码页的属性。当代码页需要对超过 128 个非 ASCII 字形进行编码时,它需要双字节字符。在 Windows 上

  • 932, Japanese
  • 936, Simplified Chinese
  • 949, Korean
  • 950, Traditional Chinese
  • 932,日本人
  • 936, 简体中文
  • 949,韩语
  • 950,繁体中文

There are probably more, IBM and Oracle defined their own. This is all a bad memory, Unicode rules.

可能还有更多,IBM 和 Oracle 定义了自己的。这都是坏记忆,Unicode 规则。