将韩语字符转换为实体

时间:2012-07-11 22:33:38

标签: php

我正在尝试将韩文字符转换为unicode / html实体,但没有任何运气。我使用这个网站:http://www.mylanguages.org/converter.php但是希望在PHP编码中有这样的东西。

$text ='한예진';
echo htmlentities($text);

示例:한예진进入한예진

1 个答案:

答案 0 :(得分:2)

mb_convert_encoding($text, "HTML-ENTITIES", "UTF-8");