IPv4 Address Converter

Transform IPv4 addresses into raw 32-bit decimal, binary octets, and hex notation.

32-bit Integer: 2886794753
Hexadecimal: 0xAC10FE01
Binary: 10101100.00010000.11111110.00000001

How It Works

  • Computes: (A << 24) + (B << 16) + (C << 8) + D.
Formula & Technical Standard
Integer = (A * 256^3) + (B * 256^2) + (C * 256^1) + D

Practical Example

Google DNS
Input: 8.8.8.8
Output: Decimal: 134744072 | Hex: 0x08080808
Raw representations used by network sockets.

Frequently Asked Questions

Can I ping a decimal IP?

Yes, network stacks accept 32-bit integers directly (e.g. ping 2130706433 for 127.0.0.1).

Related Tools