Online image conversion to Base64 encoding tool

Base64 is currently mainly used in HTML5, mobile development and other scenarios that do not consider IE6
Base64 format data:[][;charset=][;base64],

Use of Base64 in CSS
.demoImg{ background-image: url("data:image/jpg;base64,/9j/4QMZRXhpZgAASUkqAAgAAAAL...."); }
Use of Base64 in HTML
<img width="40" height="30" src="data:image/jpg;base64,/9j/4QMZRXhpZgAASUkqAAgAAAAL...." />

Online tool navigation