3D Dice Roller & Coin Flip
Roll dice and flip a coin with secure randomness.
Dice Configuration
Enter a formula and roll
Roll Result
Your dice will appear here.
Coin Flipper
Flip a fair coin
Flip Result
★
Ready
History (Last 12)
No flips yet.
{
"dice": {
"formula": "1d6",
"lastRoll": {
"rolls": [],
"total": null
}
},
"coin": {
"history": [],
"heads": 0,
"tails": 0
}
}Related guides
Picking a Random Number (or a Raffle Winner) Without a Server
How a browser-only raffle picker avoids the classic mistakes — modulo bias, duplicate winners, predictable seeds — using the Web Crypto API.
Fair Random Picks With crypto.getRandomValues
Why Math.random() isn't the right primitive for a decision wheel, and what cryptographically strong randomness actually buys you for a fair pick.