Convert binary to IP-address

ip address

The binary string below should be a (hidden) IP-address in any way. How do I convert it to decimal? Since the number contains too many octets I dont know how to convert it. It should lead to this IPv4: 83.226.175.75

binary string: 001101110011010001110101001100000100010001101011011010100011001001010001

but it makes no sense! The first 8 bits in the string refers to decimal 55, and the IP-address should begin with 83. can we find a general rule to link this length of binary numbers to an IP address? Well, it cannot be IPv6, the string is to short…

Best Answer

An IP address is either IPv4 : 32 bits or IPv6 : 128 bits.

Thus your binary string is NOT an IP address.

Related Topic