A Base64 image is an image file encoded as a long text string using only ASCII characters. It's often used to embed images directly in HTML, CSS, or JSON files.
Paste your Base64 string into the box above and click "Convert to Image". The image will appear below, and you can download it if you wish.
Yes! All decoding is done in your browser. Your Base64 string is never sent to any server and remains private on your device.
Yes, after decoding, a download button will appear below the image. Click it to save the image to your device.
Make sure your Base64 string starts with data:image/...
. If not, add the correct prefix for your image type (e.g., data:image/png;base64,
).