Base32 Encode and Decode

String to Base32 Encode

String to Encode
Turn on Live Mode | Encodes and Decodes in real-time
0 bytes, 0 characters
Process Line by Line | Encode and Decode each line separately

Select or Drag and drop file here

Base32 Encoded
0 bytes, 0 characters

About Base32 Encoding and Decoding

Base32 is a widely-used encoding scheme that represents binary data as an ASCII string format. With its smaller character set and case-insensitive nature, it's more suitable for human-readable codes compared to Base64. Common applications of Base32 include generating secret keys for two-factor authentication (2FA) and creating case-insensitive identifiers in various systems.

How Base32 Encoding Works

In the Base32 encoding process, a group of five bytes (40 bits) of input data is converted into eight characters (each character representing 5 bits) from a set of 32 different characters. The output characters are selected from a set of uppercase letters (A-Z, case-insensitive) and digits (2-7). To indicate that the input data has fewer than 40 bits, padding with one to six equals signs (=) may be used. This padding ensures the output length is always a multiple of 8.

Base32 Decoding: Reversing the Process

Base32 decoding is the process of converting a Base32-encoded string back into its original binary form. During decoding, the eight-character groups are converted back into five bytes of data by reversing the encoding process. If the encoded string contains padding characters, they are removed during decoding to restore the original data's length.

Example of Base32 Encoding and Decoding

Here's an example of how Base32 encoding and decoding works:

Input string: Hello, World!

Base32 encoded output: JBSWY3DPEBLW64TMMQQQ====

Base32 decoded output: Hello, World!

Why Use a Base32 Converter?

A Base32 converter tool simplifies the process of encoding and decoding data. It allows you to quickly convert text or binary files to Base32-encoded strings and vice versa. This is particularly useful for developers who need to embed binary data in their projects or troubleshoot encoding-related issues.