HTML Encode & Decode
Web DevelopmentEncode special characters to HTML entities or decode them back to plain text. Includes URL encoding/decoding and Base64 conversion.
HTML Encode/Decode
Quick Actions
Common Examples
HTML Encode:
<div>Hello & World</div> → <div>Hello & World</div>
URL Encode:
Hello World! → Hello%20World%21
Base64 Encode:
Hello → SGVsbG8=
HTML Entities Reference
| Character | Entity | Description |
|---|---|---|
| < | < | Less than |
| > | > | Greater than |
| & | & | Ampersand |
| " | " | Double quote |
| ' | ' | Single quote |
| © | © | Copyright |