On 11/13/13 10:18 AM, Dmitry Olshansky wrote:
As Vladimir said:
0xFF for char
0xFFFF for wchar
0x10_FFFF for dchar
Alternatives for w/dchar :
all in range of 0xFDD0-0xFDEF
0xFFFE and 0xFFFF
0x1FFFE and 0x1FFFF
0x2FFFE and 0x2FFFF
and so on, up to
0x10FFFE and 0x10FFFF
Relevant passage from the Unicode standard:
Noncharacters are code points that are permanently reserved in the
Unicode Standard for internal use. They are forbidden for use in open
interchange of Unicode text data.
Great, thanks folks.
Andrei