Draw a number of cards at random from a standard deck, with no card drawn twice in the same hand. Different from shuffling a whole deck: this deals you a hand and tells you what remains.
Settings
Recent results
Generated locally in your browser — your settings and results never leave this page.
Drawing and shuffling are different operations
Both involve randomising cards, and they answer different questions. Shuffling reorders the whole deck so it can be dealt from over the course of a game. Drawing takes a specific number of cards out of a deck and leaves the rest behind.
The practical distinction is what you get back. A shuffle gives you a sequence to work through; a draw gives you a hand plus the knowledge of what remains. If you want to deal five cards to each of four players over several rounds, shuffle. If you want one hand right now, draw.
Without replacement, as a real deck behaves
Cards are drawn without replacement, which is the only sensible behaviour for a deck: once the ace of spades is in your hand it cannot also be in the next position. This matters because it makes the draws dependent — each card removed changes the odds for everything still in the deck.
That dependence is the whole basis of card counting and of most card-game strategy. The chance of the next card being a heart depends on how many hearts have gone. A tool that drew with replacement would be modelling something else entirely, and would make any probability reasoning built on it wrong.
Where the poker rankings come from
Hand rankings are not conventions. They fall directly out of counting.
From 52 cards there are 2,598,960 distinct five-card hands. Of those, 5,108 are flushes and 3,744 are full houses. The full house is rarer, so it ranks higher. Four of a kind appears in 624 hands and outranks both. A straight flush appears in 40, and the four royal flushes are the rarest of all.
The ordering is arithmetic rather than tradition, which is why it is identical everywhere the game is played. Working through the counting once makes the rankings memorable in a way that learning the list never quite does.
Each draw starts fresh
Every draw here begins from a complete deck. Draw five cards twice and a card from the first hand may well appear in the second, because the deck was reset in between.
This is the right behaviour for a tool that deals independent hands — simulating opening hands, generating examples, testing a hand evaluator. It is the wrong behaviour for dealing progressively through one deck, which is what the shuffler is for.
Why a digital draw is a fair draw
A physical deck can be imperfectly shuffled, marked, or dealt from the wrong place. Those are the failure modes card games have guarded against for centuries.
A digital draw removes them and introduces a different requirement: the randomness has to be sound and the method has to be stated. Every card here is drawn from the browser’s cryptographic random source using a partial Fisher–Yates shuffle, so every hand is equally likely. The claim is checkable because the method is named rather than left implicit.
Privacy
Cards are drawn in your browser. Nothing is transmitted, stored or logged.
What the remaining deck tells you
Showing what is left turns a draw into something you can reason about. Once five cards are out, the probabilities for everything else have changed, and knowing exactly what remains is what makes those probabilities calculable.
That is the basis of most card-game strategy: not remembering every card, but tracking enough of what has gone to know whether the card you need is still live. A drawer that only showed your hand would hide the half of the information that decisions are actually made on.
It is also useful for teaching conditional probability, where the change in odds after each draw is exactly the thing being demonstrated and needs to be visible rather than asserted.
How to use the Random Card Drawer
- Set how many cards to draw.
- Include jokers if your game uses them.
- Draw — no card appears twice in the same hand.
Frequently asked questions
How is this different from shuffling a deck?
Shuffling returns all 52 cards in a new order. Drawing deals you a specific number and tells you what is left. Use the shuffler when you will deal from the deck over time, and the drawer when you want a hand now.
Can the same card be drawn twice?
No. Cards are drawn without replacement, exactly as they would be from a physical deck, so every card in a hand is distinct.
Is every possible hand equally likely?
Yes. The draw uses a partial Fisher–Yates shuffle, which gives every combination of cards the same probability — the same guarantee you get from dealing off a properly shuffled deck.
What are the odds of a particular poker hand?
From a five-card draw there are 2,598,960 possible hands. A flush occurs in 5,108 of them and a full house in 3,744, which is why a full house beats a flush — the ranking follows directly from how rare each hand is.
Can I draw a whole deck?
Yes. Set the count to 52 and you get every card in a random order, which is the same as a full shuffle.
Does drawing again continue from the same deck?
No. Each draw starts from a complete deck, so the same card can appear in consecutive draws. If you want to deal progressively from one deck, shuffle it and work down the order instead.
Do jokers change the odds?
They enlarge the deck to 54, so every specific card becomes slightly less likely. Whether jokers are wild is a rule of your game rather than a property of the draw.