- 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 Symbols
HTML symbols allow the representation of special characters that might not be directly available on the keyboard or have special meanings in HTML. They can be included using entity names or numbers to ensure proper display and avoid conflicts.
Syntax
HTML symbols can be included in two ways:
- Entity Name:
&entityName;
- Entity Number:
&#entityNumber;
Example:
©
or©
for the copyright symbol.
Table: Common HTML Symbols
Example 1: Reserved and Special Characters
<!DOCTYPE html>
<html>
<head>
<title>HTML Symbols Example</title>
</head>
<body>
<p>© 2024 All Rights Reserved.</p>
<p>Price: €100</p>
<p>Back to Home: ←</p>
</body>
</html>
Example 2: Mathematical Symbols
<!DOCTYPE html>
<html>
<head>
<title>Math Symbols</title>
</head>
<body>
<p>Tolerance: ±5%</p>
<p>Square Root: √25 = 5</p>
<p>Infinity: ∞</p>
</body>
</html>
Summary
HTML symbols allow developers to include special characters and symbols in web pages safely and accurately. By using the entity names or numbers, symbols like mathematical operators, currency signs, and arrows can be displayed properly. Refer to the table above for quick and easy usage of common HTML symbols in your projects.