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?
Asked
Active
Viewed 3,426 times
4

Rio Susanto
- 41
- 1
- 3
-
Something like `😀` ? – code-kobold Jun 12 '16 at 11:08
-
yeah i want to display it but my website is display emoji instead code.. – Rio Susanto Jun 12 '16 at 17:19
-
See http://stackoverflow.com/questions/34956163/htmlentites-not-working-for-emoji – Curtis Jul 03 '16 at 09:18
1 Answers
8
$utf32 = mb_convert_encoding( "", 'UTF-32', 'UTF-8' );
$hex4 = bin2hex($utf32);
$dec = hexdec($hex4);
echo "&#$dec;"; //
echo "&#$dec;"; // 😀

DonCarleone
- 544
- 11
- 20

Rick James
- 135,179
- 13
- 127
- 222