Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

Emoji Characters

Emojis are also characters within the UTF-8 character set.

  • 😄 is 128516
  • 😍 is 128525
  • 💗 is 128151

Example

<!DOCTYPE html>
<html>
<meta charset=”UTF-8″>
<body>

<h1>My First Emoji</h1>

<p>😀</p>

</body>
</html>

Given that emojis are characters, they can be copied, displayed, and formatted just like any other character in HTML.

Example

<!DOCTYPE html>
<html>
<meta charset=”UTF-8″>
<body>

<h1>Sized Emojis</h1>

<p style=”font-size:48px”>
😀 😄 😍 💗
</p>

</body>
</html>