As the question says, do I have to do in order to print Unicode characters to the output console? And what settings do I have to use? Right now I have this code:
wchar_t* text = L"the 来";
wprintf(L"Text is %s.\n", text);
return EXIT_SUCCESS;
and it prints:
Text is the ?.
I've tried to change the output console's font to MS Mincho, Lucida Console and a bunch of others but they still don't display the japanese character.
So, what do I have to do?


