Anagram checker

Client

Compare two strings to see if they use the same letters. For edit distance, see Levenshtein distance.

How anagram detection works

Two strings are anagrams when their sorted letters match—optional case folding and space removal help compare phrases like “listen” and “silent”. This is a literal character sort, not a dictionary word game solver.

Anagram

Nearby workflows on Toolcore

Common use cases

  • Verify word-game pairs before publishing puzzles.
  • Quick sanity check that two tokens contain the same letter multiset.
  • Compare normalized usernames or codes that may differ only by spacing.

Common mistakes to avoid

  • Expecting substring matches

    Anagrams rearrange all letters—partial overlaps are not enough.

  • Different letter counts with Unicode

    Comparison uses JavaScript string code units; normalize first if needed.

FAQ

Are listen and silent anagrams?

Yes with default options—they contain the same letters when spaces are ignored.

Is data uploaded?

No. Comparison runs locally in your browser.

Common search terms

Phrases people search for that match this tool. See the full long-tail keyword index.

  • anagram checker online
  • compare two strings anagram
  • are these words anagrams tool
  • anagram detector browser

Related utilities you can open in another tab—mostly client-side.