vote up 3 vote down star

While testing some functions to convert strings between wchar_t and utf8 I met the following weird result with Visual C++ express 2008

std::wcout << L"élève" << std::endl;

prints out "ÚlÞve:" which is obviously not what is expected.

This is obviously a bug. How can that be ? How am I suppose to deal with such "feature" ?

flag

70% accept rate

4 Answers

vote up 11 vote down check

The C++ compiler does not support Unicode in code files. You have to replace those characters with their escaped versions instead.

Try this:

std::wcout << L"\x00E9l\x00E8ve" << std::endl;

Also, your console must support Unicode as well.

UPDATE:

It's not going to produce the desired output in your console, because the console does not support Unicode.

link|flag
Unfortunately, using Dave's code yields exactly the same output. So I guess it means that the shell doesn't support unicode. – chmike Apr 6 at 13:30
It seems I should be able to activate UTF-8 support in the shell by issuing the command chcp 65001. How can I do this from within a program before writing out things ? – chmike Apr 6 at 13:42
It's not going to output the full UTF-16. You're lucky if you get ANSI output, because the high order bytes are knocked off. But the characters are ANSI page 1252 compatible. – Dave Van den Eynde Apr 6 at 14:04
vote up 0 vote down

You IDE and the compiler use the ANSI code page. The console uses the OEM code page.

It also matter what are you doing with those conversion functions.

link|flag
vote up 1 vote down

You might also want to take a look at this question. It shows how you can actually hard-code unicode characters into files using some compilers (I'm not sure what the options would be got MSVC).

link|flag

Your Answer

Get an OpenID
or

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