Encode and decode text, files, and images to and from Base64 instantly. Everything runs in your browser.
or
Any file type ยท Max 10 MB
or
JPG, PNG, WebP, GIF, SVG ยท Max 5 MB
data:image/... URI.No. Everything happens in your browser. Nothing is transmitted.
Base64 is a way to encode binary data as ASCII text using 64 characters. It's commonly used to embed images directly in HTML/CSS, pass data in JSON, or send attachments through text-only protocols.
No! Base64 is encoding, not encryption. Anyone can decode it instantly. Never use it to protect sensitive data โ use real encryption instead.
No โ it makes it larger. Base64 encoding increases size by about 33%. It's used for compatibility, not compression.
A Data URI embeds a file directly into HTML or CSS as data:image/png;base64,.... Useful for small icons and reducing HTTP requests.