UTF-8-safe Base64, processed entirely in your browser — nothing is uploaded.
Decoding Base64 back to JSON is how you read a payload that was packed for transport — a token claim, an inlined data: URI, a config blob from an environment variable, or an API response that encoded its body. This tool decodes UTF-8-safely, then parses and pretty-prints the JSON so it is readable, all in your browser.
Standard Base64 uses + and /; the URL-safe variant (used by JWTs and many APIs) uses - and _ and often drops = padding. If a token will not decode, swap those characters back. For full three-part token parsing, use the JWT Decoder.