When should I encode HTML entities?
Encode text before displaying it as literal text inside HTML.
Encode HTML entities or decode escaped HTML text back to readable characters.
<div class="note">Tom & Jerry</div>
Encode text to Base64 or decode Base64 back to Unicode text.
EncodeFreeEncode text for URLs or decode percent-encoded query strings.
EncodeFreeParse a URL into protocol, host, path, query parameters, hash and origin.
EncodeFreeConvert URL query strings into JSON objects for debugging links and tracking parameters.
EncodeFreeDecode JWT header and payload without sending tokens to a server.
EncodeFreeFix broken JSON from ChatGPT, APIs, logs and config files with local repair and optional AI fallback.
JSONFreeEncode text before displaying it as literal text inside HTML.
It turns sequences like ampersand-lt and ampersand-amp back into readable characters.
No. It is an encoder and decoder, not a full security sanitizer.