Anagram Checker
Enter two words or phrases to check whether they use exactly the same letters, ignoring spaces, punctuation, and capitalization.
Yes, these are anagrams
This checks whether two words or phrases use exactly the same letters, ignoring spaces, punctuation, and capitalization, the same rule "funeral" and "real fun" satisfy. It compares the two inputs you give it; it doesn't search a dictionary for anagrams of a single word.
Frequently asked questions
Does this find all possible anagrams of a single word?+
No, it compares two words or phrases you provide and checks if they're anagrams of each other. It doesn't search a dictionary to find every possible real-word anagram of a single input.
Does word order matter, like for phrases?+
No, "funeral" and "real fun" are anagrams of each other because they use the same letters overall, spaces and word boundaries are ignored, same as with the palindrome checker.
What's the letter signature shown under the result?+
Both inputs' letters, sorted alphabetically, side by side. If the two signatures match exactly, the words are anagrams, it's a visual way to see why the checker returned the answer it did.