Cryptology Engine

Base64 Encode

Encode text to Base64 format

Operations - Base64

Switch between Encode and Decode

Text
Encoded Data
About - Base64 Encode

Base64 Encoding, a method used to convert binary data to ASCII characters.

  • Use Cases: Email attachments, JSON web tokens, data URLs, binary data encoding
  • Character Set: A-Z, a-z, 0-9, +, / (total 64 characters)
  • Padding: Padding is done with = sign
  • Feature: Does not provide security, only encoding
  • Standard: RFC 4648