HTML Entity Encoder/Decoder
Convert text to HTML entities and decode HTML entities back to text.
Input: 0 characters
Output: 0 characters
Common HTML Entities
Common Entities | HTML Common Entities | 名称 |
---|---|---|
& | & | Ampersand |
< | < | Less Than |
> | > | Greater Than |
" | " | Double Quote |
' | ' | Single Quote |
¢ | ¢ | Cent |
£ | £ | Pound |
¥ | ¥ | Yen |
€ | € | Euro |
© | © | Copyright |
® | ® | Registered Trademark |
™ | ™ | Trademark |
Information
HTML Entity Encoder/Decoder converts special characters to their corresponding HTML entities and vice versa. This is useful for web developers who need to ensure special characters display correctly on web pages or when working with HTML content.
How to Use
- Enter text in the input field to encode it to HTML entities
- Or paste HTML entities and select decode mode to get the original text
- Use the common entities table for reference
Note: HTML entity encoding helps prevent XSS (Cross-Site Scripting) attacks by properly escaping special characters.