Convert special characters to HTML entities and back. Essential for web development and preventing XSS attacks.
Common HTML Entities
| Character | Entity | Name | |-----------|--------|------| | < | < | Less than | | > | > | Greater than | | & | & | Ampersand | | " | " | Quote | | ' | ' | Apostrophe | | © | © | Copyright |
Security Benefits
Encoding user input before displaying it in HTML helps prevent Cross-Site Scripting (XSS) attacks by neutralizing malicious scripts.