Tools
Back to Home

Base64 Encoder

Encode text or files to Base64 format

Go to Decoder
Characters: 0

Max file size: 5MB | Drop file here or click to upload

Characters: 0

About Base64 Encoding

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used when there is a need to encode binary data that needs to be stored and transferred over media that are designed to deal with text.

  • Standard Base64: Uses characters A-Z, a-z, 0-9, +, and / with = padding
  • URL-safe Base64: Replaces + with -, / with _, and removes = padding (RFC 4648)
  • UTF-8 Encoding: Supports all Unicode characters (recommended)
  • ASCII Encoding: Only supports characters 0-127
  • Latin-1 Encoding: Supports characters 0-255