Out-of-range value
Values above 2^32 - 1 cannot represent an IPv4 address.
Fix: Double-check the number; you might be dealing with an IPv6 address instead.
header • up to 320x100 / 728x90
Convert a 32-bit unsigned decimal value back into a standard dotted-quad IPv4 address.
Use a compact field for small conversion and calculation tools.
content bottom • up to 300x250
sidebar • 160x600
Last reviewed:
Decimal (base 10) is the everyday number system humans use, handy as a reference format when converting between binary, octal, and hexadecimal values.
Decimal to IP Converter accepts a 32-bit unsigned integer in the range 0–4,294,967,295 and splits it into the four 8-bit octets that form a standard IPv4 address.
It is the mirror of IP to Decimal and is useful when reading logs, database rows, or firewall rules that store IPs as plain integers instead of dotted-quad text.
3232235521
192.168.0.1
Values above 2^32 - 1 cannot represent an IPv4 address.
Fix: Double-check the number; you might be dealing with an IPv6 address instead.
Signed representations can appear negative if the MSB is set.
Fix: Add 2^32 to the negative value to get the equivalent unsigned decimal before converting.
A value starting with 0x is hex, not decimal.
Fix: Use a hex-to-IP converter for hex-formatted IPv4 integers.
0 to 4,294,967,295 (2^32 - 1).
Yes. The output equals `SELECT INET_NTOA(...)`.
You probably entered 0 or an empty string.
No. IPv6 values are 128 bits and do not fit in a 32-bit decimal.
Yes. The conversion runs client-side.
Convert it to unsigned by adding 2^32 first.
Round-trip IP encodings across different bases with the related converters. You can also browse the full Unit Converters category for more options.
Convert an IPv4 address into its 32-bit unsigned decimal form for routing tables, allow-lists, and database storage.
Convert each octet of an IPv4 address into its 8-bit binary form, ideal for subnet calculations and teaching materials.
Convert an IPv4 address into uppercase hexadecimal octets, useful for network logs, packet dumps, and embedded configuration.
Convert an IPv4 address into zero-padded octal octets, matching inet_aton behaviour and documentation examples.
Convert four 8-bit binary octets (separated by dots) into a standard dotted-decimal IPv4 address.
Convert IP addresses between formats
Convert decimal numbers to binary
Convert decimal numbers to hexadecimal
Convert a hexadecimal IPv4 address (either dotted hex or contiguous 8 chars) back into dotted-decimal notation.
Convert four octal octets back into the standard dotted-decimal IPv4 address used by humans and most APIs.
Convert binary numbers to decimal
Convert hexadecimal to decimal