CString GetUStr(const string & str)
{
std::string showname = str;//\u6211\u7231\u5317\u4eac\u5929\u5b89\u95e8
int len=strlen(showname.c_str())+;
char outch[MAX_PATH];
WCHAR * wChar=new WCHAR[len];
wmemset(wChar,,len);
MultiByteToWideChar(CP_UTF8, , showname.c_str(), len, wChar, len);
CString strRet = wChar;//转化结果 我爱北京*
delete [] wChar;
return strRet;
}
相关文章
- 后台字符串转化成json
- C/C++中ASCII与Unicode字符串相互转换
- python的u'字符串"(字符编码):字符串前有u,表示字符串以unicode格式存储
- Python将unicode编码字符串转化为中文
- C/C++ 各种字符编码字符串的转换 可用于XML文件的字符转化读写 (收集 GBK - UTF8 - Unicode - ANSI )
- C++中ANSI、Unicode16、UTF-8字符串之间的互转
- C++中Ansi、Unicode、UTF8字符串之间的转换和写入
- ASCII/UNICODE/UTF8字符串互相转换的C++代码
- C++中ANSI、Unicode、UTF8字符串之间的互转
- [C/C++]_[utf8字符串转换为unicode字符串]