Base64 Encoder / Decoder

Encode text to Base64 or decode Base64 back to text. UTF-8 safe.

About Base64

  • Base64 represents binary data in ASCII characters. Useful for embedding in JSON, URLs or email.
  • Output is ~33% larger than the input.
  • URL-safe mode uses - and _ instead of + and /, and omits trailing =.

Advertisement