Displaying japanese characters in visual c++
问题 Does anyone here have an idea how to work with japanese character in visual c++? I'm trying to display a Japanese name in console with visual c++. #include "stdafx.h" #include <string> #include <iostream> using namespace std; int main() { cout << "北島 美奈" << endl; return 0; } Output in the console: ?? ?? Press any key to continue ... Hope someone can help. Thank you. 回答1: I've tested with my own code both UTF-8 and EUC-KR(korean) on a console window using a cmd.exe. This is my source code.