For example:
cout << \"你好\" << endl;
It depends on the platform and on the encoding of the command prompt.
That said, you might have more luck with
std::wcout << L"你好" << std::endl;