When to use Base64 Encoder/Decoder
A PR review has a gnarly base64 blob in an environment variable — could be a private key, could be a config JSON, could be garbage. Paste it here and decode it back to plain text in one click using JavaScript's native `atob` / `btoa` under the hood. Go the other way just as fast: paste a private key or a binary config and get the base64 string to drop into a Kubernetes secret or a CI environment variable. Supports text mode for strings and file mode for binary payloads like images embedded in CSS data URIs. Nothing you decode leaves this browser tab — no server receives the blob, which matters because a valid private key can be replayed immediately.
- Decode a base64 env var from a PR to check for secrets
- Encode a service account JSON for a Kubernetes secret
- Inspect the payload of a base64 data URI from a CSS file