Binary to IP Converter

Convert a 32-bit binary string to an IPv4 address.

About Binary to IP Conversion

This tool converts a 32-bit binary sequence into a standard dotted-decimal IPv4 address. You can enter the binary string with or without dots separator.

Understanding the Conversion

An IPv4 address consists of 32 bits, divided into 4 octets of 8 bits each.

  • Binary Input: 11000000 10101000 00000001 00000001
  • First Octet: 11000000 = 192
  • Second Octet: 10101000 = 168
  • Third Octet: 00000001 = 1
  • Fourth Octet: 00000001 = 1
  • Result IP: 192.168.1.1

Applications

  • Subnetting: Calculating subnets requires working with binary representations of IPs.
  • Education: Helping students understand the binary nature of IP addressing.
  • Network Configuration: Verifying bitwise operations in network masks.