Word unscrambler: making words from letters
Whether you are stuck in a word game, crafting a catchy name, or testing a child's spelling, a word unscrambler finds every valid word hidden in a jumble of letters. It works by comparing the multiset of your letters against a pre-indexed dictionary, returning all words that can be formed, from short two-letter words to the longest possible anagram.
TL;DR
- The tool counts the frequency of each letter in your input, then scans the dictionary for words whose letter counts fit within those available
- Dictionary Matching Algorithm: valid(word) ⇔ ∀ letter c: count(word, c) ≤ count(letters, c)
- Example 1: Unscrambling "rndtea"
How it works
The tool counts the frequency of each letter in your input, then scans the dictionary for words whose letter counts fit within those available. Every match is returned, usually sorted by length or alphabetically, with optional filters for minimum and maximum word length.
The math
Build a frequency map of the input letters. For each dictionary word, build its frequency map and check that it is a subset of the input map. If every letter of the candidate appears in sufficient quantity in the input, the word is valid.
The subset condition is exact: a word is playable only if it never uses more of a letter than you have, which is the same rule word games apply.
Examples
Example 1: Unscrambling "rndtea"
- Input letters: r, n, d, t, e, a
- Dictionary scan finds all 6-letter anagrams
- "ardent" and shorter words
- Results sorted by length and alphabetically
Example 2: Using filters for a word game
- Letters: s, t, o, p, e, r
- Min length filter: 4 characters
- Results include "stop", "rope", "port", "rest"
- Max length filter narrows to 5-6 letter words: "tropes", "poster"
When to use it
✦ Word Games and Puzzles
Scrabble, Words with Friends, and anagram puzzles are solved by verifying which words your tile rack can legally form.
✦ Writing and Brainstorming
Writers find name candidates and fresh word choices by generating all anagrams of a working set of letters.
⚠ Common Unscrambling Misconceptions
- Expecting Every Word: Dictionary completeness limits results; some proper nouns, archaic words, and regional terms may be absent.
- Ignoring Letter Availability: A word is valid only if you actually hold each of its letters in the required quantity.
- Forgetting Filters: Without length filters, long inputs return hundreds of short words that bury the meaningful answers.
Frequently Asked Questions About Word Unscramblers (6)
How does it work?
It compares input characters against a pre-indexed dictionary.
Can it solve crosswords?
With pattern filters many tools can; at minimum it is ideal for anagram games like Scrabble and Words with Friends.
Do you save the numbers I type for area, volume or conversions?
Not at all. Every conversion — kg to lbs, area, fraction math — runs locally. No form data is posted anywhere. You can convert 1,500 kg to lbs on a shared computer and walk away knowing nothing was logged. — note for Word Unscrambler.
Will it work without internet in class?
Yes — that's why students like it. Load once on Wi-Fi, then fraction, base-converter or standard deviation work offline in class or in an exam hall without signal. It's just math in JavaScript, no server round-trip. — note for Word Unscrambler.
How accurate are the math results?
We use standard definitions (e.g. 1 kg = 2.20462 lbs, BIPM SI) and double-check edge cases via automated tests. For homework or site measurements it's more than enough, but for certified engineering or lab work, cross-check with the primary standard. — note for Word Unscrambler.
Can I share a calculation with a classmate?
Tap 'Share Link' — it puts the inputs in the URL. Your classmate opens it and sees the same 3/4 → 0.75 → 75% breakdown instantly, without retyping. — note for Word Unscrambler.