Random Number Generator
Generate random integers within a range
Start
Description
Generate uniformly distributed random integers using the Web Crypto API with configurable minimum, maximum, and count. Optionally enforce uniqueness.
How to Use
- Set min/max and how many numbers.
- Toggle unique if needed, then Generate.
Example
Example
Range 1–100, count 5 → 37, 8, 92, 14, 53
FAQ
Distribution?
Numbers are uniform modulo the range from secure bytes.
Duplicates?
Enable unique to avoid repeats (limited by range size).