Convert IPv4 and IPv6 addresses to hexadecimal format instantly. Supports batch conversion, CIDR notation, subnet masks, and detailed network analysis.
Hexadecimal (base-16) representation of IP addresses is commonly used in network programming, configuration files, and security analysis. It provides a more compact and readable format compared to binary.
IPv4 Hexadecimal Formats:
Dotted Hex: C0.A8.01.01 (each octet converted to two hex digits)
Continuous Hex: C0A80101 (8-character string)
0x Notation: 0xC0A80101 (commonly used in programming)
IPv6 is already in hexadecimal format, but can be converted to different representations for analysis.
| Decimal | Binary | Hexadecimal | Example IP Octet |
|---|---|---|---|
| 0 | 0000 | 0 | 0.0.0.0 |
| 1 | 0001 | 1 | 0.0.0.1 |
| 10 | 1010 | A | 0.0.0.10 |
| 15 | 1111 | F | 0.0.0.15 |
| 192 | 11000000 | C0 | 192.0.0.0 |
| 255 | 11111111 | FF | 255.255.255.255 |
Network Programming: Hexadecimal IP addresses are often used in socket programming and network packet analysis tools like Wireshark.
Configuration Files: Some network devices and software use hexadecimal notation in configuration files for compact representation.
Security Analysis: Hexadecimal representation is useful for analyzing memory dumps, log files, and reverse engineering network protocols.
Converter Features:
127.0.0.1
7F.00.00.01
192.168.1.1
C0.A8.01.01
8.8.8.8
08.08.08.08
255.255.255.0
FF.FF.FF.00
10.0.0.1
0A.00.00.01
172.16.0.1
AC.10.00.01