Tested tool guide
Tested browser tools
Checked August 16, 2026
What Data URI Converter does, with a checked example
A data URI carries a file's media type and encoded bytes inside one `data:` URL. This converter works in both directions: select a local file to create an embeddable URI, or paste a URI to recover a downloadable file. File content is handled in the browser and is not uploaded. The common surprise is size: Base64 makes the payload longer than the original bytes, so data URIs are best suited to small assets.
Worked example
A concrete input and expected output from the current implementation.
Input
data:text/plain;base64,SGVsbG8=
->
Expected output
A downloadable text/plain file containing exactly five bytes whose text is Hello
`text/plain` is the declared media type, and `;base64` identifies the encoding. Decoding `SGVsbG8=` yields the ASCII byte sequence for `Hello`, which is five bytes long.