Decode Base64 strings back to plain text, HTML, JSON, or preview Base64-encoded images. Supports standard and URL-safe Base64.
Base64 converts binary data to ASCII text using 64 safe characters β AβZ, aβz, 0β9, +, and /.
Used in email attachments (MIME), data URIs for images, JWT tokens, and API payloads.
URL-safe Base64 replaces + with - and / with _ to avoid breaking URLs.
Base64 adds ~33% overhead β every 3 bytes become 4 characters.