Word & Text Tools
Unscramble letters, find anagrams, narrow down a Wordle answer, or convert text between cases. All four run entirely in your browser.
Which tool do I need?
This is the quickest way to the right one.
- What words can I make from these letters?
- Anagram Solver
- These letters are jumbled — what is the word?
- Word Unscrambler
- Which words still fit my Wordle guesses?
- Wordle Solver
- How do I convert this text to camelCase or snake_case?
- Case Converter
About These Word Tools
Anagrams and word games
An anagram rearranges all the letters of a word or phrase to form a new one — "listen" and "silent" are a classic example. Anagram solvers work by sorting the letters alphabetically to create a canonical form, then matching against a dictionary of words with the same sorted letters. Letter frequency is the key variable.
Text case conventions
Different programming and writing contexts use different capitalisation conventions. camelCase joins words with a capital (JavaScript variables). snake_case uses underscores (Python, databases). UPPER_CASE signals constants. Title Case capitalises each word and is used for headings. Sentence case capitalises only the first word of a sentence.
Wordle strategy
Wordle's colour feedback tells you which letters are correct (green), present but misplaced (yellow), or absent (grey). Optimal first words use the five most frequent letters in 5-letter English words — RAISE, CRANE, SLATE, and ADIEU are popular opening choices. Each subsequent guess should eliminate as many unknown positions as possible.
Word descrambling
Descrambling finds valid English words formable from a given set of letters — the same operation as anagram solving, but targeting any valid subset rather than words using all the letters. This is the core skill in Scrabble and similar tile games where you need the highest-scoring word from your available rack of letters.
Word tool questions
- Which dictionary do these use?
- The anagram and unscrambler tools use Collins Scrabble Words (CSW24), the word list used in tournament play outside North America. The Wordle solver uses the ENABLE word list. Both ship with the site and are loaded in your browser, so results are consistent and do not depend on a service being up.
- Is using a Wordle solver cheating?
- That is between you and your streak. Most people use it after the fact to see what was possible, or when stuck on the last guess. It narrows the list by the greens, ambers and greys you have already earned — it does not know the answer.
- What is the difference between the anagram solver and the unscrambler?
- The anagram solver finds every word that can be made from your letters, including shorter ones. The unscrambler is aimed at the case where your letters make exactly one intended word. They share a dictionary and often overlap.
- Do the word lists slow the page down?
- They are large — several megabytes of plain text — so they are fetched only when a word tool actually needs them, compressed in transit, and cached afterwards. The rest of the site never loads them.