How the number wheel works
Pick a minimum and a maximum, press build, and the wheel redraws with your range. Ranges of 40 numbers or fewer show every value as its own slice. Larger ranges are sampled evenly across the range so the wheel stays readable, which keeps the result visually verifiable rather than hidden behind a black box.
The winner is selected before the animation starts using your browser's cryptographic random number generator, then the wheel is spun to land on it. That means the spin length and easing have no effect on the outcome.
Common uses
- Picking a raffle ticket number
- Choosing a question number in a quiz
- Random sampling for a survey or audit
- Deciding a page number, seat or lane
- Generating a starting number for a game
Random numbers versus a wheel
A plain generator prints a number instantly. A wheel adds a few seconds of anticipation and, more importantly, shows the full pool of possibilities to everyone watching. In a classroom or on a stream, that visible fairness is worth more than the speed you lose.