Word unscrambler
Type a set of jumbled letters and instantly find the real English words that use exactly those letters rearranged. It is built for cracking anagram puzzles, daily jumbles, and word-game tiles where you need to use every letter you have.
How it works
The unscrambler creates a fingerprint of your input by lowercasing the letters and sorting them alphabetically. It does the same for every word in its built-in dictionary, then returns only the words whose sorted fingerprint matches yours exactly. Because the fingerprints must be identical, each result is a true anagram — it uses all your letters and no others. Results are de-duplicated and listed alphabetically.
Example
Type the scramble TLBAE. Sorting those letters gives abelt. The dictionary words TABLE and BLEAT share that same sorted fingerprint, so both are returned. A word like TEAL is not, because it is missing a B.
Matching is done against a built-in word list, so it works offline and nothing leaves your browser.