Draw a card from a properly shuffled deck.
Random card
Chance of any given card
1 in 52
Press draw โ the deck is shuffled fresh, no repeats within a draw
Game night, drawn
WeeklyOne game, one way to decide who starts, and one rule to change โ drawn fresh each week. For the dice, cards and coin in the drawer.
Try also
How do you draw a random playing card online?
Shuffle the whole deck first, then deal off the top โ which is exactly what this page does. The 52 cards are put through a FisherโYates shuffle driven by your browser’s cryptographic random generator, so every possible ordering is equally likely. Because the cards are dealt rather than picked one at a time, no card can appear twice in the same draw.
Ask for one card and every card has a 1-in-52 chance, or 1.92%. Ask for five and you have a poker hand with the correct dependencies built in: once the ace of spades is out, it is out. That distinction matters more than it sounds, because a generator that picks each card independently will hand you two identical cards often enough to ruin whatever you were using it for.
Jokers are off by default. Switch them on and the deck becomes 54 cards, which drops the chance of any specific card to 1.85% and is the correct setup for games that actually use them.
What you are actually likely to draw, from a full 52-card deck on a single card:
| Draw | Cards that qualify | Chance |
|---|---|---|
| One specific card | 1 | 1.92% |
| Any ace | 4 | 7.7% |
| Any face card (J, Q, K) | 12 | 23.1% |
| A given suit | 13 | 25% |
| Red or black | 26 | 50% |
| Ten or higher | 20 | 38.5% |
Add jokers and every figure in that column falls slightly, because the favourable cards are now spread across 54. Draw more than one card and the odds shift after each one, since the deck is shrinking โ the second card is drawn from 51, not 52.
For a straight two-way call, the coin flip is quicker; for a numbered draw from any range at all, the random number generator is not stuck at 52. If you want the whole deck in a random order rather than a few cards off the top, the list randomizer will shuffle any list you paste into it.
Frequently asked questions
Can the same card come up twice?
Not within a single draw. The deck is shuffled and the cards are dealt off the top, so ten cards means ten different cards, exactly as with a physical deck. Press draw again and the deck is reshuffled from all 52, so a card from the previous draw can certainly reappear โ each draw is a fresh deck, not a continuing one.
How many cards are in the deck?
Fifty-two: thirteen ranks in each of four suits. Turn on jokers and it is 54. That is the standard international deck; games that strip it down โ piquet at 32 cards, some European games at 40 โ are not covered here, though drawing repeatedly and ignoring the cards you do not want gets you there in a pinch.
What are the odds of drawing a specific card?
One in 52, or 1.92%, from a full deck. An ace of any suit is 4 in 52, or 7.7%; a heart is 13 in 52, or 25%; a face card is 12 in 52, or 23.1%. With jokers included every one of those figures drops by about 4%, since the same number of favourable cards is spread over 54.
Is a digital shuffle as good as a real one?
Better than most real ones. Seven riffle shuffles are needed to properly randomise a physical deck, and almost nobody does seven โ which is why card players can read patterns in a badly shuffled deck. FisherโYates with a cryptographic source produces a uniformly random ordering in a single pass, with no clumping left over from the previous hand.
Can I use it for magic tricks or card games?
For games, yes โ it is a deck you cannot lose under the sofa. For magic, the honest answer is that a screen removes most of what makes a card trick work, since the audience cannot handle the deck or verify anything. It is more useful on the performer’s side, as a way to generate a genuinely unpredictable target card for practice.
Is the draw recorded anywhere?
No. The shuffle happens in the page, the cards are displayed, and nothing is stored or sent. Reloading gives you a fresh deck with no memory of what came before, and there is no way to recover a previous draw โ so if the result matters to someone else, screenshot it rather than trusting the page to remember.
How the randomness works
crypto.getRandomValues
with rejection sampling, so every position is equally likely and no ordering is favoured. Your
cards are then taken from the top of the shuffled deck, which is why duplicates within a draw are
impossible by construction rather than by a retry loop. Nothing persists between draws.Worked example
With Cards to draw 1, this page works out 1 in 52. Press draw โ the deck is shuffled fresh, no repeats within a draw
Sources:
The deck as a decision tool
Cards are the most under-appreciated randomiser in the house, because a deck is really 52 distinct outcomes with four overlapping ways of grouping them. That makes it a far more flexible decider than a coin or a die: red or black is a 50/50, suit is a four-way split, rank is a thirteen-way split, and high card settles ties between any number of people at once.
It also comes with a genuinely startling number attached. A shuffled deck has 52 factorial possible orderings โ about 8 ร 10 to the 67th โ which is comfortably more than there are atoms in the solar system. Any properly shuffled deck has, in all likelihood, never existed before in that order and never will again.
For decisions, the practical caveat is agreeing the rule before the card appears. High card wins is clear; deciding after the fact that aces are low is not. Set the rule, draw once, live with it.