Base32 encodes data using 32 characters, the letters A-Z and digits 2-7, with = padding.
Why it matters
Its case-insensitive, unambiguous alphabet makes it common for values people type or read aloud, such as authenticator secrets. Output is longer than Base64 for the same data.
Source: RFC 4648