Data URI Generator

Convert files to Data URIs with base64 encoding

File Input
Data URI Output
0 bytes
MIME: none

What is a Data URI?

A Data URI embeds small files directly in HTML or CSS using the format: data:[MIME-type][;base64],data. This reduces HTTP requests, improving page load speed. Commonly used for icons, fonts, and small images. The encoded data is about 33% larger than the original binary file.