0
Input Length
0
Output Length
0
Entities Found
0%
Size Change
What are HTML Entities?
HTML entities are special codes used to display reserved characters in HTML. They prevent the browser from interpreting these characters as HTML code.
Why use them? Some characters are reserved in HTML and have special meaning. For example, the less-than sign (<) starts an HTML tag. To display it as text, use <
Format: &entityName; or &#number;
Example: © displays as © (copyright symbol)
Common HTML Entities
| Character | Named Entity | Numeric Entity | Description |
|---|---|---|---|
| < | < | < | Less than |
| > | > | > | Greater than |
| & | & | & | Ampersand |
| " | " | " | Double quote |
| ' | ' | ' | Single quote |
| © | © | © | Copyright |
| ® | ® | ® | Registered |
| € | € | € | Euro sign |