char32_t
From Just Solve the File Format Problem
C++ char32_t is guaranteed to never use less bits than char16_t and to be no less than 32 bits wide. This means that it can successfully store any UCS-4 character value.
Character literal must use single quotes preceding with the letter U (For example U'貓'
). It is also possible to use octal or hexadecimal representation to produce literals.
char32_t is considered to be enumerable (thus you can use characters in constructs like switch).