HTML Emojis
HTML Emojis
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
Emoji Value
🗻 🗻 Try it »
🗼 🗼 Try it »
🗽 🗽 Try it »
🗾 🗾 Try it »
🗿 🗿 Try it »
😀 😀 Try it »
😁 😁 Try it »
😂 😂 Try it »
😃 😃 Try it »
😄 😄 Try it »
😅 😅 Try it »
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
🚀🚁🚂🚃🚄
HTML Emoji Transport Symbols
💺💻💼💽💾
HTML Emoji Office Symbols
👮👯👰👱👲
HTML Emoji People Symbols
🐂🐃🐄🐅🐆
HTML Emoji Animals Symbols
They are letters (characters) from the UTF-8 (Unicode) character set.
UTF-8 covers almost all of the characters and symbols in the world.
Tutorials Exercises Services Sign Up Log in
The HTML charset Attribute
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
To display an HTML page correctly, a web browser must know the character set used in the
page.
<meta charset="UTF-8">
UTF-8 Characters
Many UTF-8 characters cannot be typed on a keyboard, but they can always be displayed using
numbers (called entity numbers):
A is 65
B is 66
C is 67
Example
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
</body>
</html>
Try it Yourself »
Example
Explained
Tutorials Exercises Services Sign Up Log in
The <meta
HTML CSS charset="UTF-8">
JAVASCRIPT element
SQL defines the
PYTHON character
JAVA PHPset. HOW TO W3.CSS C C++
The characters A, B, and C, are displayed by the numbers 65, 66, and 67.
To let the browser understand that you are displaying a character, you must start the entity
number with &# and end it with ; (semicolon).
Emoji Characters
Emojis are also characters from the UTF-8 alphabet:
😄 is 128516
😍 is 128525
💗 is 128151
Example
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
<p>😀</p>
</body>
</html>
Try it Yourself »
Since Emojis are characters, they can be copied, displayed, and sized just like any other
character in HTML.
Example
<!DOCTYPE
<html>
html>
Tutorials Exercises Services Sign Up Log in
<meta charset="UTF-8">
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
<body>
<h1>Sized Emojis</h1>
<p style="font-size:48px">
😀 😄 😍 💗
</p>
</body>
</html>
Try it Yourself »
❮ Previous Next ❯
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
PLUS SPACES
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++
HTML Examples HTML Certificate
CSS Examples CSS Certificate
JavaScript Examples JavaScript Certificate
How To Examples Front End Certificate
SQL Examples SQL Certificate
Python Examples Python Certificate
W3.CSS Examples PHP Certificate
Bootstrap Examples jQuery Certificate
PHP Examples Java Certificate
Java Examples C++ Certificate
XML Examples C# Certificate
jQuery Examples XML Certificate
Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.