Image to Base64 Converter
Convert images to Base64 or decode Base64 strings back to images — free, instant, no upload. Generate data URIs ready for HTML img src and CSS background-image.
Image → Base64
Drop your image here or
JPG · PNG · WebP · GIF · BMP · SVG · Max 10MB
- Filename
- —
- Format
- —
- Resolution
- —
- File size
- —
- Base64 length
- —
Base64 → Image
- Format
- —
- Resolution
- —
- Est. file size
- —
You might also like
😄 Free thanks to ads
Features
- Two-Way Conversion: Encode images to Base64 and decode Base64 strings back to images — all in one screen
- Multiple Formats: Supports JPG, PNG, WebP, GIF, BMP, and SVG
- Instant data URI: Outputs a ready-to-use data URI for HTML img src or CSS background-image
How to Use
- Upload Image: Drag an image into the left panel or click to choose a file
- Copy Result: Copy the full data URI or just the Base64 part
- Base64 → Image: Paste a Base64 string in the right panel to restore the image
Use Cases
- HTML Embed: Use data URI in img src to display images without a server request
- CSS Background: Embed images directly in CSS via background-image: url(data:...)
- API Payload: Include image data in REST APIs or JSON payloads as Base64
- Debugging: Quickly visualize Base64-encoded image data
Code Examples
Paste the generated data URI directly into your HTML or CSS.
HTML
<!-- img src에 data URI 직접 삽입 -->
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...==" alt="이미지">
<!-- picture 태그와 함께 사용 -->
<picture>
<source srcset="data:image/webp;base64,UklGRiAA...==" type="image/webp">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...==" alt="이미지">
</picture>CSS
/* background-image에 data URI 사용 */
.thumbnail {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...==");
background-size: cover;
background-position: center;
}
/* content 속성에 사용 */
.icon::before {
content: url("data:image/svg+xml;base64,PHN2ZyB4bWxu...==");
}Help us improve this tool
More iTool Features!
HEIC Viewer
Free online HEIC viewer — open and convert Apple HEIC/HEIF photos on any device. No install, no signup required.
Image to JPG
Free online image to JPG converter — convert PNG, WebP, BMP, HEIC to JPG. Batch convert up to 20 files at once.
Image to PNG
Free online image to PNG converter — convert JPG, WebP, BMP, and more to PNG. No install, no upload to server.
Image to WebP
Free online image to WebP converter — shrink image file size with modern WebP format. No install, no upload to server.
Compress Image
Free online image compressor — reduce file size by up to 80% while keeping visual quality. No upload to server.
SVG Crop
Free online SVG cropper — auto-trim extra whitespace and margins from SVG files. No install, no upload to server.