๐Ÿ–ผ๏ธ

Base64 to Image Converter

Decode Base64 strings to images

Paste a Base64 string above to preview the image

How to Use

  1. 1

    Paste a Base64 string or a full data URL (data:image/png;base64,...) into the input.

  2. 2

    The image preview appears instantly.

  3. 3

    Click Download to save the decoded image to your device.

Frequently Asked Questions

What is the difference between a data URL and raw Base64? โ–ผ
A data URL includes a MIME type prefix: data:image/png;base64,... A raw Base64 string is just the encoded data without that prefix. This tool handles both automatically.
Is my data sent to a server? โ–ผ
No. Decoding happens entirely in your browser using the built-in atob() function.