Octal → Binary 변환
Octal 값을 Binary로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
Octal digits 0–7.
Binary representation.
Translate octal values into bit-level binary. Each octal digit maps to a 3-bit group, so it is easy to verify file permissions or read legacy embedded values on a per-bit basis.
Why three bits per octal digit?
Octal is base 8 = 2³, so every digit corresponds to exactly three binary bits.