HTML Escape is a tool for HTML escaping process. When escaping, it replaces special HTML characters with their HTML equivalents (entities).
if you need to post a piece of HTML/JavaScript code in your article/blog post/any other HTML document, you need to escape it to make browsers don't treat it as HTML.
<h1>I'm big BAD HTML</h1>
<script>
alert("your hacked");
</script>
HTML Escape process replace all HTML reserved chacaters (<, >, &, ")
to (<, >, &, ")
.
And the result will be as follows.
<h1>I'm big BAD HTML</h1> <script>alert("your
hacked");</script>
HTML, JavaScript, Bootstrap Css
Readme.md created with readme.so.
[x] Add single quotes (') option with checkbox
[x] Publish
[ ] Add Unescape (reverse) process.