Base64 Image Encoder / Decoder
Convert images to Base64 for embedding in HTML, CSS, or JavaScript. Also decode Base64 back to images.
Supported Formats
JPEG, PNG, GIF, WebP, BMP, SVG, and any other image format your browser can display.
HTML Embedding
Use the Data URL output directly in your HTML: <img src="data:image/png;base64,...">
CSS Embedding
Use in CSS background: background: url(data:image/png;base64,...)