Base64 Input
Image Preview
🖼
Paste base64 data on the left to preview the image
Base64 encoding converts binary image data into a string of ASCII characters, making it safe to embed in text-based formats like HTML, CSS, or JSON. A base64-encoded image can be used directly as an img src via a data URI: data:image/png;base64,…
data:image/…;base64,… string<img src="data:image/…;base64,…"> tag and the base64 is extracted automaticallySupported image types: PNG, JPEG, GIF, WebP, BMP, SVG, and more — any format your browser can display.
All processing happens entirely in your browser. No image data is ever sent to any server.