Convert an IPv4 address into its unsigned 32-bit decimal form and see exactly how the four octets combine into one integer value.
Last updated: August 2026 | By Workshelve Team
Input must be a valid IPv4 address using decimal octets separated by periods.
IPv4 decimal conversion uses the address as one unsigned 32-bit integer, not a signed number.
The leftmost octet has the highest weight because it is multiplied by 256 to the third power.
Some databases, logs, and network utilities store IPv4 addresses as integers rather than dotted text.
The converter reads the IPv4 address as four base-10 octets. Each octet represents one byte, so the full address is really four bytes packed together into a 32-bit value.
To calculate the decimal form, the first octet is multiplied by 256 to the third power, the second by 256 squared, the third by 256, and the last octet is added directly. This is just positional notation in base 256.
The final number is often useful when sorting addresses numerically, storing them efficiently, or comparing IPv4 ranges in backend systems.
That is why 192.168.1.1 becomes 3232235777.
Unsigned. Valid IPv4 addresses can exceed the positive range of a signed 32-bit integer.
Because it is the maximum possible 32-bit unsigned IPv4 value: 4294967295.
No. IPv6 uses 128 bits and needs a different conversion model.
It helps confirm how the same address is laid out at the byte level before being combined into one integer.
Related Tools
Convert HEX color codes into RGB color values.
Convert number base values.
Convert Base64 encoded data into hexadecimal values.
Convert hexadecimal values into Base64 encoded data.
Convert binary values into hexadecimal numbers.
Convert hexadecimal values into binary numbers.