Anagram Generator
Generate letter-perfect anagram combinations from a word or name, filter the results, and copy favorites. Runs entirely in your browser.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
Example shown — use up to 9 letters. Spaces and punctuation are ignored.
Generated arrangements
Showing 120 unique results
How it works
- Enter a word or name containing up to nine letters.
- Generate unique rearrangements; repeated letters are handled without duplicate results.
- Filter the list, then click any result to copy it.
The method
The generator fixes each available letter in turn and recursively arranges the letters left over. For n distinct letters there can be n! arrangements; repeated letters reduce that total.
Unique arrangements = n! ÷ (repeat₁! × repeat₂! × …)
FAQ
Does this find dictionary words?
This frontend generates letter-perfect arrangements. It does not use an online dictionary, so results can include combinations that are not English words.
Why is input limited to nine letters?
The number of permutations grows factorially. Nine letters can already have 362,880 arrangements, so the interface limits and caps output to keep the browser responsive.
Are spaces and punctuation included?
No. The generator normalizes the input to letters before rearranging it.
Is my name sent to a server?
No. Generation and filtering happen locally in this browser tab.
How we compare
| Feature | Online Tool Store | Dictionary solvers | Manual rearranging |
|---|---|---|---|
| Runs privately in-browser | ✓ | Usually sends a query | ✓ |
| Instant filtering and copy | ✓ | ✓ | × |
| Filters to dictionary words | × | ✓ | × |
Choose this tool when you want fast, private letter arrangements. A dictionary solver is better when you need only verified words.