在网页中显示\ u1F603(表情符号图标)

I store codes like "\u1F603" within messages in my database, and now I need to display the corresponding emoji on my web page.

How can I convert \u1F603 to \xF0\x9F\x98\x83 using PHP for displaying emoji icons in a web page?


You don't need to convert emoji character codes to UTF-8 sequences, you can simply use the original 21-bit Unicode value as numeric character reference in HTML like this: 😃 which renders as:

Hell everyone, after many try i can found solution.

I user below code: https://github.com/BriquzStudio/php-emoji

include 'Emoji.php';
$message = Emoji::Decode($message);

This one working fine for me!! :)Below is my reslut