PHP將漢字轉換成Unicode編碼的函式

2021-09-01 15:25:30 字數 754 閱讀 7269

這是乙個將漢字轉換成unicode編碼的php函式,支援gbk和utf8編碼。

function uni_decode ($uncode)

);/', create_function('$dec', 'return \'\\u\'.dechex($dec[1]);'), '"'.$uncode.'"'));

return $word;

}

對 unicode 轉換為漢字

function uni_decode ($uncode)

);/', create_function('$dec', 'return \'\\u\'.dechex($dec[1]);'), '"'.$uncode.'"'));

return $word;

}

以下示例演示:

function uni_encode ($word)

)/', create_function('$hex', 'return \'&#\'.hexdec($hex[1]).\';\';'), substr($word, 1, strlen($word)-2));

return $word;

}$word = '將朱祖松和霍濤轉為 unicode 四位元組編碼! ';

echo uni_encode($word);

上述將輸出如下結果:

將朱祖松和霍濤轉為 unicode 四位元組編碼!

Python 將拼音轉換成漢字

利用pinyin2hanzi 可以將拼音轉換為漢字,可以作為拼音輸入法的轉換引擎 示例 def pinyin 2 hanzi pinyinlist from pinyin2hanzi import defaultdagparams from pinyin2hanzi import dag dagpa...

將金額轉換成大寫漢字

integer li i integer li lendec,li lenint integer li amout flag integer li point string ls amount string string ls single string ls single dx string ls...

漢字轉換成拼音

c 乙個有用的漢字轉拼音類 c 漢字轉換為拼音的類,含大小寫轉換 因為是靜態函式 呼叫方法很簡單 crazycoderpinyin.convert 瘋狂 如下 using system using system.collections.generic using system.text using ...