Image to Base64 Converter
Convert images to Base64 encoded strings
Drop image here or click to upload
Supports PNG, JPG, GIF, SVG, WebP
File Name
-
File Type
-
Dimensions
-
Original Size
-
Base64 Size
-
About Image to Base64
Base64 encoding allows you to embed images directly in HTML or CSS without separate image files.
This is useful for small images, icons, or when you want to reduce HTTP requests.
Example HTML: <img src="data:image/png;base64,...">
Example CSS: background-image: url(data:image/png;base64,...);