Verify if two words or phrases are anagrams (formed by rearranging the exact same letters of another word or phrase).
๐ Calculated locally in your browser โ anagram tests run client-side
An anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. E.g. the word **"listen"** can be rearranged to spell **"silent"**. Anagrams are popular in word games, puzzle solving, coding interviews, and pseudonyms. The standard algorithm to check for anagrams is to ignore case differences, strip whitespace and punctuation, sort the remaining characters alphabetically, and compare if the sorted arrays are identical.