Random Number Generator

Generate random integers or decimals within a range.

Generate one or many random numbers within a chosen range. Choose integers or decimals, set how many to generate, and optionally allow duplicates.

Common use cases

  • Pick random winners for giveaways, raffles and contests
  • Seed test data with random IDs, ages or quantities
  • Roll dice or simulate probability for tabletop games
  • Generate sample numbers for statistics demos and homework

Frequently asked questions

Is it suitable for raffles?β–Ύ
Yes β€” randomness comes from your browser's secure random source, which is cryptographically unbiased. For high-stakes draws, ask participants to verify the seed publicly.
Can I generate without duplicates?β–Ύ
Yes β€” toggle 'unique only' to draw without replacement. The tool will warn if your range can't supply enough unique values.

Related tools