vote up 2 vote down star

I'm working on a project in VS2008 that I'm compiling in MBCS but I need to work with some UTF-8 strings to interact with some web services. I wrote a function that works perfectly with Unicode but not MBCS. Is there any way I can convert a MBCS string to UTF-8 or to Unicode?

Thanks!

flag

1 Answer

vote up 7 vote down check

Convert the MBCS string to Unicode using MultiByteToWideChar and then to UTF-8 with WideCharToMultiByte. Pass CP_ACP to the first call and CP_UTF8 to the second.

link|flag
2  
A good advice in general, but just pay attention that specifying CP_ACP is going to make the behavior dependent on the system language setting of the machine. If that is what he wants it is fine. – Nemanja Trifunovic Jun 30 at 14:57

Your Answer

Get an OpenID
or

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