IP Address Converter
Convert IPv4 addresses between different formats.
Converted Formats
Decimal (Dotted)
-
Binary
-
Hexadecimal
-
Integer (32-bit)
-
IP Class
-
IP Type
-
IPv4 Address Classes
| Class | Range | Default Mask | Purpose |
|---|---|---|---|
| A | 1.0.0.0 – 126.255.255.255 | /8 | Large networks |
| B | 128.0.0.0 – 191.255.255.255 | /16 | Medium networks |
| C | 192.0.0.0 – 223.255.255.255 | /24 | Small networks |
| D | 224.0.0.0 – 239.255.255.255 | N/A | Multicast |
| E | 240.0.0.0 – 255.255.255.255 | N/A | Reserved |
📘 How It Works
1
Decimal Format
Standard dotted decimal notation (192.168.1.1). Each octet is a number 0-255.
2
Binary Format
Each octet converted to 8-bit binary (11000000.10101000.00000001.00000001).
3
Hexadecimal Format
Each octet as 2-digit hex (C0.A8.01.01). Useful in low-level networking.
4
Integer Format
32-bit unsigned integer (3232235777). Used in databases and APIs.
💡 Common Use Cases
Database Storage
Store IP addresses as integers for efficient indexing and range queries.
Network Debugging
Analyze binary representation to understand subnet masks and bitwise operations.
Programming
Convert between formats when working with different networking libraries.
Learning
Understand how IP addresses work at the binary level for networking education.