How to Use
- 1
Paste a Base64 string or a full data URL (data:image/png;base64,...) into the input.
- 2
The image preview appears instantly.
- 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.