Binary から Octal へ
Binary 値を Octal に変換します。レジスタダンプ、ビットマスク、パケット解析、プロトコルデバッグに向いており、処理はブラウザ内で完結します。
Binary digits only.
Octal value (base 8).
Convert binary directly to octal. Each three binary bits map to a single octal digit, so this is the natural representation when grouping by triples — common in Unix permission systems.
Why does 111 become 7?
Each three-bit group corresponds to an octal digit: 111 → 7, 110 → 6, 101 → 5, and so on.