Text Master

by Thankless Technologies

HTML Encode

Replace special HTML characters (&, <, >, quotes) with their entity equivalents. Prevents XSS when displaying user input.

Example

<p>Hello</p> → &lt;p&gt;Hello&lt;/p&gt;

"A & B" → &quot;A &amp; B&quot;

it's → it&#39;s

USED IN COOKBOOKS