Random & Decision Tools
Dice roller, coin flip, random number, and random name picker.
Tabletop RPG sessions, raffles, picking who buys lunch, sampling for A/B tests — "pick something at random" is more common than you would think. This section reproduces dice and coin operations on screen, generates random numbers in a range, and selects from a list of candidates. These are not for cryptographic use; for that, see the security tools.
Tools in this topic (4)
Dice Roller
Roll virtual dice (d4-d100) with sum, min, max, and average stats
Coin Flip
Flip a virtual coin with cryptographically fair 50/50 probability
Random Number Generator
Generate cryptographically secure random numbers with custom range and count
Random Name Picker
Pick one or more random names from a list
Related articles
-
Dice notation: NdN+M, advantage, and probability distributions
How tabletop RPG dice notation works (NdN+M, advantage / disadvantage), the resulting probability distributions, and common dice-system rules.
-
PRNG vs CSPRNG: when each is the right random
How pseudo-random and cryptographically secure random differ, why Math.random() is unsafe for security, and the bias trap of `% N`.