HTML Escape / Unescape
Escape and unescape HTML special characters such as <, >, and &.
Encode and decode HTML entities.
HTML entities are a way to represent characters that have special meaning in HTML.
For example, < is written as < and > as >.
They are used when displaying code on a web page or safely embedding user input into HTML.
HTML Escape converts special characters like <, >, &, ", and '. HTML Entity encoding converts characters to &#number; numeric reference format.
No. All processing happens in your browser.