Decode Base64 to image

You can decode either raw Base64 bytes or a full data URL like data:image/png;base64,....

  1. Paste the string into the Base64 decoder.
  2. If it starts with data:, keep the prefix — it helps detect MIME type.
  3. Use “download bytes” and save with the right extension (.png, .jpg, .webp).
Why images look broken
  • URL-safe Base64 characters (-/_) used with a standard decoder
  • Missing padding (=)
  • Copied whitespace/newlines from logs