Monu Tools

מחולל מספרים אקראיים

צרו מספרים אקראיים בכל טווח, עם או בלי כפילויות, באמצעות אקראיות מאובטחת.

כיצד להשתמש במספרים אקראיים

  1. 01

    הגדירו את המינימום והמקסימום וכמה מספרים תרצו.

  2. 02

    בחרו אם לאפשר כפילויות וכיצד למיין.

  3. 03

    לחצו על צור והעתיקו את המספרים.

What it makes

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.

Options explained

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.

How the randomness works

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.

Good uses and limits

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/he/random-number-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

כלים קשורים