HTML character entities are used as a replacement of reserved characters in HTML. You can also replace characters that are not present on your keyboard by entities.
We can use an entity in your HTML document by name or by a numerical character reference. Each entity starts with symbol ampersand (&) and ends with a semicolon (;).
HTML Character Entities
| Result |
Description |
Entity Name |
Entity Number |
|
non-breaking space |
|
160 |
| < |
less than |
< |
60 |
| > |
greater than |
> |
62 |
| & |
ampersand |
& |
38 |
| " |
double quotation mark |
" |
34 |
| ' |
single quotation mark (apostrophe) |
' |
39 |
| ¢ |
cent |
¢ |
162 |
| £ |
pound |
£ |
163 |
| ¥ |
yen |
¥ |
165 |
| € |
Euro |
€ |
8364 |
| © |
copyright |
© |
169 |
| ® |
registered trademark |
® |
174 |