Decode a Base64-encoded string to a JSON object instantly in your browser. Handles standard and URL-safe Base64. Swap to JSON→Base64 in one click. Client-side.
The Base64 to JSON converter decodes a Base64 string using `atob` and then parses the result as JSON. Both standard Base64 and URL-safe Base64 (with `-` and `_`) are accepted — the converter normalises them automatically. The JSON output has an interactive tree view and graph visualization. Swap to JSON→Base64 with one click.
QCan it decode JWT tokens?
Yes — paste the middle segment (payload) of a JWT (between the dots) and the converter will decode and display the JSON claims. Note: JWTs use URL-safe Base64 without padding.
QDoes it handle Unicode in the Base64 payload?
Yes — the converter UTF-8 decodes the result of atob to correctly handle non-ASCII characters.
QIs my data sent to a server?
No. All decoding runs in your browser.