Base64 Decode

How to use the Base64 Decode tool?

  1. First copy your Base64 string to the clipboard
  2. Paste into the Base64 edit area
  3. Click the "Decode" button, and the converted text will be displayed immediately below
  4. Click the "Copy" button and the converted text will be successfully copied to your clipboard
  5. Click the "Clear" button to quickly clear the text

What is the Base64 encoding format?

In computer programming, Base64 is a group of binary-to-text encoding schemes that represent binary data (more specifically, a sequence of 8-bit bytes) in sequences of 24 bits that can be represented by four 6-bit Base64 digits.

Common to all binary-to-text encoding schemes, Base64 is designed to carry data stored in binary formats across channels that only reliably support text content. Base64 is particularly prevalent on the World Wide Web where one of its uses is the ability to embed image files or other binary assets inside textual assets such as HTML and CSS files.

Base64 is also widely used for sending e-mail attachments. This is required because SMTP – in its original form – was designed to transport 7-bit ASCII characters only. This encoding causes an overhead of 33–37% (33% by the encoding itself; up to 4% more by the inserted line breaks).

Why do I need to convert the Base64 to Text?

The original string content can be decoded for easy reading

Related Tools