🖼️ Image to Base64 Encoder
Convert any image to a Base64 string or Data URI for embedding in HTML, CSS or JSON.
Drop image here or click to browse
JPG, PNG, GIF, SVG, WebP, BMP, ICO
Image to Base64 Encoding
Embedding images as Base64 removes the need for a separate HTTP request, which is useful for small icons, logos, and inline CSS backgrounds.
Data URI Format
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...
CSS Usage
.icon { background-image: url('data:image/png;base64,...'); }