visual studio 2012 - Display chinese characters in console application -
i have following console app in visual studio
#include "stdafx.h" #include <iostream> using namespace std; int _tmain(int argc, _tchar* argv[]) { wcout << "displaystringstest_data" << endl; wcout << l"列举" << endl; wcout << "done" << endl; return 0; }
but chinese characters output question marks
does know how can them output in correct form
thanks
even though sending correct chinese symbols console.
windows setting should changed supports language specific characters.
you need change pc language chinese "region , language" section control panel, default english.
Comments
Post a Comment