#include "stdafx.h" using namespace System; void main() { Char a = L'A'; // character literal 'A' Char b = L'\x0041'; // hex notation for hex 41 ('A') Console::WriteLine ( a ); Console::WriteLine ( b ); }