Reputation: 6871
UCS2 easier to use in Visual C++, than UTF encoding. What languages I can not support in UCS2 encoding?
Upvotes: 4
Views: 1232
Reputation: 34418
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.
Upvotes: 4
Reputation: 65884
The Unicode.org website includes an index of code blocks in code order from which you can see that as of Unicode 6.0, plane 1 includes:
and plane 2 includes:
Upvotes: 1