IPv4 पता कनवर्टर
IPv4 पतों को दशमलव, बाइनरी, हेक्साडेसिमल और इंटीजर प्रारूपों के बीच रूपांतरित करें
संबंधित उपकरण
IP सबनेट कैलकुलेटर
सबनेट, CIDR और नेटवर्क रेंज की गणना करें
Chmod कैलकुलेटर
प्रतीकात्मक और संख्यात्मक नोटेशन में Unix फ़ाइल अनुमतियों की गणना करें
WiFi QR कोड जनरेटर
WiFi नेटवर्क क्रेडेंशियल के लिए QR कोड उत्पन्न करें
MAC पता जनरेटर
परीक्षण और विकास के लिए रैंडम MAC पते उत्पन्न करें
User Agent पार्सर
ब्राउज़र, OS, डिवाइस और इंजन की पहचान के लिए User Agent स्ट्रिंग का विश्लेषण करें
संख्या आधार कनवर्टर
बाइनरी, ऑक्टल, दशमलव और हेक्साडेसिमल के बीच संख्या रूपांतरण
उपयोग कैसे करें
अपने मान दर्ज करें
इनपुट फ़ील्ड में अपनी संख्याएँ या पैरामीटर भरें।
तुरंत परिणाम पाएँ
जैसे ही आप टाइप करते हैं परिणाम स्वचालित रूप से अपडेट होते हैं — कोई सबमिट बटन ज़रूरी नहीं।
कॉपी या सेव करें
परिणामों को क्लिपबोर्ड में कॉपी करें या अपने वर्कफ़्लो में उपयोग करें।
यह टूल क्यों उपयोग करें
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
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.
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.
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.
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.