A plain .b64, .base64, or text file usually contains only encoded characters, sometimes wrapped onto several lines. Load it into the decoder, choose the correct alphabet, and inspect the reported normalization. The tool reads the selected file in the current browser tab and can download the recovered bytes. The 10 MB input limit is a browser-safety boundary designed to reduce long freezes and memory spikes, not a limit in the Base64 specification.
A Data URL combines a header and payload, such as data:image/png;base64,iVBORw0…. The header may declare a media type and parameters; the comma separates it from the encoded bytes. LiveParse parses the Base64 form and reports its label, but does not assume the label is true. For images, preview eligibility is based on recognized raster signatures in the decoded bytes.
Previewing untrusted active content inside a page creates unnecessary risk. This decoder never renders decoded HTML or SVG and does not execute scripts, open documents, or hand arbitrary bytes to a plugin. It previews only recognized PNG, JPEG, GIF, and WebP raster data. Everything else remains text, hex, or a download that you can examine with an appropriate isolated tool.
Large decoded results are shortened in the on-page preview so the interface remains responsive. Copy and download actions operate on the complete result. If the data is sensitive, remember that clipboard managers, downloaded files, browser extensions, backups, and operating-system history exist outside the converter’s control.
- Data URL
- A
data: header, optional media type, ;base64 marker, comma, and payload.
- Magic bytes
- Format signatures used to restrict previews to a limited set of raster image types.
- No active view
- Decoded HTML and SVG are never embedded or executed by the preview.
- Full result
- Copy and download retain all bytes even when the visible preview is shortened.