Anagram Checker
Compare two words or phrases to see whether they use exactly the same letters, with the shared letter set spelled out.
Yes — these are anagrams
Shared letters: E, I, L, N, S, T. Letters are compared after lower-casing and stripping spaces and punctuation.
How anagrams are verified
Two phrases are anagrams when they’re made from the same multiset of letters — the same letters, each used the same number of times. The quickest way to test that is to sort both sides’ letters and compare: if the sorted sequences match, the phrases are rearrangements of each other.
Spaces, capital letters, and punctuation are cosmetic, so they’re stripped before comparing. That’s why a tidy phrase and a jumbled one can still be a perfect anagram — what counts is the pool of letters, not how it’s laid out.
Frequently Asked Questions
What makes two phrases anagrams?
They're anagrams when one can be rearranged into the other using every letter exactly once — the same letters in the same quantities. "listen" and "silent" qualify; so do "dormitory" and "dirty room."
How does the checker compare them?
It lower-cases both sides, strips out spaces and punctuation, sorts the remaining letters, and tests whether the two sorted strings are identical. If they match, the phrases are anagrams.
Does it ignore spaces, capitals, and punctuation?
Yes. Only the letters A–Z are compared, so "The Morse Code" and "Here Come Dots" register as anagrams despite the different spacing and capitalization.
What is the shared letter multiset?
It's the collection of letters the two inputs have in common, with counts. When the phrases are true anagrams, that shared set is simply the full multiset of letters in either one; when they're not, it shows where they overlap and, by omission, where they differ.
Does it check that both inputs are real words?
No. It only compares letters, so a nonsense string can be an "anagram" of a real word. For puzzles and games, confirm that both sides are valid words in a dictionary.
A helper for wordplay and puzzles, not an authority. It compares letters only and does not check that either side is a real dictionary word.