Convert emoji to html code or display emoji as html

百般思念 提交于 2020-03-22 06:23:38

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!