Octal 转 Binary
把 Octal 值转成 Binary,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
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.