HTML Entity Encode & Decode
How HTML Entity Encoding Works
HTML entity encoding replaces special characters with their entity representations.
- 1
Identify special characters
Characters like <, >, &, " and ' are identified in the input.
- 2
Replace with entity references
Each special character is replaced with its corresponding HTML entity (e.g., < becomes <).
FAQ
What are HTML entities?
HTML entities are special codes used to represent characters that have special meaning in HTML, such as <, >, &, and ". They are written as &name; or &#number;.
Related Tools
π€
Base64 Encode & Decode
Encode text to Base64 or decode Base64 back to text. Supports UTF-8, URL-safe variant, and batch processing.
πURL Encode & Decode
Encode or decode URL components. Handles special characters and Unicode.
π’Hex Encode & Decode
Convert text to hexadecimal representation or decode hex back to text.