Convert Base64 to image
Paste a Base64 string (data URL) and download the resulting image.
Processed on your device. Nothing is sent to any server.
Paste a Base64 string (data URL) and get the resulting image ready to preview and download.
Decodes the Base64 string into binary bytes and builds a file with the MIME type indicated in the string itself.
Use cases
- Recovering an image embedded in a config file or database.
- Visually checking the contents of a data URL.
- Extracting an image from an exported JSON.
How it works
- 1
Paste the Base64 text
Include the data:image/...;base64, prefix so the format is recognized.
- 2
Download the image
The preview appears automatically; download the file whenever you want.
Frequently asked questions
- What format should the text have?
- It must start with data: followed by the MIME type and ;base64, before the encoded data, e.g. data:image/png;base64,iVBORw0KG...