1

I'm working on chrome Version 67.0.3396.99 and mac OS 10.13.5 (17F77). In my html, I don't want browser to convert an emoji to it's unicode text. I read this answer and it didn't help me much even if I added ︎. How can I do that?

enter image description here

Ajay Gaur
  • 5,140
  • 6
  • 38
  • 60

1 Answers1

0

First, I recommend to you, search for emojis in this page emojipedia, and then you only need copy and paste the emoji you want to use, make sure, you have in your html head the <meta charset="UTF-8">:

<!DOCTYPE HTML>
<head>
   <meta charset="utf-8">
</head>
<body>
 &#x1F600;
 &#x1F60B;
 <p>
  Or just copy the emoji
 </p>
 
</body>