Free2BoxFree2Box

IPv4 주소 변환기

IPv4 주소를 10진수, 2진수, 16진수 및 정수 형식 간 변환

IPv4 주소
IPv4 주소를 10진수, 2진수, 16진수 및 정수 형식 간 변환
IPv4 주소 변환기
IPv4 주소를 10진수, 2진수, 16진수 및 정수 형식 간 변환
10진수 (점 표기)
192.168.1.1
2진수
11000000.10101000.00000001.00000001
16진수
0xC0A80101
정수
3232235777
IPv6 매핑
::ffff:192.168.1.1

사용 방법

1

값 입력

입력 필드에 숫자나 매개변수를 입력하세요.

2

즉시 결과 확인

입력하는 즉시 결과가 자동으로 업데이트됩니다 — 제출 버튼이 필요 없습니다.

3

복사 또는 저장

결과를 클립보드에 복사하거나 작업 흐름에 활용하세요.

이 도구를 사용하는 이유

100% 무료

숨겨진 비용도, 프리미엄 등급도 없습니다 — 모든 기능이 무료입니다.

설치 불필요

브라우저에서 완전히 실행됩니다. 소프트웨어를 다운로드하거나 설치할 필요가 없습니다.

프라이빗 & 안전

데이터가 기기 밖으로 나가지 않습니다. 어떤 서버에도 업로드되지 않습니다.

모바일 지원

완전 반응형 — 스마트폰, 태블릿, 데스크톱에서 사용할 수 있습니다.

IPv4 Address Formats: Decimal, Binary, Hex, and Octal

Key Takeaways

  • An IPv4 address is a 32-bit number that can be represented in dotted decimal, binary, hexadecimal, and integer formats.
  • Understanding different IPv4 representations is essential for network debugging, firewall rules, and low-level protocol analysis.
  • All address conversion happens in your browser — your IP addresses are never transmitted to any server.

IPv4 addresses are most commonly written in dotted-decimal notation (192.168.1.1), but the underlying 32-bit integer can be expressed in many formats. Binary representation reveals subnet boundaries, hexadecimal is used in packet captures and memory dumps, and integer format appears in some database storage schemes. Converting between these formats is a frequent task in network administration and security analysis.

There are approximately 4.3 billion possible IPv4 addresses (2^32), with less than 15% remaining unallocated.

IPv4 Address Space

Key Concepts

1

Dotted Decimal Notation

The standard format (192.168.1.1) represents each of the four octets as a decimal number (0-255) separated by dots. This is the most human-readable format used in configuration.

2

Binary Representation

Each octet is an 8-bit binary number. 192.168.1.1 = 11000000.10101000.00000001.00000001. Binary is essential for understanding subnetting and mask operations.

3

Hexadecimal Format

Each octet as two hex digits: 192.168.1.1 = C0.A8.01.01 or 0xC0A80101. Hex appears in packet captures (Wireshark), memory addresses, and low-level network programming.

4

Integer (Long) Format

The entire 32-bit address as a single integer: 192.168.1.1 = 3232235777. Some databases store IP addresses as integers for efficient range queries and indexing.

Pro Tips

Use binary format to visualize subnet boundaries — the network/host boundary falls at the subnet mask's transition from 1s to 0s.

Store IPv4 addresses as 32-bit integers in databases for 4x storage savings and faster range queries compared to string storage.

Be aware that some systems interpret leading zeros as octal — 010.010.010.010 may be parsed as 8.8.8.8, not 10.10.10.10.

Use hex format when analyzing network packets in Wireshark or writing raw socket programs.

All IPv4 address conversion is performed entirely in your browser. Your IP addresses and network information are never transmitted to any external server.

자주 묻는 질문