Horje
How to create HTML Emoji Characters

Emojis are also characters from the UTF-8 alphabet:


Example of HTML Emoji Characters

index.html
Example: HTML
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>

<h1>My First Emoji</h1>

<p>&#128512;</p>

</body>
</html>

Output should be:

Example of HTML Emoji Characters

Another Example of HTML Emoji Characters

Since Emojis are characters, they can be copied, displayed, and sized just like any other character in HTML.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>

<h1>Sized Emojis</h1>

<p style="font-size:48px">
&#128512; &#128516; &#128525; &#128151;
</p>

</body>
</html>

Output should be:

Another Example of HTML Emoji Characters





Category:
Web Tutorial
Sub Category:
HTML Emojis
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference