Random Number Generator
Generate one or many random integers or decimals within a range, using a cryptographically secure random source.
Output
Numbers are drawn using crypto.getRandomValues, the browser's cryptographically secure random number generator, rather than Math.random().
Frequently asked questions
How do I generate random numbers online?
Set a min, max, and count, then click Generate. Random integers (or decimals, if enabled) in that range are produced instantly.
What happens if I ask for more unique numbers than fit in the range?
With "No duplicates" enabled, the count is automatically capped at the number of integers available in the chosen range.