HTML Escaper is a text utility that can be easily used when you need to display HTML code as is.
HTML escaping example
When you have HTML code like this:
<div>Hello, World!</div>
HTML escaping this converts it to:
<div>Hello, World!</div>
Commonly used HTML special characters
< → < (less than, smaller symbol)
> → > (greater than, greater symbol)
& → & (ampersand)
" → " (double quote)
' → ' (single quote, single quote)