问题
I want to covert emoji 😀
to html 😀
and display html code not emoji in my website, i use htmlentities("😀");
but not working at all. How to display emoji as html code in my website or convert it?
回答1:
Is it worth it?
$utf32 = mb_convert_encoding( "😀", 'UTF-32', 'UTF-8' );
$hex4 = bin2hex($utf32);
$dec = hexdec($hex4);
echo "&#$dec;"; // 😀
echo "&#$dec;"; // 😀
来源:https://stackoverflow.com/questions/37773232/convert-emoji-to-html-code-or-display-emoji-as-html