4

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?

Rio Susanto
  • 41
  • 1
  • 3

1 Answers1

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