OpenWebDevTools

search ⌘ + K

Base64 Decoder — Decode Base64 to Plain Text Instantly

Paste your input and get instant output

What Is Base64 Decoding?

Base64 decoding is the reverse of Base64 encoding — it takes a Base64-encoded ASCII string and converts it back to the original binary data or text. Developers use Base64 decoding to:

  • Inspect JWT token payloads — The payload section of a JWT is Base64URL-encoded.
  • Debug API responses — Some APIs return Base64-encoded data that must be decoded for inspection.
  • Decode email content — MIME-encoded email attachments and content are Base64-encoded.
  • Read configuration values — Kubernetes secrets, environment variables, and config files often store sensitive values in Base64.
  • How to Use the Base64 Decoder?

    1. Paste your Base64 string into the input box above.
    2. Press the "Decode" button to Decode the Base64 string.
    3. Click to copy the result to your clipboard.

    Common Base64 Decoding Errors & Fixes