这是我得到错误。为了解释,我想根据http://www.endmemo.com/unicode/unicodeconverter.php打印 → 字符
代码是 2192。但如果是这样,我可能使用了错误的代码,正确的打印方式是什么 → 。
int _tmain(int argc, _TCHAR* argv[])
{
UINT oldcp = GetConsoleOutputCP();
SetConsoleOutputCP(CP_UTF8);
cout<<"\x2192"<<endl;
SetConsoleOutputCP(oldcp);
return 0;
}