HTML Symbols

HTML Symbols
They are displayed using HTML entities.
1. What Are HTML Symbols?
Symbols include:
Currency symbols (₹, $, €, £)
Mathematical symbols (±, ×, ÷, ∞)
Copyright & legal symbols (©, ®, ™)
Arrows & marks (→, ←, ✓, ✗)
They are written using entity codes so browsers display them correctly.
2. HTML Symbol Syntax
There are two ways to write symbols:
Named Entity
Numeric Entity
- Both produce: ©
3. Common Symbols (Must Know)
Copyright & Legal Symbols
| Symbol | Entity | Meaning |
|---|---|---|
| © | © | Copyright |
| ® | ® | Registered |
| ™ | ™ | Trademark |
Example:
4. Currency Symbols
| Symbol | Entity |
|---|---|
| ₹ | ₹ |
| $ | $ |
| € | € |
| £ | £ |
| ¥ | ¥ |
Example:
5. Mathematical Symbols
| Symbol | Entity |
|---|---|
| ± | ± |
| × | × |
| ÷ | ÷ |
| ≤ | ≤ |
| ≥ | ≥ |
| ∞ | ∞ |
Example:
6. Arrows & Direction Symbols
| Symbol | Entity |
|---|---|
| ← | ← |
| → | → |
| ↑ | ↑ |
| ↓ | ↓ |
| ↔ | ↔ |
Example:
7. Check Marks & Special Signs
| Symbol | Entity |
|---|---|
| ✓ | ✓ |
| ✗ | ✗ |
| ★ | ★ |
| ♥ | ♥ |
Example:
8. Greek Letters (Used in Math & Science)
| Symbol | Entity |
|---|---|
| α | α |
| β | β |
| π | π |
| Ω | Ω |
Example:
9. Emoji Symbols Using HTML Codes
Example:
Common Mistakes
- Forgetting semicolon
; Using symbols directly where entities are required- Confusing symbols with HTML tags
- Overusing symbols unnecessarily
Key Points to Remember
They are written using entities
Entities start with
&and end with;Symbols work in all browsers
Use numeric entities when named ones don’t exist
Very useful for UI, math, currency, and legal text
