🧬 Data URI Generator

Convert files or text to Base64 Data URIs for embedding in HTML, CSS, and JSON

📁 Upload File

📂
Drop file here or click to browse
Supports any file type (images, fonts, SVG, etc.)

📋 Result

📖 Usage Examples

<!-- HTML Image -->
<img src="data:image/png;base64,iVBOR...">

/* CSS Background */
background: url(data:image/svg+xml;base64,PHN2Z...);

/* CSS Font */
@font-face { src: url(data:font/woff2;base64,d09G...); }