Convert IPv6 addresses to binary format with detailed network analysis. Essential tool for network engineers and IT professionals.
IPv6 (Internet Protocol version 6) is the most recent version of the Internet Protocol, designed to replace IPv4. It uses 128-bit addresses, allowing for 2128 (approximately 3.4×1038) unique addresses.
IPv6 Address Format:
IPv6 addresses are represented as eight groups of four hexadecimal digits, separated by colons. Example:
2001:0db8:85a3:0000:0000:8a2e:0370:7334
Leading zeros in each group can be omitted, and consecutive groups of zeros can be replaced with "::" (but only once per address).
| Address Type | Prefix | Purpose | Example |
|---|---|---|---|
| Global Unicast | 2000::/3 | Public internet addresses (similar to IPv4 public addresses) | 2001:db8::1 |
| Unique Local | fc00::/7 | Private network addresses (similar to IPv4 private addresses) | fd00::1 |
| Link-local | fe80::/10 | Communication within a single network segment | fe80::1 |
| Multicast | ff00::/8 | One-to-many communication | ff02::1 |
| Loopback | ::1/128 | Localhost address (similar to 127.0.0.1 in IPv4) | ::1 |
| Unspecified | ::/128 | Absence of an address | :: |
Expand the Address: First, expand any compressed IPv6 address to its full 8-group form, filling in missing zeros.
Convert Hex to Binary: Each hexadecimal digit represents 4 binary bits. Convert each hex digit to its 4-bit binary equivalent.
Combine Bits: Combine all 4-bit groups to form the complete 128-bit binary representation of the IPv6 address.
Analyze Structure: Based on the binary prefix, determine the address type and analyze its network structure.
| Hex Digit | Binary | Hex Digit | Binary | Hex Digit | Binary | Hex Digit | Binary |
|---|---|---|---|---|---|---|---|
| 0 | 0000 | 4 | 0100 | 8 | 1000 | C | 1100 |
| 1 | 0001 | 5 | 0101 | 9 | 1001 | D | 1101 |
| 2 | 0010 | 6 | 0110 | A | 1010 | E | 1110 |
| 3 | 0011 | 7 | 0111 | B | 1011 | F | 1111 |
Calculator Features:
::1
Loopback
::
Unspecified
fe80::/10
Link-local
fc00::/7
Unique Local
2000::/3
Global Unicast
ff00::/8
Multicast