How can I convert a hex ip (such as 42477f35), and get it to spit out the correct decimal ip (in the example before, the correct result is 66.71.127.53
42477f35
66.71.127.53
Split the hex ip into octets (two hex digits at a time), and convert each octet to a decimal integer.