Base32 Encode / Decode

Base32 Encode and Decode Online

Base32 is an encoding scheme defined in RFC 4648 that uses 32 characters (letters A–Z and digits 2–7). Unlike Base64, the Base32 alphabet is case-insensitive and contains no special characters, making it suitable for URLs, filenames, and human-readable identifiers.

Uses of Base32

Padding

The = characters at the end align the Base32 string length to a multiple of 8. RFC 4648 requires padding by default, but allows omitting it when the length is known in advance.

Frequently Asked Questions