HTML Web Safe Chars
Last update:
some character encodings cannot be use directly on an HTML doc since the are part of html technology.
In order to display them we need to escape the chars that are part of html.
Safe HTML Characters
Char | Description | Name | Number |
---|---|---|---|
< | less than | < | < |
> | greater than | > | > |
& | ampersand | & | & |
" | double quotation mark | " | " |
' | single quotation mark | ' | ' |
¢ | cent | ¢ | ¢ |
£ | pound | £ | £ |
¥ | yen | ¥ | ¥ |
€ | euro | € | € |
© | copyright | © | © |
® | registered trademark | ® | ® |
non-breaking space | |   |
How to use
For exampl we will use HTML tag that is interpreted on client side to bold header
<h1> example </h1>
1|
2| <h1> example </h1>
3|
2| <h1> example </h1>
3|