IP → Binary 변환
IP 값을 Binary로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
Standard dotted-decimal IPv4.
Each octet expanded to 8 bits, separated by dots.
Expand an IPv4 address to its 32 binary bits. Reading IPs in binary makes subnet masks, network/host boundaries, and CIDR prefixes much easier to reason about.
For CIDR /24, the first 24 bits identify the network and the last 8 bits identify the host. Reading the binary form makes that boundary visible at a glance.
Why is each group always 8 digits?
An IPv4 octet is 8 bits. Padding to 8 digits keeps the alignment and makes subnet boundaries easy to read.