Word unscramblers are essential tools for word game players. In Scrabble and Words with Friends, a rack of seven letters can yield dozens of valid words of different lengths — finding all of them by hand takes time and misses obscure words. An unscrambler searches the full dictionary instantly, grouping results by length so you can spot the highest-scoring plays first.
This tool uses a sorted-key index: each word in the dictionary is stored under a key made from its letters in alphabetical order. When you enter scrambled letters, the tool sorts your input the same way and finds every dictionary entry whose sorted key is a subset of your sorted letters. This means entering "eatrs" also finds "ears", "star", "rate", and "sea" — not just five-letter words that use all your letters.
The dictionary contains 25,606 common English words, downloaded once and cached in your browser so all searches run entirely client-side. Some obscure Scrabble-legal words may not appear; treat results as a strong starting point rather than a definitive game authority.
Frequently Asked Questions
What word list does this tool use?+
The unscrambler uses a curated dictionary of common English words loaded from a local word list. It is sized for fast browser-side lookup — the full dictionary is downloaded once and cached, so subsequent searches are instant without any server calls.
Does it find all possible words from my letters?+
Yes — it finds every word in the dictionary that can be spelled using a subset of your letters. Each letter can only be used as many times as it appears in your input. Results include shorter words too (not just words that use all your letters).
Can I use this for Scrabble or Words with Friends?+
Yes, with the caveat that game dictionaries vary. The word list here covers most common English words, but some obscure Scrabble-legal words may be missing, and a few words here may not be accepted by specific game dictionaries. Use this as a starting point, not a guaranteed authority.
Is there a limit on how many letters I can enter?+
There is no hard limit. Longer inputs (7+ letters) yield more results and take a brief moment to compute. The algorithm sorts letters and compares against a pre-indexed dictionary, so even long inputs complete quickly in most browsers.
Related Tools
How to use
- Type or paste a set of scrambled letters into the input field.
- Matching words appear instantly, grouped by length with the longest first.
- Results include all valid words that can be formed from a subset of your letters.
- Try longer inputs (6+ letters) for the most interesting results.