Hex to IP Converter

Paste an IPv4 hexadecimal value and convert it back into dotted decimal notation.

Network converter

Convert HEX to IPv4

Result
Enter a value or load the sample to see the result.

HEX to IPv4 conversion guide

Convert an eight-character hexadecimal IPv4 value to dotted decimal IP notation online.

What it does

A hexadecimal IPv4 value is a compact representation of the same 32-bit address normally written in dotted decimal notation. This converter splits an eight-character hex value into four byte pairs and turns each pair back into a decimal octet.

When to use it

The tool is helpful when a log, protocol field, packet note, or debugging example stores an IP address as hex. Instead of calculating each byte by hand, paste the value and copy the readable IPv4 result.

How it works

The input must contain exactly eight hexadecimal characters after an optional 0x prefix. Each pair maps to one IPv4 octet. For example, C0 A8 01 01 becomes 192.168.1.1.

Practical note

Use this page for IPv4 inspection, learning, network documentation, and quick byte-level checks. It does not parse IPv6, mixed notation, or non-IP hexadecimal data.

Convert HEX to IPv4

Input

C0A80101

Output

IPv4: 192.168.1.1

How to use

  1. Paste or enter the value you want to process.
  2. Click Convert to run the tool.
  3. Review the output and copy the result you need.

Best for

  • Network notes
  • Log inspection
  • Protocol examples
  • Subnet learning

IPv4 reference notes

32-bit structure

IPv4 addresses are 32-bit values split into four octets. Hex and binary outputs are alternate views of the same value.

Padding is intentional

Hex pairs and binary octets are padded so each address part keeps its byte-level shape in documentation and debugging notes.

IPv4 only

These tools do not parse IPv6 or mixed notation. Keeping IPv4 pages focused reduces ambiguous results.

Hex to IP Converter common mistakes

FAQ

Can I include 0x?

Yes. Values such as 0xC0A80101 and C0A80101 are accepted.

Why must the input be eight characters?

An IPv4 address is 32 bits, and eight hex characters represent 32 bits.

What does each pair mean?

Each two-character hex pair represents one IPv4 octet.

Can this decode MAC addresses?

No. It is focused on IPv4 address values.