Paste your input and get instant output
HTML encoding (or HTML escaping) converts special characters into their corresponding HTML entities so they are displayed as text rather than interpreted as HTML markup. This is critical for:
| Character | HTML Entity |
|---|---|
| & | & |
| < | < |
| > | > |
| " | " |
| ' | ' |
HTML encoding produces entities like `&` and `<`, used for safe HTML document rendering. URL encoding produces percent-encoded values like `%26` and `%3C`, used for safe URL transmission. Make sure you're using the right encoding for your context.