Word Scrambler & Anagram Solver
Unscramble letters to find words you can make, solve anagrams, and shuffle a word — using a tech, Scrabble, or common-word dictionary.
Interactive Client Prototype Sandbox
No matching dictionary sub-words found for "tcrae". Try letters: tcrae, rotide.
Disclaimer: This free tool is provided “as is,” without warranties of any kind, and is for general informational purposes only — not professional, legal, financial, medical, tax, or engineering advice. Results may contain errors; verify anything important independently and use at your own risk. We accept no liability for any loss or damage arising from its use. See our Terms of Use for details.
Step-by-Step Guide
Type your letters in the input field. The tool instantly finds all dictionary words that can be formed using only those letters (each letter used at most once per word, matching the count of that letter in your input). Exact anagrams — words that use all your letters exactly — are highlighted at the top of the results.
Open the Options panel to: switch dictionaries (Scrabble TWL/SOWPODS for tournament play, a tech/programming dictionary, or a common-words list); filter results to include only words that contain a specific letter; filter to words that start with or end with specified letters. Use the Scramble button to randomly shuffle your letters — useful when looking for inspiration or practicing anagram puzzles.
Results are sorted by word length (longest first within each group) and show an approximate Scrabble point value for each word.
Letters 'tcrae' (5 letters): exact anagrams include 'crate', 'cater', 'carte', 'trace', 'react'; shorter sub-words include 'race', 'acre', 'care', 'cart', 'cat', 'arc', 'car', 'ace', 'tar', 'ear', 'eat', 'are'. Filter to words starting with 'cr' → narrows to 'crate'. Switch to Scrabble dictionary → shows point values: 'crate' = 7 points.
Who it's for
Scrabble players, Wordle enthusiasts, dictionary buffs, and crosswords players.
Core Features
- Find every dictionary sub-word you can build from your letters, plus exact same-length anagrams.
- Choose a tech, Scrabble, or common-word dictionary.
- Filter results by a letter they must include, start with, or end with.
- Scramble button to shuffle your letters, with a rough point value per word.
🛡️ No tracking — your inputs, keys, and details never leave this client sandbox.
What is the difference between an anagram and a scrambled word?
An anagram uses all the letters of the input word exactly once, rearranged to form a different word. 'crate', 'trace', and 'react' are all anagrams of each other. A scrambled word is simply the same letters in a random or jumbled order that may or may not form a valid word. This tool finds both: exact anagrams (all letters used) and sub-words (some letters used, in any combination).
What are the different dictionaries and when should I use each?
The Scrabble dictionary (TWL for North American tournament play, SOWPODS for international) contains every word permitted in competitive Scrabble — a much larger set than everyday English, including many two- and three-letter words like 'qi', 'za', and 'aa'. The common-words list contains frequently used English words. The tech dictionary emphasizes programming and technical terms. Use the Scrabble dictionary for word games; use common words for finding readable, everyday results.
How are the Scrabble point values calculated?
Each letter has a Scrabble tile value: E, A, I, O, N, R, S, T, L, U = 1 point; D, G = 2; B, C, M, P = 3; F, H, V, W, Y = 4; K = 5; J, X = 8; Q, Z = 10. A word's base value is the sum of its letter values without any board-specific bonuses (double/triple letter or word scores). The values shown are base tile values only.
Can this tool solve Wordle or similar word games?
Yes. The filter options make it effective for Wordle: use 'must include' for letters you know are in the word (shown in yellow), 'starts with' or 'ends with' for known positions, and enter the available letters. You can combine filters — for example, letters that must appear and a specific starting letter — to narrow results significantly. Switch to the common-words dictionary for the most Wordle-relevant results since the game uses a common-word list.
The combinatorics of word games
Most people assume that unscrambling letters is primarily a vocabulary problem — you just need to know enough words. Competitive Scrabble players know differently: it is almost entirely a combinatorics problem. The English vocabulary a tournament-level player needs is actually quite narrow — the decisive skill is the ability to systematically generate letter combinations from a rack, not to recall definitions. A player who knows all 107 valid two-letter SOWPODS words and can reliably spot them in a seven-letter rack will consistently outscore someone with a larger general vocabulary but weaker rack vision.
How experts use this tool differently than beginners
Casual players type in their exact letters and scroll for the longest word. Experienced players use the filter options strategically: they enter the letters already on the board that a new word must connect through, use the 'must include' filter to narrow to words containing a specific high-value letter they need to place, and filter by starting or ending letter to find plays that land on premium squares. They also switch dictionaries deliberately — the common-word list when they want readable, reliable words; SOWPODS when they want to maximize legal options. The difference between beginner and advanced use is mostly about using the tool as a targeted search instrument rather than a broad lookup.
The algorithmic approach
A brute-force approach would generate every permutation of the input letters and look each one up in a dictionary. For 7 letters, that is 7! = 5,040 permutations, but for each length from 2 to 7, the count of arrangements is P(7, k) = 7!/(7-k)! — totaling over 13,000 strings to check for a 7-letter input, and far more for longer inputs. More efficient approaches use trie data structures (prefix trees) to prune the search space: when no dictionary word starts with the current prefix, the algorithm abandons that branch entirely, dramatically reducing the number of candidates to evaluate.
Letter frequency and Scrabble strategy
Scrabble tiles are distributed according to letter frequency in English, but with higher values for less common letters. Common letters (E, A, I, O, N, R, S, T, L, U) are worth 1 point because they are plentiful and easier to use. Rare letters (Q, Z, J, X) are worth 8–10 points and appear in few words, making them high-risk high-reward tiles. Skilled Scrabble players memorize all two- and three-letter words in the valid dictionary to maximize plays in constrained board positions — there are over 100 valid two-letter words in SOWPODS.