समय/संख्याएं
नंबर सिस्टम कनवर्टर
बाइनरी, ऑक्टल, डेसिमल, हेक्साडेसिमल और किसी भी कस्टम (2-36) आधार के बीच दोतरफ़ा कन्वर्ज़न — किसी भी फ़ील्ड में नंबर दर्ज करें।
Number systems are just different ways of writing the same number. Binary (base 2) is what processors use at the lowest level, hexadecimal (base 16) is a compact way to write binary data in code, and decimal is the everyday human notation.
How to use it
- Enter a number in any field (binary, octal, decimal, hexadecimal, or a custom base 2-36) — every other field updates instantly.
- For a custom base, pick any value from 2 to 36 — handy for less common systems, like base36 used in short identifiers.
- Characters invalid for the selected base (like a "2" in binary) are flagged as an input error.
Common uses
- Converting a hex color or byte value into a decimal number for calculations.
- Checking a bitmask or set of flags written in binary.
- Working with low-level code (network protocols, embedded systems) where values are often given in hex or octal.
Things to keep in mind
In hexadecimal, the letters A-F (or a-f) stand for the values 10-15 — case usually doesn't matter.
For bases above 16, digit symbols keep going further down the alphabet (G, H...) up to Z for base 36.
इस टूल के बारे में लेख: नंबर सिस्टम: बाइनरी, ऑक्टल और हेक्साडेसिमल क्यों मौजूद हैं
अक्सर पूछे जाने वाले प्रश्न
कन्वर्टर कौन-सी नंबर सिस्टम्स सपोर्ट करता है?
बाइनरी, ऑक्टल, डेसिमल और हेक्साडेसिमल तक त्वरित पहुंच, साथ ही 2 से 36 तक कोई भी बेस — 9 से ऊपर के अंक लैटिन अक्षरों A-Z से दर्शाए जाते हैं।
क्या मैं ऋणात्मक संख्याएं और बहुत बड़े पूर्णांक कन्वर्ट कर सकता हूं?
हां, संख्या से पहले "-" चिह्न हर बेस में समर्थित है, और संख्या के आकार पर कोई निश्चित 32/64-बिट सीमा नहीं है — गणना मनमानी सटीकता के साथ होती है।
क्या डेटा सर्वर पर भेजा जाता है?
नहीं, सारी कन्वर्जन तुरंत आपके ब्राउज़र में JavaScript के ज़रिए होती है — आपके द्वारा दर्ज संख्याएं कभी कहीं नहीं भेजी जातीं।
न्यूमरल सिस्टम कन्वर्जन Base64 से कैसे अलग है?
ये मूल रूप से अलग चीज़ें हैं: न्यूमरल सिस्टम कन्वर्टर एक ही संख्या को अलग-अलग पोज़िशनल सिस्टम्स (BIN/OCT/DEC/HEX) के बीच बदलता है, जबकि Base64 किसी भी बाइनरी डेटा (फ़ाइल, इमेज) को टेक्स्ट चैनल्स के लिए बनाई गई टेक्स्ट स्ट्रिंग में एनकोड करता है।
हेक्साडेसिमल सिस्टम में A-F अक्षर क्यों इस्तेमाल होते हैं?
बेस 16 के लिए 16 यूनीक अंकों की ज़रूरत होती है, लेकिन अरबी अंक सिर्फ़ 10 (0-9) ही हैं — इसलिए 10-15 वैल्यू के लिए लैटिन अल्फ़ाबेट के पहले अक्षर A-F इस्तेमाल किए जाते हैं। 16 से ज़्यादा (36 तक) बेस के लिए अक्षरों का इस्तेमाल आगे भी अल्फ़ाबेट के क्रम में जारी रहता है।