data-iframe.pages.dev
(d-f.pages.dev)
Displays Data URLs in an iframe
Data URLs, URLs prefixed with the data: scheme, allow content creators to embed small files inline in documents. They were formerly known as "data URIs" until that name was retired by the WHATWG.
Data URLs are composed of four parts. A prefix (data:), a MIME type indicating the type of data, an optional base64 token if non-textual, and the data itself.
Syntax: data:[<mediatype>][;base64],<data>
- text example
- data-iframe.pages.dev#data:,Hello World
This site additionally supports compressed base64 in one of these formats:br (Brotli), gzip and deflate.
Syntax: data:[<mediatype>][;base64[+<compressionformat>]],<data>