Icon to Base64

Convert icons to Base64 encoded strings

Drag and drop your icon here, or

Preview

90%

Base64 Output

Usage Examples

<img src="data:image/png;base64,iVBORw0KGgo..." alt="Icon">
.icon { background-image: url('data:image/png;base64,iVBORw0KGgo...'); }
const base64 = "iVBORw0KGgo...";
const image = new Image();
image.src = "data:image/png;base64," + base64;
<?php
$base64 = "iVBORw0KGgo...";
echo '<img src="data:image/png;base64,' . $base64 . '">';