base32_decode
stringDecodes a Base32-encoded string
Syntax
base32_decode(string) Parameters
string (string) The Base32 string to decode
Returns
string Decoded string
Examples
Input:
base32_decode("JBSWY3DP") Output:
"Hello" Input:
"ORSXG5A=" | base32_decode Output:
"test" The base32_decode() function decodes a Base32-encoded string back to its original form.
Usage
Use base32_decode() for decoding Base32 data from verification codes, file names, or other Base32-encoded sources.