Anagram Checker
Check if two words or phrases are anagrams of each other, and generate anagrams from a word.
Related Tools
0 comments
How it works
Enter two words or phrases. The tool strips spaces and punctuation, converts to lowercase, sorts the letters, and compares the sorted strings. If they match, the inputs are anagrams. A side-by-side letter-frequency table shows exactly which letters each phrase contains and highlights any differences. All processing runs in your browser — nothing is sent to a server.
Common use cases
- Verifying a proposed anagram for a crossword or word puzzle.
- Checking if a brand name is an anagram of another word.
- Playing word games and settling disputes about whether two phrases use the same letters.
Frequently asked questions
Are spaces and punctuation ignored?
Yes. The checker strips all non-letter characters and ignores case, so "Astronomer" and "Moon starer" are correctly identified as anagrams.
Does this work for multi-word phrases?
Yes — enter any phrase, not just single words. Spaces between words are removed before comparison.
Can it generate anagrams for me?
The tool checks whether two given strings are anagrams of each other. Generating all possible anagram words from a given string would require a dictionary lookup, which this client-side tool does not include.