Introduction
Cryptic crossword clues look like nonsense until you learn the rules. "Confused baker in restaurant" is not about a chef, it is an anagram indicator telling you to rearrange BAKER to get BREAK. This tool detects the clue type from indicator words, extracts the fodder or hidden letters, and searches a dictionary for candidate answers. Paste a cryptic clue, optionally add the answer pattern, and the tool shows which clue types it detected and what answers fit.
What this tool does
- Detect six cryptic clue types from indicator words: anagram, hidden word, reversal, charade, container, and subtraction
- For anagram clues, extract the fodder letters (removing the indicator word) and find all dictionary words that are anagrams of those letters and match the answer pattern
- For hidden word clues, scan the clue text for consecutive letters that form a dictionary word matching the answer length, including across word boundaries
- Accept an optional answer pattern (using ? for unknown letters) to filter candidates by known letters and length
- Display the detected indicator word, the extracted fodder, and the number of matches found for each clue type
- Run entirely in the browser with no server calls, so your clue text never leaves your device
How this tool works
The tool takes a cryptic clue as input and an optional answer pattern. It first scans the clue for indicator words associated with each of the six supported clue types. The indicator lists are hardcoded: anagram indicators include "confused," "mixed," "jumbled," and similar words suggesting rearrangement. Hidden word indicators include "hidden," "contained in," and "within." Reversal indicators include "back," "returned," and "up." Charade indicators include "and," "with," and "plus." Container indicators include "around," "about," and "enclosing." Subtraction indicators include "without," "less," and "minus."
When an anagram indicator is found, the tool removes the indicator word from the clue, strips non-letter characters, and treats the remaining letters as fodder. It then searches the word list for words of the same length that are anagrams of the fodder (compared by sorting letters alphabetically) and that match the answer pattern if one was provided.
For hidden word clues, the tool concatenates the clue's letters (ignoring spaces) and slides a window of the answer length across the string, checking each substring against the dictionary. It also checks substrings within individual words. This catches both the straightforward hidden word (where the answer appears consecutively in the clue) and cases where it spans word boundaries.
The tool reports detected types, analysis details (indicator found, fodder letters, match counts), and a deduplicated list of suggested answers sorted by length then alphabetically. Results are capped at 100. The analysis updates on every keystroke via React's useMemo.
How cryptic clue types work (Ximenean conventions)
Cryptic crosswords originated in the UK and are the standard format in British newspapers. The Times published its first cryptic crossword in 1930, and The Guardian, The Telegraph, and The Independent all run daily cryptics. Unlike American-style crosswords where clues are straight definitions, cryptic clues combine a definition with wordplay, and both point to the same answer.
The conventions of cryptic clue writing were largely shaped by Derrick Somerset Macnutt, who set puzzles under the pseudonym Ximenes for The Observer from 1939 to 1971. His book "Ximenes on the Art of the Crossword" (1966) established principles of fairness: every clue should have a single unambiguous parsing, indicators should be clear, and the definition should appear at one end of the clue. These principles are now called the Ximenean school (Wikipedia: Ximenes).
Don Manley, who sets puzzles under the pseudonym Duck, wrote "Chambers Cryptic Crosswords and How to Solve Them" (published by Chambers), which remains a standard reference for solvers learning the craft. It catalogs indicator words for each clue type and walks through hundreds of worked examples. The clue types this tool detects are the same ones Manley describes: anagram, hidden word, reversal, charade, container, and subtraction (sometimes called deletion).
A typical anagram clue: "Strange baker (5)" where "strange" is the indicator and BAKER is the fodder, giving BREAK. A hidden word clue: "Pet in the area (3)" where TIGER appears hidden in "the area" (no, that does not work), but "cat hidden in scattered" would give CAT from the letters of "scat." A reversal clue: "Returned beer (4)" where beer reversed gives REEB (not a word), but "returned flow (4)" gives WOLF from FLOW reversed. The tool detects the indicator and applies the corresponding transformation.
For standard (non-cryptic) crossword solving with pattern matching, use the Crossword Clue Solver. For anagram-only solving without clue analysis, the Anagram Solver handles that directly. For unscrambling jumbled letters, see the Word Scramble Solver.
How to use this tool
- Paste the full cryptic clue into the main input field. Include all words, as the indicator detection scans the entire clue text
- Optionally enter the answer pattern in the pattern field. Use ? for unknown letters, such as ????? for a 5-letter answer. This filters candidates by length and known letters
- Read the detected clue type(s) in the settings panel. The tool lists every type whose indicator words appear in the clue
- Check the analysis details. For anagram clues, you will see the indicator word, the extracted fodder letters, and the match count. For hidden word clues, you will see the number of hidden words found
- Review the suggested answers. They are sorted by length then alphabetically, deduplicated, and capped at 100 results
- If no types are detected, the clue may use an indicator word not in the tool's list, or it may be a double definition or &lit clue, which this tool does not parse
Real-world examples
Anagram clue with indicator detection
Clue: "Confused baker in restaurant (5)." The tool detects "confused" as an anagram indicator. It removes the indicator and extracts the fodder from remaining letters. The word BAKER (5 letters) is the fodder, and the tool finds BREAK as an anagram. If you enter the pattern ????? it confirms a 5-letter answer. The analysis shows: indicator "confused," fodder "BAKER," and the anagram match.
Hidden word clue spanning word boundaries
Clue: "Cat hidden in scattered debris (3)." The tool detects "hidden" as a hidden word indicator. It concatenates the clue letters (ignoring spaces) and slides a 3-letter window across, checking each substring against the dictionary. If the answer CAT appears within the concatenated letters of the clue, it surfaces as a candidate. The tool also checks substrings within individual words, so a hidden word inside a single long word is also caught.
Reversal indicator with pattern filtering
Clue: "Returned flow (4)" with pattern ????. The tool detects "returned" as a reversal indicator. While the tool does not perform full reversal solving (reversing the letters of a synonym), it flags the clue type so you know to look for a reversed word. FLOW reversed gives WOLF, which the tool would find if it appears as a dictionary match for the pattern. The detection tells you the solving strategy to apply manually.
Multiple indicator types in one clue
Clue: "Mixed up and hidden inside (6)." The tool detects both "mixed up" (anagram indicator) and "hidden" (hidden word indicator). It runs both solving strategies: extracting fodder for anagram search and scanning for hidden words. The results list shows candidates from both approaches, deduplicated. This is common in complex cryptic clues that combine wordplay types.
Comparison with similar methods
| Method | Complexity | Typical use |
|---|---|---|
| This tool (indicator detection + dictionary) | O(n * L) per clue type, n = word count | Detecting clue type and finding anagram or hidden word answers |
| Crossword Clue Solver | O(n * L) per search | Standard crosswords with pattern matching and clue ranking |
| Anagram Solver | O(n * L log L) with sorted comparison | Pure anagram finding without clue type detection |
| Word Scramble Solver | O(n * L log L) | Unscrambling jumbled letters without a clue context |
| Manual cryptic solving (Ximenean) | Human analysis per clue | Complex clues with double definitions or &lit constructions |
Limitations or considerations
The tool detects six clue types: anagram, hidden word, reversal, charade, container, and subtraction. It does not handle double definition clues (two definitions side by side with no wordplay), &lit clues (where the entire clue is both definition and wordplay), or homophone clues (indicated by "sounds like" or "we hear"). These require semantic understanding that a dictionary scan cannot provide.
For anagram and hidden word types, the tool actively searches for answers. For reversal, charade, container, and subtraction types, it detects the indicator and flags the clue type but does not perform the full wordplay transformation, because those types require synonym lookup (finding a word that means X, then reversing or combining it) which needs a thesaurus, not just a dictionary.
The indicator word lists are not exhaustive. Setters use creative and unusual indicators that no fixed list can cover. If the tool reports "Unknown" for clue type, the clue may still be solvable manually. The tool is a starting point, not a complete solver. For standard crossword pattern matching, use the Crossword Clue Solver.
Frequently asked questions
What is the difference between a cryptic crossword and a regular crossword?
In a regular (American-style) crossword, each clue is a straight definition of the answer. In a cryptic crossword, each clue contains both a definition and wordplay that point to the same answer. The definition appears at one end of the clue, and the wordplay (anagram, hidden word, reversal, or other mechanism) fills the rest. Cryptic crosswords are standard in UK newspapers like The Times and The Guardian.
Which clue types does this tool actually solve?
The tool actively searches for answers in two cases: anagram clues (it extracts the fodder and finds dictionary anagrams) and hidden word clues (it scans the clue text for embedded dictionary words). For reversal, charade, container, and subtraction types, it detects the indicator and flags the clue type, but does not perform the wordplay transformation because that requires synonym lookup.
What is a fodder in cryptic crosswords?
Fodder is the set of letters that get rearranged in an anagram clue. The indicator word (such as "confused" or "mixed") signals that the adjacent letters should be rearranged. This tool removes the indicator word from the clue and treats the remaining letters as fodder, then searches for dictionary words that are anagrams of those letters.
Why does the tool detect multiple clue types for one clue?
Some clues contain words that serve as indicators for more than one type. For example, "back" can be a reversal indicator or part of the definition. The tool reports every type whose indicator words appear, so you can consider multiple solving strategies. Complex cryptic clues sometimes combine two wordplay mechanisms, so multiple detections can be correct.
Can this tool solve every cryptic clue?
No. It handles anagram and hidden word clues with dictionary search, and detects indicators for four other types. It does not handle double definitions, &lit clues, or homophone clues. It also cannot find synonyms for charade or container clues. For those, you need to solve manually or use a full crossword dictionary with thesaurus lookup. The tool is designed to speed up the mechanical parts of cryptic solving.
Who was Ximenes and why does he matter?
Derrick Somerset Macnutt set cryptic crosswords for The Observer under the pseudonym Ximenes from 1939 to 1971. His book "Ximenes on the Art of the Crossword" (1966) established fairness principles for clue writing: unambiguous parsing, clear indicators, and definitions at one end. These conventions, called the Ximenean school, are followed by most mainstream UK setters today.
Conclusion
Cryptic crosswords are a learned skill, and this tool handles the mechanical parts: detecting the clue type from indicator words, extracting anagram fodder, and scanning for hidden words. It will not solve every clue, but it speeds up the most common types. For standard crossword solving with pattern matching, use the Crossword Clue Solver. For pure anagram finding, the Anagram Solver works without clue analysis. For unscrambling jumbled letters in any context, see the Word Scramble Solver.