नंबर बेस कन्वर्टर
बाइनरी, ऑक्टल, डेसिमल और हेक्साडेसिमल के बीच नंबर कन्वर्ट करें।
Binary
Base 2
—
Octal
Base 8
—
Decimal
Base 10
—
Hexadecimal
Base 16
—
नंबर बेस कन्वर्टर क्या है?
यह टूल numbers को binary, octal, decimal, और hexadecimal के बीच instantly convert करता है। Programming, computer science education, और low-level debugging के लिए ज़रूरी।
कन्वर्टर का उपयोग कैसे करें
- Source base चुनें (Binary/Octal/Decimal/Hex)।
- Number दर्ज करें।
- तुरंत सभी 4 bases में conversion देखें।
हर base कब उपयोगी है
- Decimal — रोज़मर्रा की गणना
- Binary — कंप्यूटर internals, bit manipulation
- Octal — Unix file permissions
- Hex — colors (#FF5733), memory addresses
अक्सर पूछे जाने वाले प्रश्न
- Binary, Octal, Decimal, Hex में क्या फर्क है?
- Decimal (base 10) — रोज़मर्रा के numbers। Binary (base 2) — कंप्यूटर internals (0s और 1s)। Octal (base 8) — Unix permissions। Hexadecimal (base 16) — colors, memory addresses, programming। हर base same number को different way में represent करता है।
- Binary से Decimal कैसे convert करें?
- हर bit को 2 की power से multiply करें। 1011₂ = 1×8 + 0×4 + 1×2 + 1×1 = 11। बायें से दायें सबसे बड़ी power। Hex के लिए 16 की powers, octal के लिए 8 की।
- Hex में A-F क्यों होते हैं?
- Hex base 16 है — 16 unique digits चाहिए। 0-9 = 10 digits + A-F = 6 letters = 16 total। A=10, B=11, ..., F=15। Letters numbers से distinguish करने के लिए। Lowercase (a-f) भी use होते हैं।
- Programming में कौन सा base सबसे common?
- Decimal सबसे readable। Hex memory addresses, colors, file formats में। Binary low-level (microcontrollers, bit manipulation)। Octal अब rare — सिर्फ Unix permissions (chmod 755)। Modern programming में decimal + hex सबसे common।
संबंधित टूल्स
- JSON फॉर्मेटर
अपने ब्राउज़र में JSON फॉर्मेट, ब्यूटीफाई, मिनिफाई और वैलिडेट करें
- QR कोड जनरेटर
URLs, टेक्स्ट, Wi-Fi और अधिक के लिए QR कोड बनाएं। PNG में डाउनलोड करें।
- पासवर्ड जनरेटर
कस्टम लंबाई और कैरेक्टर सेट के साथ मज़बूत, रैंडम पासवर्ड बनाएं।
- Base64 एन्कोडर / डिकोडर
टेक्स्ट को Base64 में एन्कोड करें या Base64 को वापस प्लेन टेक्स्ट में डिकोड करें।
- URL एन्कोडर / डिकोडर
URLs और क्वेरी स्ट्रिंग को percent-encoding के साथ एन्कोड या डिकोड करें।