Compiler Error C3850

'char': a universal-character-name specifies an invalid character

With the exception of 0x24, 0x40, and 0x60, characters in the range of 0 to 0x9f cannot be represented with a universal character name (UCN).

Example

The following samples generate C3850:

// C3850.cpp
int main() {
   int \u0019 = 0;   // C3850, can't represent this char as UCN
}