天下

记录修行的印记

UTF-8字符串

#include <atlbase.h>
 int main()
 {
     char* pszOctText = "\344\270\273\346\234\272\345\220\215"; //"主机名" , 8进制格式,UTF-8编码
     char* pszHexText = "\xe5\x8d\xa1\xe5\x8f\xb7";               //"卡号" ,   16进制格式,UTF-8编码
     char *pszUnicodeText="\u73b0\u4ee3\u8857\u666f";           //现代街景,Unicode character
 
     CString strText1 = CA2W(pszOctText,CP_UTF8);
     CString strText2 = CA2W(pszHexText,CP_UTF8);
 
     //MessageBox(NULL,strText2,strText1,MB_OK);
 
     puts(CW2A(strText1));
     puts(CW2A(strText2,CP_ACP));
     puts(pszUnicodeText);
 
     system("pause");
     return 0;
 }

posted on 2012-03-27 11:30 天下 阅读(606) 评论(0)  编辑 收藏 引用 所属分类: Win32


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


<2015年12月>
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789

导航

统计

常用链接

留言簿(4)

随笔分类(378)

随笔档案(329)

链接

最新随笔

搜索

最新评论