ولّد أرقامًا عشوائية في أي نطاق، مع تكرار أو بدونه، باستخدام عشوائية آمنة.
كيفية استخدام أرقام عشوائية
حدّد الحد الأدنى والأقصى وعدد الأرقام التي تريدها.
اختر ما إذا كان التكرار مسموحًا وكيفية الترتيب.
انقر على توليد وانسخ الأرقام.
A random number generator that returns whole numbers in any range you set, optionally with no duplicates and optionally sorted, using the browser's secure randomness so the results are genuinely unpredictable.
Everything runs locally with nothing sent to a server, and each run produces a fresh set, since there is no fixed seed to reproduce.
You choose the minimum and maximum and how many numbers you want. The output can allow repeats, or be made unique, in which case the count is capped at the size of the range since you cannot draw more distinct numbers than exist in it.
The randomness comes from crypto.getRandomValues, the browser's cryptographically secure generator, rather than a simple pseudo-random function, so the numbers are not predictable from one another.
That makes it well suited to casual draws and decisions: picking a raffle or giveaway winner, choosing a random participant, rolling for a game, sampling rows for a spot check, or just breaking a tie.
For official lotteries and gambling, certified hardware random generators are legally required; this tool is for everyday, informal randomness rather than regulated draws.
الأسئلة الشائعة
تستخدم مولّد المتصفح العشوائي الآمن تشفيريًا (crypto.getRandomValues)، وهو مناسب للألعاب والسحوبات والقرارات.
نعم. أوقف "السماح بالتكرار" للحصول على أرقام مميزة. عندها يُحدّ العدد بحجم النطاق.
إنه رائع للسحوبات غير الرسمية واختيار الفائزين. أما اليانصيب الرسمي فيتطلب مولّدات أجهزة معتمدة.
ضمّن هذه الأداة
أضف هذه الأداة إلى موقعك الخاص. انسخ المقتطف أدناه، ويبقى محدّثاً تلقائياً.
<iframe src="https://monu.tools/embed/ar/random-number-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>أدوات ذات صلة
حوّل وقتًا عبر المناطق الزمنية الرئيسية في العالم، مع التعامل التلقائي مع التوقيت الصيفي.
حلّ مسائل قاعدة الثلاثة الطردية والعكسية: إذا كان A يقابل B، فماذا يقابل C؟
احسب البقشيش وقسّم الفاتورة بين أي عدد من الأشخاص، مع خيار التقريب لأعلى.
احسب معدلك المرجّح من الدرجات المدرسية الألمانية (من 1 إلى 6) بأوزان مخصصة.