我正在尝试将韩文字符转换为unicode / html实体,但没有任何运气。我使用这个网站:http://www.mylanguages.org/converter.php但是希望在PHP编码中有这样的东西。
$text ='한예진';
echo htmlentities($text);
示例:한예진
进入한예진
答案 0 :(得分:2)
mb_convert_encoding($text, "HTML-ENTITIES", "UTF-8");