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.