Monu Tools

محول أنظمة عدّ الأرقام

حوّل الأرقام بين النظام الثنائي والثُماني والعشري والست عشري. عدّل أي حقل وتتحدث البقية فوراً. القيم الكبيرة دقيقة، دون أي تقريب.

كيفية استخدام أنظمة العدّ

  1. 01

    اكتب رقماً في أي من الحقول الأربعة.

  2. 02

    تتحدث الأنظمة الأخرى فوراً أثناء الكتابة.

  3. 03

    بدّل بين الأحرف الكبيرة والصغيرة في النظام الست عشري وانسخ أي قيمة بنقرة واحدة.

What it does

This number base converter switches whole numbers between binary (base 2), octal (base 8), decimal (base 10) and hexadecimal (base 16). Every field is editable, so you can type into any base and read the equivalent in the others instantly.

How number bases work

A number base is just how many distinct digits a system uses before it rolls over to the next position. Decimal uses ten (0 to 9), binary uses two (0 and 1), and hexadecimal uses sixteen, adding a to f for the values ten to fifteen, which is why a single hex digit neatly represents four binary bits.

Exact results with big integers

Conversions use arbitrary-precision integers (BigInt), so even very long values stay exact, without the rounding errors that affect ordinary floating-point numbers once they get large.

Why bases matter in low-level work

Bases come up all over low-level work: hexadecimal for colors, bytes and memory addresses, binary for flags and network masks, and octal for Unix file permissions. Reading the same value across bases makes debugging and bit-twiddling much easier.

Input rules and limits

A leading minus sign is supported for negatives, spaces are ignored so you can group digits for readability, and an option shows hexadecimal in upper or lower case.

It converts integers only; fractional base conversion is a separate problem and is intentionally left out so the results stay exact. Everything runs in your browser.

الأسئلة الشائعة

أي الأنظمة مدعومة؟

النظام الثنائي (الأساس 2) والثُماني (الأساس 8) والعشري (الأساس 10) والست عشري (الأساس 16). يمكنك تعديل أي منها فتتبعه البقية.

هل يتعامل مع الأرقام الكبيرة جداً؟

نعم. يستخدم أعداداً صحيحة بدقة لا متناهية (BigInt)، فتُحوَّل حتى القيم الطويلة جداً بدقة دون أخطاء التقريب التي تؤثر على أرقام الفاصلة العائمة العادية.

هل يمكنني إدخال أرقام سالبة؟

نعم، تُدعم إشارة الناقص في البداية. تُتجاهل المسافات، فيمكنك تجميع الأرقام لتسهيل القراءة.

هل يدعم الكسور العشرية أو الاعتيادية؟

لا، يحوّل الأعداد الصحيحة فقط. تحويل الكسور بين الأنظمة مسألة منفصلة، وقد تُرك عمداً للحفاظ على دقة النتائج.

ضمّن هذه الأداة

أضف هذه الأداة إلى موقعك الخاص. انسخ المقتطف أدناه، ويبقى محدّثاً تلقائياً.

<iframe src="https://monu.tools/embed/ar/number-base-converter" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

أدوات ذات صلة