IPv4 ↔ Decimal

Convert between dotted IPv4 notation, 32-bit decimal, hex, and dotted binary.

Monitor this automatically

NetTests can run this check on a schedule, preserve historical results, compare changes over time, and alert you the moment something breaks.

Start monitoring free → See all monitoring products

Frequently Asked Questions

What is an IPv4 decimal address?

An IPv4 address is a 32-bit number. Dotted notation (192.168.1.1) splits it into four 8-bit octets for readability. The decimal form is the same 32 bits as a single integer: 192.168.1.1 = 3232235777. Some tools, databases, and legacy systems store IPs as 32-bit integers rather than strings.

When would I encounter a decimal IP address?

Decimal IPs appear in: older Apache/Nginx logs that store IPs as integers, MySQL's INET_ATON()/INET_NTOA() functions, certain Windows registry entries, and some phishing URLs that obscure the destination (http://3232235777/ instead of http://192.168.1.1/). This tool converts between all representations.

What does the dotted binary form show?

Each octet is shown as 8 binary digits: 192.168.1.1 becomes 11000000.10101000.00000001.00000001. This makes subnet masking visual — the network bits and host bits are clearly separated at the mask boundary.