Base32 Decoder

Decode Base32 encoded data back to original format.

Common Examples

Simple text:

"JBSWY3DPEBLW64TMMQQQ===="

→ "Hello World"

Binary data:

"JBSWY3A="

→ [0x48, 0x65, 0x6C, 0x6C, 0x6F]

JSON data:

"EJRGKIDROVUWG2ZAMJZGKYLDMU======"

→ {"name": "John", "age": 30}

File content:

Long Base32 string

→ Image files, PDFs, etc.