What Is an IPv4 Address Converter?
An IPv4 address converter parses one dotted-decimal IPv4 address, turns it into its 32-bit numeric value, and shows a few alternate representations that are common in debugging and documentation. This implementation outputs the unsigned decimal form, an uppercase hexadecimal value, binary grouped by octet, and the IPv6-mapped ::ffff: address, but it does not do subnet calculations, hostname lookups, or CIDR expansion.
How to Use the IPv4 Address Converter
- 1Paste a single dotted IPv4 address into the Input box, such as 192.168.1.1.
- 2Read the Output box to see the decimal integer, uppercase hexadecimal value, binary form grouped by octet, and the IPv6-mapped notation.
- 3If you receive an invalid address message, correct the dotted-decimal input first because the tool only accepts four octets from 0 to 255.
Common IPv4 Address Conversion Use Cases
Comparing firewall or log formats
Translate a dotted IPv4 address into decimal or hexadecimal when a device log, rule engine, or packet capture uses a different notation.
Teaching binary networking basics
Show each octet as an 8-bit binary value when you are explaining addressing concepts to students or junior engineers.
Documenting IPv6-mapped endpoints
Generate the ::ffff: representation for examples or support notes when IPv4 clients are surfaced through IPv6-aware software.
Frequently asked questions
Can I enter CIDR blocks or IPv4 ranges here?
No. This page expects one explicit dotted-decimal IPv4 address. Network prefixes, subnets, and start-end ranges need separate tools because they require additional parsing rules.
Does the conversion happen locally in the browser?
Yes. The address is parsed and reformatted with in-page JavaScript, so the decimal, hexadecimal, binary, and IPv6-mapped results are generated without a backend lookup.