Tested tool guide
Tested browser tools
Checked August 16, 2026
What IP Address Converter does, with a checked example
Translate a literal IPv4 or IPv6 address into its equivalent dotted or colon notation, bit string, hexadecimal value, and unsigned integer. The conversion preserves the address bits; it does not look up a hostname, identify an owner, or test whether the address is reachable. For IPv4, four decimal octets represent 32 bits. For IPv6, hexadecimal groups represent 128 bits and may have compressed zero runs. The common surprise is that multiple IPv6 spellings can encode the same value, while an integer result is one large number with no separators.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Decimal: 1.2.3.4
Binary: 00000001000000100000001100000100
Hexadecimal: 01020304
Integer: 16909060
The four octets become 01, 02, 03, and 04 in hexadecimal, with each octet occupying eight binary bits. Reading the 32 bits in network order gives 1 * 16777216 + 2 * 65536 + 3 * 256 + 4 = 16909060.