What's a data URI?
A URI scheme defined in RFC 2397 that embeds the resource inline. `data:image/png;base64,iVBORw0KGgo...` declares the MIME type, says the payload is Base64-encoded, and includes the bytes after the comma. Browsers and most parsers accept it anywhere an http(s) URL would be expected in image contexts.