vote up 3 vote down star

For a C++ console application compiled with Visual Studio 2008 on English Windows (XP,Vista or 7). Is it possible to print out to the console and correctly display UTF-8 encoded Japanese using cout or wcout?

flag
1  
There's an interesting thread at cplusplus.com : UTF-8 in command prompt (console) cplusplus.com/forum/windows/9797 – anno Sep 3 at 3:03

4 Answers

vote up 0 vote down

In the console, enter chcp 65001 to change the code page to that of UTF-8.

link|flag
vote up 5 vote down

The Windows console uses the OEM code page by default to display output.

To change the code page to Unicode enter chcp 65001 in the console, or try to change the code page programmatically with SetConsoleOutputCP.

Note that you probably have to change the font of the console to one that has glyphs in the unicode range.

link|flag
vote up 3 vote down

I've never actually tried setting the console code-page to UTF8 (not sure why it wouldn't work... the console can handle other multi-byte code-pages just fine), but there are a couple of functions to look up: SetConsoleCP and SetConsoleOutputCP.

You'll probably also need to make sure you're using a console font that is capable of displaying your characters. There's the SetCurrentConsoleFontEx function, but it's only available on Vista and above.

Hope that helps.

link|flag
2  
Try Lucida Console font. – anno Sep 3 at 2:59
vote up 3 vote down

Here's an article from MVP Michael Kaplan on how to correctly output UTF-16 through the console. You could convert your UTF-8 to UTF-16 and output that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.