DEV Community

Emmanuel Gautier
Emmanuel Gautier

Posted on • Originally published at emmanuelgautier.com on

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

Top comments (0)