Word Unscrambler

Unscramble letters into real words of every length at once, with wildcard support and sorting by length, Scrabble score or alphabet. Runs in your browser.

🌐 Español

🔒 Private by design: your text is processed locally in your browser and never uploaded to any server.

Every length, not just the long shot

Most unscramblers assume you want the anagram, the single word that uses every letter you typed. That is the puzzle answer, and it is rarely the useful answer.

In a real word game the constraint is the board, not your rack. You have seven letters and a three letter gap next to a triple. What you need is every word you could make, at every length, ranked so you can find the one that fits.

So this searches from one letter up to however many you typed, and returns the lot. The sort order then decides which end of that list you look at first.

Unscrambling a set of letters

  1. Type your letters. Spaces, digits and punctuation are ignored, so a jumbled mess pastes fine.
  2. Add a question mark or an asterisk for each blank tile you hold.
  3. Choose a Sort results by order.
  4. Run it and read the list, each entry with its length and score.

Wildcards, and what they cost

A wildcard stands in for any single letter. Type two of them and any two letters in a candidate word can be covered.

The matching is done by comparing what a word requires against what you actually hold, letter type by letter type, and adding up the shortfall. If that total shortfall is no larger than the number of wildcards you have, the word is reachable.

The scoring then applies the real rule that makes blanks interesting. A letter covered by a wildcard scores nothing at all, exactly as a blank tile does in the game, whatever letter it stands in for. That is why the same word appears with a very different score depending on whether you hold the actual letters, and it is precisely the trade off a player is weighing when deciding whether to spend a blank.

The three sort orders solve three different problems

Sorting by length is the default and answers the show off question. The longest word you can build sits at the top.

Sorting by score answers the game question, and it very often disagrees with length. A short word using a high value letter beats a long word made entirely of common ones, and if you are keeping score that is the play. The disagreement between the two orderings is itself informative.

Sorting alphabetically answers the verification question. When you want to know whether one specific word is in the list, scanning an alphabetical list takes seconds and scanning a list ordered by length takes minutes.

There is a fourth question the tool cannot answer, which is whether a word will actually play. That depends on the board, the letters already on it and the squares you can reach, none of which this page knows anything about. What it gives you is the set of words your letters allow, and narrowing that set down to the one you can legally place is still your job.

About the dictionary

The word list is a general purpose open English dictionary, bundled with the site and loaded as its own chunk only when the tool runs, so simply visiting the page costs nothing.

It is not an official tournament word list, and the distinction matters for competitive play. Tournament lists are curated, licensed and differ between regions, and they include obscure entries a general list omits while excluding informal ones a general list contains. For a casual game the difference is irrelevant. For a competitive one, treat this as a suggestion engine and confirm against the list your game actually uses.

For counting rather than building, Word Counter gives totals and reading time, and Syllable Counter breaks words down for poetry. To change the case of a result before using it somewhere, Case Converter handles that.

To turn a set of words into study material, Flashcard Maker produces printable cards. To compare two lists of words, Diff Text lines them up. The rest are on the text hub.

See it in action

Screenshot of the Word Unscrambler tool with the sample input “browser”, Sort results by set to Length, longest first
Word Unscrambler mid-process: the sample input “browser”, Sort results by set to Length, longest first.
Screenshot of the Word Unscrambler result screen showing the generated output “=== WORD UNSCRAMBLER RESULTS === Letters: 7 tota…”
The finished result: the generated output “=== WORD UNSCRAMBLER RESULTS === Letters: 7 tota…”. The download link is a local blob URL — the file never leaves your device.

Frequently asked questions

Does it only find words that use every letter?

No, it finds every word of every length that can be built from your letters, from one letter up to all of them. That is usually what you want, because in a word game the seven letter word is rarely the one you can actually play, and the four letter one that fits the board is. Sorting by length puts the longest first so the ambitious option is still at the top.

How do wildcards work?

Type a question mark or an asterisk for each blank tile. A wildcard stands in for any single letter, and the matcher checks whether the shortfall between what a word needs and what you actually hold can be covered by the wildcards available. Two blanks let two letters be covered, in any combination across the word.

How is the score calculated?

With the standard letter values from Scrabble, and with one important rule carried over. A letter covered by a wildcard scores zero, exactly as a blank tile does in the real game, regardless of which letter it represents. So the same word can be worth very different amounts depending on whether you hold the real tiles or are covering with blanks, which is exactly the decision the score is meant to inform.

How many letters can I enter?

Up to 20 including wildcards. That is comfortably more than a rack in any tile game and past the point where the result list stops being scannable. The cap exists because the search examines every dictionary word of every plausible length, so the work grows with the input.

How many results are shown?

Up to 300, and the report tells you the total found as well as how many are being shown when the list has been trimmed. Three hundred is already more than anyone reads, and knowing that a shorter set of letters produced two thousand matches is useful information even when you only look at the first page.

Which dictionary does it use?

A bundled open English word list, downloaded as its own chunk only when the tool actually runs so that visiting the page costs nothing. It is a general purpose list rather than an official tournament word list, so a few obscure words a competition dictionary allows may be missing, and a few informal ones it excludes may be present. Check against your game's own official list if the game is competitive.

How should I use the three sort orders?

Length when you want the most impressive word available. Score when you are playing a scoring game, because the highest scoring word is frequently shorter than the longest one, particularly when high value letters are involved. Alphabetical when you are checking whether one specific word is in the list, which is much faster to scan than an ordering by anything else.

Is my input sent anywhere?

No. The dictionary is loaded into your browser and the search runs there, so nothing you type is transmitted. That also means the tool works with no connection once the page and dictionary chunk have loaded.

Related tools