Does this verify JWT signatures?
No. It decodes header and payload only. Signature verification requires the secret or public key.
Decode JWT header and payload without sending tokens to a server.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjMiLCJuYW1lIjoiQUkgSlNPTiBGb3JtYXQiLCJpYXQiOjE3MTUyMDAwMDB9.signature
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.
EncodeFreeEncode HTML entities or decode escaped HTML text back to readable characters.
EncodeFreeFix broken JSON from ChatGPT, APIs, logs and config files with local repair and optional AI fallback.
JSONFreeNo. It decodes header and payload only. Signature verification requires the secret or public key.
No. Decoding runs in your browser.
Yes. Expiration does not prevent decoding.