2018-10-04 14:47:55 +01:00
---
title: Symbols
---
## Symbols
HTML symbol entities are characters that are not represented on a user's keyboards. Many mathematical, scientific, and currency symbols
are not present on a normal keyboard; therefore, to add such symbols to a page using HTML, the HTML entity name can be used.
2018-11-01 23:36:50 -04:00
It is important to note that these will not effect the HTML code themselves, and will always be interpreted as text. For example, if we wanted to type `<div>` as text on a webpage, we may need to use these symbol entities: `<div>` .
2018-10-04 14:47:55 +01:00
If no entity name exists, either the entity number or hexadecimal reference can be used.

2018-11-04 04:38:24 +11:00
### Ampersand escape
If you want to show the entity name on a webpage like this:
```html
< p > < html> < / p >
```
Then you need to use an ampersand escape, like below:
```html
< p > & lt;html& gt;< / p >
```
This will display the entity name rather than the entity.
2018-10-04 14:47:55 +01:00
#### More Information:
2018-10-16 23:22:55 +11:00
* [W3 Schools Reference ](https://www.w3schools.com/html/html_symbols.asp )
* [Symbols Reference Chart ](https://dev.w3.org/html5/html-author/charref )
2018-10-28 18:32:53 -04:00
* [Toptal Reference ](https://www.toptal.com/designers/htmlarrows/symbols/ )
2018-11-01 23:36:50 -04:00