Anagram Checker
Check whether two words or phrases are anagrams of each other.
Compares the letters in two words or phrases regardless of order, spacing, or capitalization — useful for word-game solving or just settling an argument about whether two phrases are genuinely anagrams.
Example: "Dormitory" and "Dirty Room" are anagrams — same 9 letters, just rearranged and re-spaced.
How it works
- Type the first word or phrase
- Type the second word or phrase
- The result appears instantly, on your device
Frequently asked questions
Does this ignore spaces and capitalization?
Yes — both phrases are normalized the same way as the palindrome checker before comparing, so "Dormitory" and "Dirty Room" correctly match.
Is my text uploaded anywhere?
No — Anagram Checker runs entirely in your browser using JavaScript/WebAssembly. Your text is never sent to a server.
Does this work on full sentences, or just single words?
Yes, full phrases work the same as single words — spacing and capitalization are ignored, so only the actual letters and their counts are compared.