AZ Tools

Data URI Parser & Decoder

Developer

Paste a data: URI and instantly break it down: its MIME type, whether the payload is Base64 or percent (URL) encoded, the charset, and the real byte size. Textual payloads (text, JSON, XML, SVG, HTML, CSV) are decoded and shown, and images get a live preview. Everything runs locally in your browser — nothing is uploaded.

MIME typetext/plain
EncodingBase64
Charsetutf-8
Decoded size13 bytes
Decoded text

How to use

  1. Paste a full data: URI into the input box.
  2. Read the MIME type, encoding, charset and byte size.
  3. Copy the decoded text, or preview the image.

Frequently asked questions

Which data URIs are supported?
Any RFC 2397 data: URI, with or without a media type, and either Base64 (;base64) or percent-encoded payloads. A missing media type defaults to text/plain.
How is the size calculated?
It is the real size of the decoded bytes, not the length of the encoded string — so it reflects the actual file or text size the URI represents.
Can it preview images?
Yes. When the MIME type is image/*, the decoded data is rendered as a live preview directly from the URI. Non-image binary payloads just show their size.
Is my data URI sent anywhere?
No. Decoding happens entirely in your browser; nothing is uploaded.

Related tools