Binary IP Converter
Convert an IPv4 address to dotted binary, a 32-bit decimal integer and hexadecimal.
| Dotted decimal | 192.168.1.1 | |
| Binary (dotted) | 11000000.10101000.00000001.00000001 | |
| 32-bit integer | 3232235777 | |
| Hexadecimal | 0xC0A80101 |
Enter an IPv4 address to see its binary, decimal integer and hex representations.
How to use
- Type an IPv4 address such as 192.168.1.1.
- Read the dotted binary and 32-bit integer.
- Copy the hexadecimal form if needed.
Frequently asked questions
- How is the 32-bit integer computed?
- Each octet is treated as 8 bits and concatenated into a single unsigned 32-bit number, so 192.168.1.1 becomes 3232235777.
- Why is binary shown in four groups?
- Each of the four octets is an 8-bit group, matching the dotted-decimal structure of an IPv4 address.