Decimal to IP Converter
Turn a decimal, 0x hexadecimal or 0b binary integer into the IPv4 or IPv6 address it represents.
Processed locally in your browser· Your data stays in your browser.
What is Decimal to IP Converter?
The opposite of ip2long: an IPv4 address is a 32-bit number, so 3232235777 splits into the four bytes 192, 168, 1 and 1. Numbers between 2^32 and 2^128 − 1 are read as IPv6 addresses, computed exactly with BigInt.
In Auto mode a value up to 4294967295 (or a hex literal of at most 8 digits) becomes IPv4 and anything larger becomes IPv6; you can force either family. Decimal input may include commas, underscores or spaces as digit separators.
How does it work?
- Paste integers, one per line: decimal, 0xHEX or 0bBINARY.
- Leave Auto, or force IPv4 / IPv6 if you know the family.
- For IPv6 choose compressed or fully expanded output.
- Copy the addresses, or use Swap to go back to numbers.
Common use cases
- Reading an IP stored as an integer in a database column or log line.
- Decoding "http://3232235777/" style obfuscated URLs to see the real host.
- Turning the start and end integers of a geo-IP CSV range into readable addresses.
- Checking a hex value from a packet dump against its dotted form.
Examples
Try this input in the tool above:
3232235777 0xC0A80101 42540766411282592856903984951653826561
192.168.1.1 192.168.1.1 2001:db8::1
Privacy
Decimal to IP Converter runs entirely in your browser. The text or files you provide are processed on your device and are not uploaded, logged or stored on our servers.
Limitations
Values above 4294967295 cannot be IPv4 and are read as IPv6. An integer alone does not reveal whether it was meant as IPv4 or IPv6, so use the family option when it matters.
Frequently asked questions
What IP is 3232235777?
192.168.1.1 (hex 0xC0A80101).
How does Auto choose between IPv4 and IPv6?
Up to 4294967295 it assumes IPv4; larger values, or hex literals with more than 8 digits, are treated as IPv6.
Is a URL like http://3232235777 legitimate?
Browsers accept it, which is why attackers use it to hide hosts. Convert it here before trusting a link.
Related tools
IP to Decimal Converter
Get the integer behind an IP address, in decimal or hex, for one address or a whole list.
Network Tools
Binary to IP Converter
Paste a 32-bit binary number (with or without dots) and get the dotted-decimal IPv4 address back; 128 bits give IPv6.
Network Tools
IP to Binary Converter
See any IP address as bits, for example 192.168.1.1 → 11000000.10101000.00000001.00000001.
Network Tools
IPv4 Address Validator
Paste one or many IPv4 addresses to see whether each is valid, why not if it is not, and what kind of address it is.
Network Tools
IPv6 Address Validator
Check an IPv6 address, then see its canonical short form, its full 32-digit form and what kind of address it is.
Network Tools
Hex to Decimal Converter
Read hexadecimal values as decimal numbers, unsigned or as signed two’s complement integers of 8 to 64 bits.
Developer Tools
Hex to IP Converter
Decode hexadecimal values, in the forms you find in dumps and code, back to IPv4 or IPv6 addresses.
Network Tools
Base Converter (Base 2 to 36)
Type a number, pick its base and the base you want, and get an exact result with a quick view in binary, octal, decimal, hexadecimal and base 36.
Developer Tools