- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML Entities
HTML entities are special codes used to represent characters that either have a reserved meaning in HTML or cannot be easily typed on a keyboard. They ensure that content is rendered correctly without causing issues in the HTML structure.
Syntax
HTML entities are written using an ampersand (&
) followed by the entity name or number, and ending with a semicolon (;
).
Syntax:
&entityName;
or
&#entityNumber;
Commonly Used HTML Entities
Below is a list of the most commonly used HTML entities:
1. Reserved Characters
Some characters have special meanings in HTML. They can be represented using entities to ensure they are displayed properly.
Example 1: Display Reserved Characters
Using reserved characters directly can break HTML. Instead, use entities to display them correctly.
<!DOCTYPE html>
<html>
<head>
<title>HTML Entities Example</title>
</head>
<body>
<p>Display Reserved Characters Properly:</p>
<ul>
<li>& is used to represent an ampersand (&)</li>
<li>< is used to represent less-than symbol (<)</li>
<li>> is used to represent greater-than symbol (>)</li>
<li>" is used to represent double quotes (")</li>
<li>' is used to represent single quotes (')</li>
</ul>
</body>
</html>
2. Mathematical Symbols
Mathematical symbols can also be represented using HTML entities.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Math Symbols with HTML Entities</title>
</head>
<body>
<p>Mathematical Symbols:</p>
<ul>
<li>Plus-minus symbol: ±</li>
<li>Multiplication symbol: ×</li>
<li>Division symbol: ÷</li>
<li>Pi symbol: π</li>
</ul>
</body>
</html>
3. Currency Symbols
You can also use HTML entities to represent currency symbols.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Currency Example</title>
</head>
<body>
<p>Currency Symbols:</p>
<ul>
<li>US Dollar: $</li>
<li>Euro: €</li>
<li>Pound: £</li>
<li>Yen: ¥</li>
</ul>
</body>
</html>
4. Special Characters
Other special characters like arrows, bullets, or special symbols can also be represented.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Special Characters Example</title>
</head>
<body>
<p>Special Characters:</p>
<ul>
<li>Right Arrow: →</li>
<li>Left Arrow: ←</li>
<li>Bullet: •</li>
<li>Copyright symbol: ©</li>
<li>Registered trademark symbol: ®</li>
</ul>
</body>
</html>
5. Emoji Entities
You can represent emojis using HTML entities as well.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Emoji Example</title>
</head>
<body>
<p>Emojis with HTML Entities:</p>
<p>Smiling Face: 😊</p>
<p>Face with Tears of Joy: 😂</p>
<p>Love Heart: ❤</p>
</body>
</html>
Summary
HTML entities allow developers to safely include special characters in web content without breaking HTML structure. They are used for reserved symbols, mathematical symbols, currency symbols, special characters, and emojis. Always use these entities to maintain proper rendering and ensure cross-browser compatibility.