How to render emojis with JavaScript

emmanuelgautier

Emmanuel Gautier

Posted on March 5, 2021

How to render emojis with JavaScript

For the content of your posts, emojis add some fun to your pages. This short post explains how to make that possible in JavaScript.

The most conveniant is to use directly the right emoji Unicode. Here a JSX example :

<span>{'\u{1F680}'}</span>
Enter fullscreen mode Exit fullscreen mode

You can also use the node-emoji package to help you manipulate them.

If you want to know what unicode emoji to add, you can find this page useful : Full Emoji List

đź’– đź’Ş đź™… đźš©
emmanuelgautier
Emmanuel Gautier

Posted on March 5, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related