Base64 to Image Converter

Decode a base64 string or data URL back into a downloadable image.

About this tool

Paste a base64-encoded image string (or a full data: URL) and preview it as a real image, then download it as a normal file. The counterpart to this site's Image to Base64 tool.

Decoding happens entirely in your browser — nothing is uploaded anywhere.

Frequently asked questions

What's the difference between a data URL and a raw base64 string?
A data URL looks like data:image/png;base64,iVBORw0KG... — it already says what format the image is. A raw base64 string is just the iVBORw0KG... part with no format info, so you need to tell this tool what format it is using the dropdown.
Why did it fail to preview?
Either the base64 text is incomplete/corrupted, or the format you selected doesn't match what the data actually is — try a different format from the dropdown if you're not sure.
Is my data uploaded anywhere?
No — decoding and preview both happen entirely in your browser.