How to Unscramble Words with Wildcards
Our free word unscramblertakes any jumble of letters and instantly returns every valid dictionary word that can be built from them. Whether you are staring at a hopeless Scrabble rack, trying to crack today's Wordle, or hunting for the perfect Words With Friends play, the same engine does the heavy lifting in milliseconds. Type up to 20 letters in the search box above and use the ? character for up to 5 wildcards (blank tiles). No permutation algorithms, no waiting — just pre-computed alphabetical signatures and per-letter frequency counts doing the work.
Key Definitions
- Unscramble — the act of rearranging a jumbled set of letters back into valid dictionary words. Unlike a pure anagram, unscrambling also surfaces every shorter sub-word that can be built from a subset of the input letters.
- Signature — the letters of a word sorted into A–Z order. Two words share a signature if and only if they contain the same letters, which is what makes anagram lookups instant.
- Wildcard — a blank tile (shown as
?in the search box) that can stand in for any letter. The solver subtracts each candidate word's letter deficit from your wildcard pool, so a query likeR??Ereturns every word that fits R + E + two blanks. - Sub-anagram — a word formed from some (not necessarily all) of the letters in the input. CAT is a sub-anagram of SCRABBLE because C, A and T all appear in SCRABBLE.
- Bingo — a Scrabble play that uses all seven tiles on your rack, earning a 50-point bonus on top of the word score.
Using Wildcards (Blank Tiles)
Wildcards let the unscrambler fill in any letter you are missing. Entering R??Etells the solver you have the letters R and E plus two blanks. The engine walks every dictionary word, subtracts each candidate's per-letter demand from your supply, and draws on the wildcard pool for any deficit — returning every word that fits, from RACE and RUSE all the way up to longer bingos when the blanks cooperate.
Advanced Filters Explained
- Starts With— restrict results to words that begin with a specific prefix. Useful for crossword clues like "music maker, 5 letters, starts with PI" (answer: PIANO).
- Ends With — limit results to a suffix. Perfect for finding -ING, -ED or -TION forms when you need a specific word shape.
- Contains — require a specific letter sequence somewhere in the word, regardless of position.
- Exact Length — cap results at a precise character count. Essential for Wordle, where every answer is exactly five letters.
- Dictionary — switch between TWL (US Scrabble tournament list), SOWPODS (international play) and ENABLE (a broad general-purpose list).
Word Game Tools & Solvers
Beyond the classic unscrambler, this site ships a complete toolkit for word-game players. Each tool is built on the same 270,000-word dictionary, so results stay consistent across the suite:
- Anagram Solver — find every exact anagram of any word, plus every shorter sub-word that can be made from the same letters.
- Wordle Solver — enter your green, yellow and gray clues and the engine filters all 5-letter answers down to the candidates that still fit.
- Quordle Solver — tackle four Wordle puzzles at once with the same clue-based filtering.
- Boggle Solver — drop in your 4×4 board and a depth-first search finds every valid word using adjacent cells.
- Wordfeud Helper — maximise your score on every Wordfeud rack using WWF-style point values.
- Random Word Generator — pull random words for creative writing, classroom games or brainstorming.
- Word Scrambler — jumble any word into multiple shuffled arrangements for puzzles and games.
- Word Combiner — blend two words into creative portmanteaus by slicing at vowel boundaries.
- Dictionary Checker — verify whether a word is valid in Scrabble, WWF and Wordle, with point values.
Scrabble Letter Points Reference
Every result on this site shows two scores side by side: the official Scrabble point value (TWL) and the Words With Friends point value. The two games use slightly different scales, so a word that is worth 11 in Scrabble might be worth 14 in WWF. Here is the full Scrabble letter distribution:
- 1 point: A, E, I, O, U, L, N, S, T, R — the workhorse vowels and common consonants.
- 2 points: D, G — slightly harder consonants.
- 3 points: B, C, M, P — moderate-frequency consonants.
- 4 points: F, H, V, W, Y — less common consonants and the flexible Y.
- 5 points: K — the only single point-value in the middle of the range.
- 8 points: J, X — high-value tiles that can swing a game.
- 10 points: Q, Z — the heaviest tiles, almost always played with a blank or U (for Q).
Words With Friends uses a slightly different scale that makes letters like B, C, H and W worth more. Always check both scores when choosing your best play — a word that looks stronger in Scrabble might score fewer points in WWF.
Popular Word Lists
Browse our pre-built word lists for quick reference during games. Each list is generated live from the full dictionary, so it always reflects the current TWL word set:
- 5-letter words starting with A
- 5-letter words ending with S
- 6-letter words starting with S
- 7-letter words ending with E
- Wordle words starting with C
- Full Wordle words list
Frequently Asked Questions
Is the word unscrambler free?
Yes — every tool on this site is completely free with no sign-up, no ads in the results and no daily limit. The project is maintained as a public utility for word game players.
How many letters can I unscramble at once?
Up to 20 letters plus 5 wildcards. That is more than enough for any Scrabble rack (7 tiles), Words With Friends rack (7 tiles) or Wordle guess (5 letters), with plenty of headroom for longer puzzle inputs.
Which dictionaries are supported?
The default dictionary is TWL (the Tournament Word List used in North American Scrabble). You can switch to SOWPODS for international play or ENABLE for a broader general-purpose list that includes words common in word games but excluded from tournament Scrabble.
Does the unscrambler find sub-anagrams?
Yes. Type in any set of letters and the engine returns every word that can be formed from a subset of those letters — not just exact anagrams. Results are grouped by word length so you can quickly spot the longest, highest-scoring plays. Each word is shown as a Scrabble-style tile with its point value in superscript, and a copy-to-clipboard button appears on hover.
How is this different from a permutation generator?
A naive unscrambler generates every permutation of the input letters and checks each against a dictionary — that is O(n!) and becomes unusably slow past about 10 letters. Our engine instead computes a single alphabetical signature for the input and looks up matching words by signature, then filters the candidates by per-letter frequency. The result is the same set of words, returned in milliseconds rather than minutes.