Unicode emoji

***

Emoji unicode characters for use on the web.

To insert an emoji into HTML using its decimal value, you can use the HTML numeric entity. In the case of an emoji with a decimal value of 128053 (e.g. 🐵), you should use the following form:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Emoji Example</title>
</head>
<body>
    <p>Here is an emoji: &#128053;</p>
</body>
</html>

You can insert this emoji anywhere in the HTML document where you want to display it, using the numeric entity 🐵.

&#128053; -> "&#dec;"

← Back