Random Number Generator
Generate random whole or decimal numbers within a custom range, with or without repetition, using the browser's Web Crypto API for truly unpredictable results.
How it works
- Set the minimum and maximum values of the range, and how many numbers you want to generate.
- Turn on "Allow duplicates" if the same number can appear more than once, or turn it off for sampling without repetition.
- Choose whether you want whole numbers only or decimal values as well.
- Click "Generate numbers" to get the result, computed with crypto.getRandomValues.
- Copy the list of results with one click.
Use cases
- Run drawings, raffles, or lotteries by picking winners impartially.
- Generate random data samples for statistical or software testing.
- Pick numbers for board games, group activities, or random decisions.
- Create test datasets with numeric values within a specific range.