Adding Symbols and Special Characters to HTML using HTML Entities
Learn how to insert special characters and symbols into your HTML documents using HTML entities. This tutorial explains how to use both named entities and numeric character references (decimal and hexadecimal) for consistent rendering across different browsers and systems.
Adding Symbols and Special Characters to HTML
Using HTML Entities
HTML entities provide a way to insert characters that aren't readily available on your keyboard, such as mathematical symbols, Greek letters, currency symbols, and arrows. These entities use either a name or a numerical code (decimal or hexadecimal) to represent the character. This ensures consistent rendering across different systems and browsers.
Examples of HTML Entities
Here are examples using both entity names and numerical codes:
Euro Sign (€):
Euro Sign
<p>Euro Sign: €</p>
<p>Euro Sign (Decimal): €</p>
<p>Euro Sign (Hex): €</p>
All three examples will display the euro symbol (€).
Mathematical Symbols
Character | Decimal Code | Entity Name | Description |
---|---|---|---|
∀ | 8704 | ∀ |
For all |
∂ | 8706 | ∂ |
Partial differential |
∃ | 8707 | ∃ |
There exists |
∅ | 8709 | ∅ |
Empty set |
∇ | 8711 | ∇ |
Nabla |
∈ | 8712 | ∈ |
Element of |
∉ | 8713 | ∉ |
Not an element of |
∋ | 8715 | ∋ |
Contains as a member |
∏ | 8719 | ∏ |
N-ary product |
∑ | 8721 | ∑ |
N-ary summation |
Greek Letters
Character | Decimal Code | Entity Name | Description |
---|---|---|---|
Α | 913 | Α |
Greek Alpha |
Β | 914 | Β |
Greek Beta |
Γ | 915 | Γ |
Greek Gamma |
Δ | 916 | Δ |
Greek Delta |
Ε | 917 | Ε |
Greek Epsilon |
Ζ | 918 | Ζ |
Greek Zeta |
Other Symbols
Character | Decimal Code | Entity Name | Description |
---|---|---|---|
© | 169 | © |
Copyright |
® | 174 | ® |
Registered Trademark |
™ | 8482 | ™ |
Trademark |
← | 8592 | ← |
Left Arrow |
↑ | 8593 | ↑ |
Up Arrow |
→ | 8594 | → |
Right Arrow |
↓ | 8595 | ↓ |
Down Arrow |
♠ | 9824 | ♠ |
Spade Suit |
♣ | 9827 | ♣ |
Club Suit |
♥ | 9829 | ♥ |
Heart Suit |
♦ | 9830 | ♦ |
Diamond Suit |