Base64 Encoder/Decoder

Encode and decode text, files, and images to/from Base64 format

Encode
Decode
Base64 Decoder & Analyzer
Advertisement
Statistics
  • Encodings: 0
  • Decodings: 0
  • Files Processed: 0
About Base64

Base64 is a binary-to-text encoding scheme that represents binary data in ASCII format by translating it into a radix-64 representation.

  • Safe for URLs and emails
  • Increases size by ~33%
  • Uses A-Z, a-z, 0-9, +, /
  • Padding with = characters
Common Uses
  • Email attachments
  • Data URIs in HTML/CSS
  • API data transmission
  • Storing binary in JSON
  • Basic authentication