Mega Code Archive
Categories
/
Visual C++ .NET
/
Data Type
Unicode hexadecimal escape
#include "stdafx.h" using namespace System; void main() { Char e = L'\x0045'; // Unicode hexadecimal escape Console::WriteLine ( e ); }