&

HTML Entities escape

Escape HTML special characters or unescape HTML entity strings.

mode
INPUTraw
0 lines 0 chars
1
OUTPUTentities
0 lines 0 chars
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: &lt;div class=&quot;note&quot;&gt;A &amp; B&lt;/div&gt;

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.

Copied