Card Hand Generator
1-52 cards
Dealt locally in your browser with the Web Crypto API. Every card in a hand is unique — no card is dealt twice.
Unique cards, one deck
Choose how many cards to deal, then deal a hand of distinct cards from a single standard 52-card deck (13 ranks × 4 suits, no jokers). No card appears twice in a hand — ideal for poker, blackjack, and other card games.
Use cases
- Deal a 5-card poker hand or a blackjack starting hand
- Tarot-style spreads and other multi-card draws
- Classroom demos and quick game prototyping
- Any unbiased draw of unique cards from one deck
Fair random selection
Each hand is dealt with browser randomness using a partial Fisher–Yates shuffle of the 52-card deck. Rangdom uses the Web Crypto API for random generation so the next hand is not predictable from previous hands.
When to use it
Use this generator whenever you need several cards at once with a guarantee that none repeat — card games, demos, and quick prototyping.