我想将表情符号转换为html
😀
并在我的网站中显示html代码而不是表情符号,我使用htmlentities("");
但根本不工作。如何在我的网站上将表情符号显示为html代码或转换它?
答案 0 :(得分:4)
值得吗?
$utf32 = mb_convert_encoding( "", 'UTF-32', 'UTF-8' );
$hex4 = bin2hex($utf32);
$dec = hexdec($hex4);
echo "&#$dec;"; //
echo "&#$dec;"; // 😀