Hi I was trying to output unicode string to a console with iostreams and failed.

I found this: Using unicode font in c++ console app and this snippet works.

SetConsoleOutputCP(CP_UTF8);
wchar_t s[] = L"èéøÞǽлљΣæča";
int bufferSize = WideCharToMultiByte(CP_UTF8, 0, s, -1, NULL, 0, NULL, NULL);
char* m = new char[bufferSize]; 
WideCharToMultiByte(CP_UTF8, 0, s, -1, m, bufferSize, NULL, NULL);
wprintf(L"%S", m);

However, I did not find any way to output unicode correctly with iostreams. Any suggestions?

This does not work:

SetConsoleOutputCP(CP_UTF8);
utf8_locale = locale(old_locale,new boost::program_options::detail::utf8_codecvt_facet());
wcout.imbue(utf8_locale);
wcout << L"¡Hola!" << endl;

EDIT I could not find any other solution than to wrap this snippet around in a stream. Hope, somebody has better ideas.

//Unicode output for a Windows console 
ostream &operator-(ostream &stream, const wchar_t *s) 
{ 
    int bufSize = WideCharToMultiByte(CP_UTF8, 0, s, -1, NULL, 0, NULL, NULL);
    char *buf = new char[bufSize];
    WideCharToMultiByte(CP_UTF8, 0, s, -1, buf, bufSize, NULL, NULL);
    wprintf(L"%S", buf);
    delete[] buf; 
    return stream; 
} 

ostream &operator-(ostream &stream, const wstring &s) 
{ 
    stream - s.c_str();
    return stream; 
} 
link|improve this question

Could you clarify exactly how it is failing? Are you getting garbled/wrong characters or something? Have you tried capturing STDOUT and verify the correct bytes are being sent but not displayed maybe? – Goyuix Mar 30 '10 at 20:13
It shows placeholders instead of characters. I did not look very much deep into it. The only thing I can tell, is that for some reason, the same string sent to wcout or cout goes crazy while wprintf displays it with no problem. – Andrew Mar 31 '10 at 0:06
Only some Unicode characters can be properly displayed inside the Win32 console. The console doesn't support characters that are too complicated or ones that have combining marks that affect their size. Try it with WriteConsoleW -- if it doesn't work with that, then it's impossible. – Mehrdad Jan 29 at 7:09
feedback

7 Answers

The wcout must have the locale set differently to the CRT. Here's how it can be fixed:

int _tmain(int argc, _TCHAR* argv[])
{
    char* locale = setlocale(LC_ALL, "English"); // Get the CRT's current locale.
    std::locale lollocale(locale);
    setlocale(LC_ALL, locale); // Restore the CRT.
    std::wcout.imbue(lollocale); // Now set the std::wcout to have the locale that we got from the CRT.
    std::wcout << L"¡Hola!";
    std::cin.get();
    return 0;
}

I just tested it, and it displays the string here absolutely fine.

link|improve this answer
Thanks for a new idea and it worked for this string but it fails for something more complicated like "¡Hola! αβγ ambulō привет :)" – Andrew Apr 1 '10 at 0:59
That string didn't work on wprintf for me either, just came out as a total blank. wcout got at least some of the characters right. Could you double check that wprintf gets this string right? – DeadMG Apr 1 '10 at 8:41
yes, if you select correct fonts for the console and start it with cmd.exe it works – Andrew Apr 1 '10 at 14:39
feedback

I have verified a solution here using Visual Studio 2010. Via this MSDN article and MSDN blog post. The trick is an obscure call to _setmode(..., _O_U16TEXT).

Solution:

#include <iostream>
#include <io.h>
#include <fcntl.h>

int wmain(int argc, wchar_t* argv[])
{
    _setmode(_fileno(stdout), _O_U16TEXT);
    std::wcout << L"Testing unicode -- English -- Ελληνικά -- Español." << std::endl;
}

Screenshot:

Unicode in console

link|improve this answer
+1 and deleted my answer. This is the method we chose for Instalog. – Billy ONeal Apr 24 at 2:01
feedback

I had a similar problem, Output Unicode to Console Using C++ contains the gem that you need to do chcp 65001 in the console before running your program.

There may be some way of doing this programatically, but I don't know what it is.

link|improve this answer
This was already discussed a few times, does not help it. – Andrew Feb 20 '11 at 2:33
feedback

If it will help you, there is some discussion here: http://www.velocityreviews.com/forums/t594301-displaying-unicode-characters-on-the-windows-console.html

link|improve this answer
Thanks, no change :( – Andrew Mar 29 '10 at 22:09
feedback

I don't think there is an easy answer. looking at Console Code Pages and SetConsoleCP Function it seems that you will need to set-up an appropriate codepage for the character-set you're going to output.

link|improve this answer
feedback

Recenly I wanted to stream unicode from Python to windows console and here is the minimum I needed to make:

  • You should set console font to the one covering unicode symbols. There is not a wide choise: Console properties > Font > Lucida Console
  • You should change the current console codepage: run chcp 65001 in the Console or use the corresponding method in the C++ code
  • write to console using WriteConsoleW

Look through an interesing article about java unicode on windows console

Besides, in Python you can not write to default sys.stdout in this case, you will need to substitute it with something using os.write(1, binarystring) or direct call to a wrapper around WriteConsoleW. Seems like in C++ you will need to do the same.

link|improve this answer
Thanks, this is essentially what I did by overloading operator - – Andrew Apr 1 '10 at 14:41
You do need to set the font, this part is correct and it is poor design of Windows not to default to a font that works for a decent range of Unicode characters. However the next part of your answer is wrong. You do NOT need to set the codepage to UTF-8/65001 AND call WriteConsoleW. You need to do one OR the other. Set the codepage if you will be calling WriteConsoleA and passing in 8-bit strings including UTF-8, BUT just calling WriteConsoleW completely bypasses codepages and requires UTF-16 (wide chars). In my experience however, setting the console to 65001 is quite buggy. – hippietrail Feb 17 '11 at 6:48
@hippietrail: I am not sure about writing with WriteConsoleW without changing the codepage to 65001, but setting to 65001 only is unfortunately not enough. At least for unicode output from Python scripts. – newtover Mar 24 '11 at 19:44
feedback

First, sorry I probably don't have the fonts required so I cannot test it yet.

Something looks a bit fishy here

// the following is said to be working
SetConsoleOutputCP(CP_UTF8); // output is in UTF8
wchar_t s[] = L"èéøÞǽлљΣæča";
int bufferSize = WideCharToMultiByte(CP_UTF8, 0, s, -1, NULL, 0, NULL, NULL);
char* m = new char[bufferSize]; 
WideCharToMultiByte(CP_UTF8, 0, s, -1, m, bufferSize, NULL, NULL);
wprintf(L"%S", m); // <-- upper case %S in wprintf() is used for MultiByte/utf-8
                   //     lower case %s in wprintf() is used for WideChar
printf("%s", m); // <-- does this work as well? try it to verify my assumption

while

// the following is said to have problem
SetConsoleOutputCP(CP_UTF8);
utf8_locale = locale(old_locale,
                     new boost::program_options::detail::utf8_codecvt_facet());
wcout.imbue(utf8_locale);
wcout << L"¡Hola!" << endl; // <-- you are passing wide char.
// have you tried passing the multibyte equivalent by converting to utf8 first?
int bufferSize = WideCharToMultiByte(CP_UTF8, 0, s, -1, NULL, 0, NULL, NULL);
char* m = new char[bufferSize]; 
WideCharToMultiByte(CP_UTF8, 0, s, -1, m, bufferSize, NULL, NULL);
cout << m << endl;

what about

// without setting locale to UTF8, you pass WideChars
wcout << L"¡Hola!" << endl;
// set locale to UTF8 and use cout
SetConsoleOutputCP(CP_UTF8);
cout << utf8_encoded_by_converting_using_WideCharToMultiByte << endl;
link|improve this answer
That is the fun part. I tried it and I was surprised that it does not work, but thanks anyways – Andrew Apr 5 '10 at 14:24
feedback

Your Answer

 
or
required, but never shown

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