Check if two strings are anagrams and show letter frequency. Part of the DevTools Surf developer suite. Browse more tools in the Fun / Niche collection.
Use Cases
Puzzle enthusiasts verifying crossword and word game answers
Teachers creating educational word exercises for students
Game developers validating anagram mechanics in word games
Writers checking character name anagrams for hidden meanings
Tips
Compare letter frequency charts to understand near-anagrams
Try multi-word anagram inputs for phrase comparisons
Use this to verify word puzzle solutions instantly
Fun Facts
The word 'anagram' itself comes from the Greek 'anagrammatismos,' and the practice dates back to at least the 3rd century BCE by Greek poet Lycophron.
The longest single-word anagram pair in English is 'cinematographer' and 'megachiropteran' (a type of bat), both containing 15 letters.
In the 17th century, scientists like Galileo and Robert Hooke published discoveries as anagrams to establish priority without revealing findings prematurely.
FAQ
What does it check?
Whether two strings use the exact same letters (ignoring spaces/case). 'listen' and 'silent' are anagrams; 'hello' and 'hellox' are not.
Does it find all possible anagrams?
No — it just verifies two given strings. For finding all anagrams of a word, you'd need a dictionary lookup.
Is it case-sensitive?
No by default. Toggle strict case if you want 'Listen' and 'silent' to NOT match.
What about Unicode?
Accented characters are normalized (NFC) before comparison. Emoji and non-Latin scripts work the same way — letter-frequency based.