Codificatore/Decodificatore Base32
Codifica e decodifica testo Base32.
About Base32:
- • Uses 32 characters: A-Z and 2-7
- • Case-insensitive (unlike Base64)
- • No special characters that could be confused
- • Commonly used in TOTP (2FA), file hashes, and data encoding
- • 20% less efficient than Base64 but more human-readable
tools.base32.toolInfo.title - Dettagli tecnici
tools.base32.toolInfo.details
Alternativa da riga di comando
# Using Python
python3 -c "import base64; print(base64.b32encode(b'Hello').decode())"
# Decode
python3 -c "import base64; print(base64.b32decode('JBSWY3DP').decode())"