BASE64 TO IMAGE
Paste a Base64 data URI or raw Base64 string to decode and preview the image. Download the result to your device — nothing is uploaded.
How to decode a Base64 image
- 1
Paste a Base64 data URI (starting with data:image/…;base64,) or a raw Base64 string into the text area.
- 2
The tool automatically detects the image type and renders a preview.
- 3
Click Download image to save it to your device.
Questions
- What formats does this support?
- Any image format a browser can render: JPG, PNG, WebP, GIF, SVG, AVIF, and more. If you paste a raw Base64 string without a data URI prefix, the tool sniffs the magic bytes to detect the format.
- Is my data sent to a server?
- No. Everything runs locally in your browser — no Base64 string or decoded image ever leaves your device.
- Why would I have a Base64 image string?
- Base64 images appear in HTML/CSS source code (as data: URIs), in JSON API responses, in email source code, and in database BLOBs. This tool lets you decode and preview them without writing any code.
- What if the preview looks broken?
- A broken preview usually means the Base64 string is incomplete (cut off), contains stray whitespace or line breaks in the wrong place, or has an incorrect MIME type prefix. Try pasting the full string again.