What are HTML Entities?
HTML entities are used to display reserved characters in HTML. For example, you cannot use the less than (<) or greater than (>) signs directly in your text because browsers will interpret them as tags.
Why use Entities?
- To display reserved characters like
<,>, and&. - To display characters that are not on your keyboard.
- To ensure characters are rendered correctly across all browsers.
Common HTML Entities
| Result | Description | Entity Name | Entity Number |
|---|---|---|---|
| non-breaking space | |   | |
| < | less than | < | < |
| > | greater than | > | > |
| & | ampersand | & | & |
| " | double quotation mark | " | " |
| © | copyright | © | © |
Example Usage
<p>The <h1> tag is for headings.</p> <p>Prices start at &euro;100.</p> <p>Copyright &copy; 2026 HiFi Toolkit.</p>