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?
Asked
Active
Viewed 346 times
1

Ajay Gaur
- 5,140
- 6
- 38
- 60
1 Answers
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>
😀
😋
<p>
Or just copy the emoji
</p>
</body>

Gabriel Martinez Bustos
- 501
- 1
- 5
- 14
-
And I didn't get your solution. I've emojis but I want to convert into it's unicode – Ajay Gaur Jul 11 '18 at 15:02
-
@AjayGaur look at this [solution](https://codepen.io/gabrielxm/pen/RJgbBN) – Gabriel Martinez Bustos Jul 11 '18 at 15:39
-
I want inverse of that. I want browser to print those numbers – Ajay Gaur Jul 12 '18 at 05:45