本文介绍了UCS2 与 UTF.UCS2编码不能显示哪些语言?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
UCS2 比 UTF 编码更易于在 Visual C++ 中使用.UCS2 编码不支持哪些语言?
UCS2 easier to use in Visual C++, than UTF encoding. What languages I can not support in UCS2 encoding?
推荐答案
没有任何你可能关心的,或者更重要的是,有字体.UCS2 为您提供基本的多语言平面;您可以在 Unicode 站点上找到指定平面的概述
Nothing you're likely to care about or, more to the point, have fonts for. UCS2 gives you the Basic Multilingual Plane; you can find overviews of the assigned planes on the Unicode site
- 0 - 基本多语言平面
- 1 - 补充多语言平面(古代符号、克林贡语等)
- 2 - Supplementary Ideagraphic Plane(中日韩统一表意文字扩展)
- 3 - 第三表意平面(古汉字)
- 14 - Supplementary Special-Purpose Plane(标签字符和变体 - ?)
- 0 - Basic Multilingual Plane
- 1 - Supplementary Multilingual Plane (ancient symbols, Klingon, etc.)
- 2 - Supplementary Ideagraphic Plane (CJK unified ideographs extensions)
- 3 - Tertiary Ideographic Plane (ancient Chinese characters)
- 14 - Supplementary Special-Purpose Plane (tag characters and variations - ?)
当然,如果你真的有 UTF-16 支持,那么你无论如何都可以访问所有这些,但如果你问是否可以忽略那些,那么实际上,可能是的.
Of course if you really have UTF-16 support then you can access all of these anyway but if you're asking if you can ignore those then, in practice, probably yes.
这篇关于UCS2 与 UTF.UCS2编码不能显示哪些语言?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!