Converting MBCS stream to UTF-8 and vice versa in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:51:58Zhttp://stackoverflow.com/feeds/question/374761http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/374761/converting-mbcs-stream-to-utf-8-and-vice-versa-in-c2Converting MBCS stream to UTF-8 and vice versa in C++Kev2008-12-17T14:49:38Z2008-12-17T16:25:10Z
<p>Hi,</p>
<p>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 I can use MBCS internally and convert the strings to utf-8 before sending them to the xmlrpc module and converting them back to MBCS after receiving from the webapi.</p>
<p>I'm wondering what's the best way to convert between MBCS and UTF-8 in VC++?</p>
<p>Thanks all.</p>
http://stackoverflow.com/questions/374761/converting-mbcs-stream-to-utf-8-and-vice-versa-in-c/374976#3749762Answer by sep for Converting MBCS stream to UTF-8 and vice versa in C++sep2008-12-17T15:49:20Z2008-12-17T15:56:44Z<p>You could try <a href="http://msdn.microsoft.com/en-us/library/5d7tc9zw(VS.80).aspx" rel="nofollow">wcstombs</a> / <a href="http://msdn.microsoft.com/en-us/library/k1f9b8cy(VS.71).aspx" rel="nofollow">mbstowcs</a>.</p>
http://stackoverflow.com/questions/374761/converting-mbcs-stream-to-utf-8-and-vice-versa-in-c/374995#3749953Answer by Ferruccio for Converting MBCS stream to UTF-8 and vice versa in C++Ferruccio2008-12-17T15:52:53Z2008-12-17T15:52:53Z<p>Call <a href="http://msdn.microsoft.com/en-us/library/ms776413(VS.85).aspx" rel="nofollow">MultiByteToWideChar</a> to convert your string to unicode followed by a call to <a href="http://msdn.microsoft.com/en-us/library/ms776420(VS.85).aspx" rel="nofollow">WideCharToMultiByte</a> to convert the unicode to UTF-8. Reverse the process to go the other way,</p>
http://stackoverflow.com/questions/374761/converting-mbcs-stream-to-utf-8-and-vice-versa-in-c/375122#3751221Answer by Rob for Converting MBCS stream to UTF-8 and vice versa in C++Rob2008-12-17T16:25:10Z2008-12-17T16:25:10Z<p>You can also use CT2A and pass CP_UTF8 as the code page, e.g.:</p>
<pre><code>CT2A pszUTF8(_T("My DBCS string"), CP_UTF8);
// pszUTF8.m_psz contains the UTF8 string.
</code></pre>
<p>To go back again:</p>
<pre><code>CA2T pszT(_T("My UTF8 string"), CP_UTF8);
// pszT.m_psz contains the TCHAR string.
</code></pre>