Want to type symbol(â) in unicode in Visual Studio C++ program. Try this:
cout << "Let \u00E2";
but puts out some kind of cyrillic letter (probably because Windows OS is Russian?) Code page Visual C++ using seems to be 65001 (which is UTF-8), but not sure how can I check this.