Tagged Questions

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 ...
1
vote
5answers
2k views

What multi-byte character set starts with 0x7F and is 4 bytes long?

I'm trying to get some legacy code to display Chinese characters properly. One character encoding I'm trying to work with starts with a 0x7F and is 4 bytes long (including the 0x7F byte). Does ...
0
votes
2answers
43 views

Is it possible to have a multi-byte character with the Windows-1252 code page?

i know some locale's (e.g. Far East locales) have multi-byte character sets, where it takes multiple bytes to represent a character. i'd like to test my (ANSI) software's ability to cope with ...