इस टूल में कोई समस्या है?

«नंबर बेस कन्वर्टर ऑनलाइन» के बारे में

यह टूल बेसों के बीच संख्याओं को परिवर्तित करता है: बाइनरी (आधार 2), ऑक्टल (आधार 8), दशमलव (आधार 10), हेक्साडेसिमल (आधार 16), और 2 से 36 तक का कोई भी मनमाना आधार।

बेस रूपांतरण प्रोग्रामिंग और कंप्यूटर विज्ञान में मौलिक हैं। मेमोरी डंप और असेंबली हेक्स का उपयोग करते हैं; अनुमति बिट्स और यूनिक्स फ़ाइल मोड ऑक्टल का उपयोग करते हैं।

असेंबली लिस्टिंग पढ़ने, बिटवाइज़ ऑपरेशनों को डीबग करने, फ़ाइल अनुमतियों के साथ काम करने के लिए इसका उपयोग करें।

इस टूल का उपयोग कैसे करें

How to convert a number between bases (2–36)

  1. Enter the value

    "Value" is the number to convert, written in the FROM base. Whitespace is stripped, so `dead beef` and `deadbeef` parse the same. Digits A–Z represent values 10–35, case-insensitive.

  2. From base / to base

    "From base" and "To base" are integers between 2 and 36. Common: 2 (binary), 8 (octal), 10 (decimal), 16 (hex), 32 (Base32), 36 (max — uses 0–9 + A–Z).

  3. Press Run

    Result is a single `result` field — the value rendered in the target base, lowercase for letters. Invalid digit for the FROM base throws "Invalid digit for source base."

  4. Watch the precision limits

    Parsing uses JavaScript `parseInt`, which is limited to 32-bit safe integers in many contexts. Very large numbers (above 2^53) lose precision — use a big-integer tool for those.