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…
Copied!

Summary

Paste a Base32 string and instantly convert it to its octal (base-8) representation.

How it works

  1. Accepts any valid RFC 4648 Base32 string (characters A–Z and 2–7, with optional padding).
  2. Decodes the Base32 input to its underlying raw byte sequence.
  3. Converts each byte value (0–255) to a zero-padded 3-digit octal number (000–377).
  4. 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

Last updated: 2026-07-01 · Reviewed by Nham Vu