IPv4 converter
This tool converts IP Addresses from 32bit dotted format to long integer format and vice-versa. In fact each Ip Address is a numeric representation of a 32 bit number, so, for example, to the well known address 192.168.0.1 corresponds the integer number 3232235521. This type of conversion is possible since each dotted format ip address is a numerical representation of a number written in a 256-based manner: 192.168.0.1 means 1*256^0 + 0*256^1 + 168*256^2 + 192*256^3 = 3232235521. Each integer whos value is less then 4.294.967.295 can virtually be a representation of an IP number!