HTML Entities escape
Escape HTML special characters or unescape HTML entity strings.
INPUTraw
1
OUTPUTentities
1
Tool Guide
What this tool does
HTML entities prevent markup conflicts when displaying characters such as <, >, &, and quotes.
When to use it
HTML Entities is useful during Encoding work when you need to quickly convert, inspect, format, or generate small pieces of developer data. It is intended for API responses, configuration snippets, logs, test inputs, and browser-side checks.
Input and output example
Input example: <div class="note">A & B</div>
Output example: <div class="note">A & B</div>
Notes and limitations
Use the result as a development aid and verify it before applying it to production systems. Check encoding, timezone, security, and format requirements when the output will be used in an application. Related concept: escape.