IP to Decimal Converter
Convert dotted IPv4 addresses into a single unsigned decimal integer.
Result
About this tool
IP to Decimal is handy when databases, SIEMs, and custom tools store IPv4 values numerically.
Common use cases
- Building numeric IP ranges in SQL.
- Comparing address values in scripts.
- Converting analytics exports to integer format.
How it works
- Enter an IPv4 address.
- Each octet is shifted into its 32-bit position.
- The combined unsigned value is returned.
FAQ
Why unsigned?
IPv4 address space is 0 through 2^32-1.
Is endian format configurable?
This tool uses standard network-byte order conversion.