본문으로 건너뛰기
ko
목록과 숫자 무료 · 비공개

Random Number Generator

Pick a random number in any range.

Draw a random whole number between any minimum and maximum — negatives included — or grab a batch of up to 50 at once. Use it to pull raffle ticket winners, pick lottery-style number sets, or call on a random page or line in class. Every draw comes from your browser's Web Crypto API with rejection sampling, so no part of the range is favored.

옵션

Generate a number을(를) 누르면 결과가 표시됩니다.

최근 결과
  • 기록이 아직 없습니다.

자주 묻는 질문

What happens if I ask for more unique numbers than the range contains?

The draw is capped at the range size and a note explains why. Asking for 10 no-repeat numbers between 1 and 5 returns all five numbers, shuffled.

Can the range include negative numbers?

Yes. Both minimum and maximum accept negative values, and if you enter them backwards the tool swaps them automatically, so a range like -50 to 50 works fine.

How many numbers can I draw in one go?

Up to 50 per draw. With no-repeats on, every number in that batch is unique; with it off, duplicates can occur, like lottery balls drawn with replacement.

Is the generator biased toward any part of the range?

No. It uses crypto.getRandomValues with rejection sampling, which discards out-of-range raw values instead of wrapping them, so every integer from min to max is exactly equally likely.

When should I use this instead of the dice roller?

Use the dice roller when you want per-die results, totals, and modifiers. Use this when you need an arbitrary range, negative numbers, or a batch of unique picks.

관련 랜덤 도구

Further reading

피드백 보내기

버그를 발견했거나, 새 기능을 원하거나, 그냥 인사를 하고 싶다면 알려주세요.