Search code examples
visual-c++unicodeutf-16ucs2

UCS2 vs UTF. What languages can not be displayed in the UCS2 encoding?


UCS2 easier to use in Visual C++, than UTF encoding. What languages I can not support in UCS2 encoding?


Solution

  • 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

    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.