Hangman Game
Classic hangman word guessing game with ASCII art.
Sobre esta ferramenta
Play the classic Hangman word guessing game in your browser. A random word is chosen from a built-in 200-word list. You have 6 wrong guesses before the man is hanged. Watch the ASCII art gallows fill in as you make mistakes. Click letters on the on-screen keyboard or type them with your physical keyboard. Choose easy, medium, or hard difficulty to control word complexity. Used letters are highlighted so you never guess twice. Win by revealing the whole word before running out of guesses.
Como usar
- 1 Select a difficulty (Easy, Medium, or Hard) and click New Game.
- 2 Click a letter on the on-screen keyboard or press a key to make a guess.
- 3 Correct letters are revealed in the word; wrong guesses add to the hangman drawing.
- 4 Win by guessing all letters before 6 wrong guesses. The full word is shown at the end.
A guessing game that is really a probability problem
Hangman looks like a children's game, but underneath it is a clean exercise in deductive guessing under a strict budget. You have a hidden word, a fixed number of mistakes you can afford, and one decision to make each turn: which letter gives you the most information for the least risk. This version gives you exactly six wrong guesses. Each miss adds one piece to an ASCII-art gallows — head, torso, one arm, the other arm, one leg, the second leg — and the sixth completes the figure and ends the game. Reveal every letter of the word before that happens and you win.
How the game runs
At the start of each round the tool picks a random word from a built-in list of roughly 200 words split across three difficulty tiers. You guess by clicking the on-screen keyboard or simply typing on your physical keyboard — both feed the same logic. Every guessed letter is recorded so you can never waste a turn repeating one; on the keyboard, correct letters turn green and wrong ones grey out and disable. A subtle but important detail: a single guess reveals all occurrences of that letter at once. Guess e in ESTHETIC and both es appear together, costing you nothing extra. The win check is satisfied the moment every distinct letter in the word has been guessed, not letter-by-letter.
The difficulty tiers
| Level | Word style | Examples from the list |
|---|---|---|
| Easy | Short, common (3 letters) | cat, sun, map, key |
| Medium | Everyday words (5 letters) | apple, storm, piano, jewel |
| Hard | Long or uncommon (8+ letters) | labyrinth, xylophone, obsidian |
Difficulty does not change how many mistakes you get — it is always six. What changes is how much the length and letter mix work against you. Short words hide fewer letters but give fewer footholds; long words expose more positions but often hinge on rare letters like x, z, or q.
A worked example: cracking a medium word
Say the hidden word is STORM and it shows as _ _ _ _ _. Open with the most common English letters: E — miss (1/6). T — hit, revealing _ T _ _ _. O — hit, _ T O _ _. Now your brain has a pattern to work with. R and S are both high-frequency and fit naturally; guessing them gives S T O R _, and the final M is almost forced. You finished with a single wasted guess. The lesson: spend early turns on vowels and the letters R, S, T, N, L, because they appear in the largest share of English words, then switch to pattern-completion once you have a skeleton.
Strategy that actually moves the odds
- Vowels first, but not all of them.
E, A, Oare worth guessing early;Iand especiallyUare rarer, so hold them unless the pattern demands them. - Use word length as a prior. A three-letter word ending in a revealed vowel narrows the field fast. A long word with a
_ _ I N Gtail tells you it is probably a verb. - Mind common endings and doubles. Once you see a trailing
_ _, suspect-ER,-LY,-ED, or a doubled consonant likeLLorSS. - Save risky letters. Don't burn an early guess on
XorQin easy mode — those words rarely contain them, and a miss is permanent.
Common mistakes
The biggest one is guessing emotionally — trying the letter you "feel" is in the word instead of the letter that is statistically most likely given the blanks. Another is ignoring the keyboard's colour feedback and mentally re-litigating letters you have already eliminated. And many players forget that revealing positions, not just consonants, is the goal: in a five-letter word with two vowels already shown, the remaining three slots may be guessable by sight before you risk another letter.
Why it is good for more than fun
Hangman is a quiet vocabulary and spelling trainer. Playing on hard mode exposes you to words like vendetta, quandary, and zymology that rarely come up in conversation, and the act of reconstructing a word from partial information reinforces spelling far better than passive reading. It runs entirely in your browser with no network calls — the word list is bundled in the page, so nothing about your play is sent anywhere. That makes it a genuinely offline, distraction-free way to sharpen letter intuition between tasks.