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

関連ツール