Paste Base64 or a data URI to preview the image and download it as a file.
Ctrl + Enter to run
This takes a Base64 string or a full data URL and renders it as an image you can view and download. It is the counterpart to inspecting an API response or a database column that stores images as text rather than as files.
If nothing renders, the usual causes are a truncated string, a missing or wrong MIME type in the data URL prefix, or content that was never an image to begin with. The prefix matters: `data:image/png;base64,` and `data:image/jpeg;base64,` are not interchangeable, and browsers vary in how forgiving they are.