Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Windows 7, VS2008 to test following code:

    wchar_t *pWCBuffer = L"你好,世界"; // some Chinese character

    char    *pMBBuffer = (char *)malloc( BUFFER_SIZE );
    _locale_t locChinese = _create_locale(LC_CTYPE, "chs");

    _wcstombs_l(pMBBuffer, pWCBuffer, BUFFER_SIZE, locChinese ); 
    _printf_l("Multibyte character: %s\n\n", locChinese, pMBBuffer );

I convert a wide string to multibyte string and then print it out, using chinese locale, but the printed out string is not right, it is something weird like: ─π║├ú¼╩└╜τ

How could I print out the right multi-byte string?

share|improve this question

1 Answer

up vote 1 down vote accepted

This is not an absolute answer, because unicode on different platforms can be tricky. But if your Windows 7 is an English version, then your might want to try the Powershell ISE to see the output. I use that to print out unicode when writing programs in Ruby too.

share|improve this answer
this is a good point - maybe this is a limitation of window console... – lzprgmr Jan 7 '11 at 5:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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