Base64 Image to Data URL

Build data URLs from Base64 image strings so small images can be embedded directly in HTML, CSS, or JSON.

Data URL Format

data:image/png;base64,iVBORw0KGgoAAAANSUhEUg...

MIME Types

Key / CodeDescription
PNGdata:image/png;base64,...
JPEGdata:image/jpeg;base64,...
WebPdata:image/webp;base64,...
SVGdata:image/svg+xml;base64,...

When to Use It

Data URLs are useful for tiny icons, test fixtures, quick previews, and self-contained demos. Avoid them for large images because they increase HTML or CSS size and reduce cache efficiency.

Related

Knowledge is power.