इस टूल के बारे में
बाइनरी, ऑक्टल, दशमलव और हेक्स के बीच बदलें।
Base Converter एक साथ चारों positional numeral system representations दिखाता है। किसी भी field में टाइप करें — binary (base 2), octal (base 8), decimal (base 10), या hexadecimal (base 16) — और बाकी सभी तुरंत update हो जाते हैं।
उदाहरण
255 (decimal) → FF (hex) · 11111111 (binary) · 377 (octal)
उपयोग कैसे करें
- किसी भी field में number टाइप करें।
- अन्य सभी representations स्वचालित रूप से update होती हैं।
- एक क्लिक से कोई भी field कॉपी करें।
- Clear button से fresh शुरू करें।
विशेषताएं
- Binary, octal, decimal और hexadecimal एक साथ
- Instant two-way conversion
- Hex A–F और a–f स्वीकार करता है
- JavaScript safe integer range तक
सामान्य प्रश्न
255 decimal को hex में कैसे कन्वर्ट करें?+
Decimal field में 255 टाइप करें। Hex FF, binary 11111111, octal 377 दिखाएगा।
अधिकतम समर्थित संख्या क्या है?+
253 − 1 तक — JavaScript का safe integer limit।
क्या negative numbers समर्थित हैं?+
नहीं। Converter केवल non-negative integers संभालता है।
Hexadecimal किस लिए उपयोग होता है?+
Color codes (#FF0000), memory addresses, byte values और low-level programming।
Programmers hexadecimal क्यों उपयोग करते हैं?+
Hex binary से cleanly map होता है: प्रत्येक hex digit 4 bits (nibble) represent करता है। Byte values pure binary से ज़्यादा compact और पठनीय होते हैं।
Binary और hex में क्या अंतर है?+
Binary 0 और 1 (base 2) उपयोग करता है; hex 0–9 और A–F (base 16)। एक byte (8 bits) को 8 binary digits लेकिन केवल 2 hex digits चाहिए।