IP Address Converter
Convert IP Address Tutorial
This calculator will convert between the various notations for IP addresses. Using this tool you can convert from and to dotted normal IP Address, HEX, Binary, and Decimal IP Address.
The easiest way to do it is to depict the ip address in binary. For example from we have decimal value 3232235521 and convert to binary using any calculator that will do decimal to binary conversion (like the one that comes with Windows/95/98/NT):
binary address: 11000000.10101000.00000000.00000001
Then convert each octet back to decimal and you get: 192.168.0.1
If you want to calculate the decimal address from the dottted decimal address, perform the following calculation:
(first octet * 16777216) + (second octet * 65536)
+ (third octet * 256) + (fourth octet)
Using your values:
192*16777216 + 168*65536 + 0*256 + 1 = 3232235521