mb_convert_encoding ("ÄãºÃ", "HTML-ENTITIES", "gb2312"); //Êä³ö£º你好
mb_convert_encoding ("你好", "gb2312", "HTML-ENTITIES"); //Êä³ö£ºÄãºÃ
ÉÏÃæÊÇphpº¯Êý,ÔÚc/c++ÖÐÔõôʵÏÖÕâÑù±àÂë?
20320ºÍ22909·Ö±ðÊÇ¡°Ä㡱¡°ºÃ¡±Õâ2¸ö×ÖµÄunicodeÂëÖµ¡£
ËùÒÔÕâô×ö¼´¿É£º
C/C++ code:
char* ConvertGBKToEncodeStr( const char* strGBK )
{
int len=MultiByteToWideChar(936, 0, strGBK, -1, NULL,0);
int i;
WCHAR * wszUCD = new WCHAR[len+1];
memset(wszUtf8, 0, len * 2 + 2);
MultiByteToWideChar(936, 0, strGBK, -1, wszUCD, len);
char *strEncode = new char[len*8+1];
for (i=0;i<wcslen(wszUCD); i++)
{
sprintf(strEncode+strlen(strEncode), "&#%d;", wczUCD[i]);
}
delete[] wszUCD;
return strEncode;
Õâ¸öÊǰÑ"ÄãºÃ" תΪ你好
·´Ïò¸ü¼òµ¥£¬Ö±½ÓÌáÈ¡&#ºÍ;Ö®¼äµÄÊý×Ö£¬¸³¸øwchar_tÊý×é¼´¿É¡£
ÓÃiconv
phpº¯ÊýµÄÔ´Â룬¶¼ÊÇ´¿CµÄ£¬¿ÉÒԲο¼
#include <iomanip>
#include <iostream>
#include <string.h>
#include <iconv.h>
#include <locale.h>
#include <stdlib.h>
//#include <easycics>
#define HG_LA
ÒÔǰÔÚVCÀïÃæ½¨Ò»¸ö¹¤³Ì£¬¶¼Ö»ÓÃÒ»¸ö .c Îļþ£¬×òÌìÔÚÒ»¸ö¹¤³ÌÀïÓÃÁËÁ½¸ö .cÎļþÁË£¬Óöµ½ÎÊÌâÁË£¬Çë´ó¼ÒÖ¸µã¡£±ÈÈ磺
File1.c Fil ......