Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to output unicode in C++ without _setmode

I'm trying to insert a unicode value, in this case, \u250F, or ┏, to the console output. I have searched around, and people recommending a variety of things. Before we discuss on what I tried, I am using Windows and Visual Studio 2013.

The main error

When I try multiple 'fixes', if not specified, I always get the same error:

Debug Assertion Failed!
Program: ...nts\visual studio 2013\Projects\roguelike\Debug\roguelike.exe
File: f:\dd\vctools\crt\crtw32\stdio\fputc.c
Line: 48

Expression: ((_Stream->_flag & _IOSTRG) || ( fn = _fileno(_Stream), 
((_textmode_safe(fn) ==  _IOINFO_TM_ANSI && !_tm_unicode_safe(fn))))

For more information on how your program can cause an assertion failure, 
see the Visual C++ documentation on asserts

(Press Retry to debug the application)

What I have tried

I have tried to do all of the following things to output it:

std::cout << "\u250F";
std::wcout << "\u250F";
std::cout << L"\u250F";
std::wcout << L"\u250F";
std::cout << "┏";
std::wcout << "┏";
std::cout << L"┏";
std::wcout << L"┏";

How I tried to tell the console how to output unicode

_setmode(_fileno(stdout), _O_U16TEXT);

Seems to be the problem, really.

system("chcp 65001");

Doesn't error, but doesn't do anything

std::locale::global(std::locale("en_US.utf8"));

It causes an error of where the parameters are "illegal"

like image 757
JoeyChor Avatar asked Nov 10 '14 00:11

JoeyChor


1 Answers

Following code works for me: my ENV: vs2013, win7_x64, system locale is 'English (United States)'

SetConsoleOutputCP(CP_UTF8);
_setmode(_fileno(stdout), _O_U8TEXT);
wprintf(L"Interface %s\r\n", pNP->pszwName);   //pszwName is a wchar_t*

Another tricks is your console font, does your console font include char character '┏ '?

google 'cmd font fontlink' to add a font to your cmd console.

run 'chcp 65001' in your cmd console before execute your program.

like image 131
trulyliu Avatar answered Nov 10 '22 22:11

trulyliu