C++ in a Nutshell
| wchar_t type | Wide-character type specifier |
| simple-type-specifier := wchar_t |
The wchar_t type specifier denotes a wide character. The representation and interpretation of wide characters is implementation-defined.
Example
wchar_t Hellas[] = L"\u0397\u03b5\u03bb\u03bb\u03b1\u03c2";
See Also
char , type , Chapter 1, Chapter 2