An anagram generator takes a word or phrase and returns the other words that use exactly the same letters - every letter, no letters left over. Type "listener" and it finds "reenlist" and "silenter"; type "stop" and it finds "pots", "opts", "tops" and "spot".
Generating anagrams by hand means checking permutations, and the number of permutations grows brutally: four letters have 24 arrangements, eight letters have 40,320. Almost none of them are words. This works the other way around - it sorts your letters into a fingerprint and looks up which real words share it, so the answer arrives immediately regardless of length.
The strict, every-letter-used version is also the literary one. Encyclopaedia Britannica traces the form back through centuries of wordplay, from Renaissance riddles to the deliberately constructed anagrams poets and puzzle-setters still build by hand today.
Use the generator when you want strict anagrams - every letter used. If you want any word you can build from a subset of your letters, the word unscrambler is the tool you want.
How to use it
- Type the word or phrase you want rearranged. Spaces and punctuation are ignored.
- Leave “use every letter” ticked for true anagrams; untick it to include shorter words.
- Use ? for a letter you are willing to leave open, such as a blank tile.
Which tool do you need?
All four tools run the same engine over the same dictionary. They differ in what they assume you want back.
| Tool | Use it when | You type |
|---|---|---|
| Anagram generator | Every word using all your letters, exactly once. | A word or phrase |
| Name anagram generator | Words hidden inside a personal name. | A first and last name |
| Word descrambler | The single hidden word behind a jumble. | One scrambled word |
| Word unscrambler | Every word you can build, including shorter ones. | Loose or jumbled letters |
Common questions
Why does my word have no anagrams?
Most words do not have any. A word only has an anagram when a different real word happens to use exactly the same letters, which is uncommon - the longer the word, the rarer it gets.
Can it generate anagrams of a full phrase?
It rearranges every letter you enter, ignoring spaces. Multi-word output for long phrases is a much larger search than single-word lookup, so results favour single words.