Encode text to HTML entities or decode HTML entities to text
Encode <script>
Encode mode converts <script> → <script> to avoid injection.
Decode entities
Decode mode converts &copy; → © for readable symbols.
Attributes
Encode quotes inside attributes: title="5 > 3" → title="5 > 3".
Do you store my text?
No. Encoding/decoding runs entirely in your browser.
What about XSS?
Use Encode to neutralize HTML before rendering untrusted input.
Which entities are used?
We rely on the browser to produce standard HTML entity conversions.