Base32 Decoder
Decode a Base32 string back to text.
What this tool does
A Base32 string pasted on the left decodes back to its original text on the right, live, using the standard RFC 4648 alphabet.
Case and padding don't have to match exactly
Because RFC 4648 Base32 uses only uppercase letters, input is
read case-insensitively, so lowercase or mixed-case text decodes
the same as its uppercase form. Trailing = padding
characters are also handled automatically rather than needing to
be exactly correct.
What happens with invalid input
Base32 only permits the letters A through Z and the digits 2 through 7. A character outside that set — including 0, 1, 8, and 9, which RFC 4648 Base32 deliberately does not use — is reported clearly rather than silently producing a wrong result.
Privacy
Decoding happens in your browser. Nothing you paste is sent to a server.