Base32 एनकोडर/डिकोडर
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 - तकनीकी विवरण
tools.base32.toolInfo.details
कमांड-लाइन विकल्प
# Using Python
python3 -c "import base64; print(base64.b32encode(b'Hello').decode())"
# Decode
python3 -c "import base64; print(base64.b32decode('JBSWY3DP').decode())"