Tagged Questions
9
votes
2answers
594 views
Why isn't UTF-8 allowed as the “ANSI” code page?
The Windows _setmbcp function allows any valid code page...
(except UTF-7 and UTF-8, which are not
supported)
OK, not supporting UTF-7 makes sense: Characters have non-unique representations ...
2
votes
3answers
2k views
Converting MBCS stream to UTF-8 and vice versa in C++
I'm using Visual C++ (VS2005) and compiling the project in Multibyte Character Set (MBCS). However, the program needs to communicate with a webapp (which is in utf-8) via XMLRPC. So I'm thinking maybe ...