The following code shows unexpected behaviour on my machine (I'm using Visual C++ 2008 SP1 on Windows XP here):
int main() {
SetConsoleOutputCP( CP_UTF8 );
std::cout << "\xc3\xbc";
int fail = std::cout.fail() ? '1': '0';
fputc( fail, stdout );
fputs( "\xc3\xbc", stdout );
}
I simply compiled with cl /EHsc test.cpp. Output in a console window is
ü0ü (translated to Codepage 1252, originally shows some line drawing
charachters in the default Codepage, perhaps 437). When I change the settings
of the console window to use the "Lucida Console" character set and run my
test.exe again, output is changed to 1ü, which means
- the character
ücan be written usingfputsand its UTF-8 encodingC3 BC std::coutdoes not work for whatever reason- the streams
failbitis setting after trying to write the character
I tried to raise this issue on "Microsoft Connect" (see here), but MS has not been very helpful. You might as well look here as something similar has been asked before.
Can you reproduce this problem?
What am I doing wrong? Shouldn't the std::cout and the fputs have the same
effect?

fputs) and I can type UTF-8 encoded files with thetypecommand (after having donechcp 65001). Thus I thought it can handle this encoding… – mkluwe Nov 2 at 12:56