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

UTF-8 Characters

Numerous UTF-8 characters aren’t readily typed via keyboards, yet they can consistently be displayed using numerical representations known as entity numbers:

  • A corresponds to 65,
  • B corresponds to 66,
  • C corresponds to 67

Example

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

<p>I will display A B C</p>
<p>I will display A B C</p>

</body>
</html>

Example Explained

The <meta charset="UTF-8"> tag sets the character encoding. Characters like A, B, and C map to numbers 65, 66, and 67. Use &# and ; to represent characters by their entity numbers.