Anagram Checker
Check if two words or phrases are anagrams of each other.
β
They ARE Anagrams!
| Letter | In "listen" | In "silent" | Match |
|---|---|---|---|
| e | 1 | 1 | β |
| i | 1 | 1 | β |
| l | 1 | 1 | β |
| n | 1 | 1 | β |
| s | 1 | 1 | β |
| t | 1 | 1 | β |
Examples:
About This Tool
The Anagram Checker determines whether two words or phrases are anagrams of each other β that is, whether they use exactly the same letters in the same quantities, ignoring spaces, punctuation, and case.
A frequency map is built for each input, counting how many times each letter appears. Two strings are anagrams if and only if their frequency maps are identical.
How to Use
- Type a word or phrase in the first input.
- Type a second word or phrase in the second input.
- The result and letter frequency table update instantly.
- Click any example pair to load it.
Use Cases
Word game players verify whether scrambled letters form a valid word. Puzzle designers check anagram pairs for quiz content. Students learning cryptography use anagrams to understand letter substitution.
FAQ
- Does it ignore spaces and punctuation? β Yes. Only letters aβz are compared; spaces, punctuation, and accented characters are stripped before comparison.
- Is the comparison case-sensitive? β No. Both inputs are converted to lowercase before comparing, so "Listen" and "Silent" are treated the same as "listen" and "silent".
- What counts as an anagram? β Two strings are anagrams if they contain exactly the same letters in the same quantities, regardless of order or spacing.