Base64 Encode / Decode
Convert text and binary data to Base64 and back.
Encoding
Convert an image to a Base64 data URI for inline embedding.
No. The file is read with the browser's FileReader API and encoded locally. It never leaves your device, which is why this works with the network disconnected.
For small assets, roughly under 4 KB, where saving a request outweighs the cost. Base64 inflates data by about 33% and inlined images cannot be cached separately from the document, so a large inlined image is downloaded again on every page load.
Convert text and binary data to Base64 and back.
Read EXIF, dimensions and camera data from an image.
Render SVG markup live and export it as a data URI or PNG.
Your input is saved in this browser so a refresh does not lose it. Tools handling credentials are never saved.