Base32 to Octal Converter
Paste a Base32 string and instantly convert it to its octal (base-8) representation.
Base32 Input
Characters A–Z and 2–7 (RFC 4648). Spaces and lowercase are normalized automatically.
Octal Output
Result appears here…
Result appears here…
0
Bytes
0
Base32 chars
0
Octal digits
Copied!
Summary
Paste a Base32 string and instantly convert it to its octal (base-8) representation.
How it works
- Accepts any valid RFC 4648 Base32 string (characters A–Z and 2–7, with optional padding).
- Decodes the Base32 input to its underlying raw byte sequence.
- Converts each byte value (0–255) to a zero-padded 3-digit octal number (000–377).
- Displays both spaced and continuous formats for maximum compatibility.
Use cases
- Inspect the raw bytes of a Base32 encoded secret or token.
- Debug TOTP secret keys and verify their byte-level content.
- Explore number base conversions for educational purposes.
- Verify Base32 encoding in protocols like DNS and IPFS.
- Convert encoded data for use in octal-based file permissions or scripts.
- Cross-check Base32 payloads in security audits.
Frequently Asked Questions
Related tools
Last updated: 2026-05-29 ·
Reviewed by Nham Vu