Encode special characters to HTML entities and decode them back. Batch processing, instant results.
| Entity | Character | Description |
|---|---|---|
| & | & | Ampersand |
| < | < | Less than |
| > | > | Greater than |
| " | " | Double quote |
| ' | ' | Single quote (apostrophe) |
| | Non-breaking space | |
| © | © | Copyright |
| ® | ® | Registered trademark |
| ™ | ™ | Trademark |
| — | — | Em dash |
| – | – | En dash |
| € | € | Euro sign |
| £ | £ | Pound sign |
| ¥ | ¥ | Yen sign |
| ¢ | ¢ | Cent sign |
| × | × | Multiplication sign |
| ÷ | ÷ | Division sign |
<, >, &, ", ' into HTML entities so they display correctly in web browsers instead of being interpreted as HTML markup.< (less than) becomes <, > (greater than) becomes >, & (ampersand) becomes &, " (double quote) becomes ", and ' (single quote) becomes '.<) for safe display in web pages, while URL encoding converts characters to percent-encoded format (like %3C) for safe transmission in URLs. They serve different purposes.& and ending with ; that represents a special character. For example, < represents <, represents a non-breaking space, and © represents ©.© (©), ™ (™), ® (®), — (—), and many more. The escape function converts characters to their minimal entity form.