Code:
#include <iostream>
#include <string>

int main() {
    std::cout << "こんにちは\n";
    std::cin.get();
}
I'm using Visual Studio. I tried running this program. It's supposed to print some Japanese characters, but all I see is ????. How do I get the characters to display properly?