What is a semantic word game? (Like Wordle, but for meaning)
Last updated: 2026-07-25
A semantic word game asks you to find a secret word — but instead of telling you which letters you got right, it tells you how close each guess is in meaning. Guess ocean when the secret is whale and you'll run warm. Guess calculator and you'll freeze. There's no spelling trick to crack; you win by thinking about what words are about, hopping from concept to concept until the trail gets hot. If you've ever played the childhood game of "hotter… colder…" while someone hunts for a hidden object, you already understand the whole genre. The interesting part is how a computer can measure "closeness in meaning" at all — and why that makes for such a satisfying puzzle.
Wordle vs. semantic games
Wordle is a spelling puzzle. You get six tries at a five-letter word, and every guess comes back annotated letter by letter: this one's correct, this one's in the wrong spot, this one's not in the word at all. Solving it is deduction — narrowing down the alphabet like a detective crossing suspects off a list.
Semantic games change almost every one of those rules. In most of them you can guess nearly any word, not just five-letter ones. You get dozens of guesses instead of six — a round might take eight guesses or eighty. And the feedback says nothing about letters: piano and pianist may score very differently, while piano and violin score nearly the same. It exercises a different mental muscle. Wordle rewards letter logic; semantic games reward vocabulary breadth and conceptual association — the knack for asking "okay, if kitchen is warm and fire is cold, what lives near kitchens but not near fires?" Plenty of people love both, the way you might love both sudoku and crosswords.
A tiny history
Wordle was created by Josh Wardle, a software engineer who built it as a gift for his partner. It went public in late 2021, exploded in early 2022, and its daily format — one shared puzzle, everyone on earth solving the same word — turned out to be the real invention. That format inspired a wave of daily puzzles across every domain imaginable.
One of the cleverest was Semantle, released by David Turner in 2022. Semantle pioneered embedding-based daily word guessing: it scored each guess by its similarity to the secret word using word embeddings — a technique from natural-language research — and let you guess as many times as you liked. It proved that "closeness in meaning" could be a game mechanic, and a genuinely absorbing one.
Hot & Cold builds on that idea. Same core loop — guess, get a closeness score, triangulate — with its own take on feedback, hints, scoring, and multiplayer, which we'll get to below. Credit where it's due: without Wordle's daily ritual and Semantle's embedding insight, this genre wouldn't exist.
How word embeddings work, in plain English
Word embeddings are the machinery behind every semantic word game, and the idea is friendlier than it sounds. A language model reads an enormous amount of text and learns which words keep company with which — doctor shows up near hospital, patient, and nurse; anchor shows up near ship, rope, and harbor. From those patterns, it assigns every word a set of coordinates in a high-dimensional space, placing words that appear in similar contexts near each other. Each word becomes a point on a map — just a map with far more than two dimensions.
Once words are points, "closeness in meaning" becomes plain geometry: measure the distance between two points. Nearby words are related; distant words aren't. Hot & Cold uses 1,024-dimensional vectors from a modern language model and compares them with cosine similarity — essentially measuring the angle between two words' directions on the map. Everything is precomputed for a curated list of 14,828 words, so no AI runs while you play: the same guess against the same secret produces the same result for every player, every time. That determinism matters. When you compare notes with a friend about today's puzzle, you're describing the exact same landscape. The FAQ digs deeper into how the similarity math behaves in practice.
Why rank beats raw similarity
Here's a subtle design problem: raw similarity numbers are meaningless to humans. If a game tells you your guess scored 0.42, what do you do with that? Is 0.42 good? Is the gap between 0.42 and 0.48 significant? Cosine similarities don't spread evenly — most word pairs cluster in a narrow band, so the raw number gives you very little feel for progress.
Rank fixes this. Instead of the raw score, Hot & Cold sorts the entire word list by closeness to the secret and tells you where your guess lands: #37 of 14,828 is instantly legible in a way 0.42 never will be. You know exactly how much list is left, and every guess slots into the same ranked list. Ranks then roll up into a ladder of emoji heat bands, and the bands narrow fast. For any given secret, the overwhelming bulk of those 14,828 words rank as freezing — a random guess almost always lands there — and from there each band is a sharp cut: cold reaches roughly the top 3,000, cool the top ~600, warm the top ~120. Hot means you're already inside the top 24 or so, and blazing is rarer still — roughly the top 6 words, one step from rank #1 and the 🎯 solve. The how-to-play guide walks the full ladder, emoji by emoji.
The bands are log-scaled, because progress feels logarithmic: jumping from rank 8,000 to rank 800 is one insight, and from 80 to 8 is another of about the same size.
Why "related" sometimes surprises you
New players are often startled when an opposite runs hot. If the secret is day, then night will rank very close — which feels wrong until you remember what embeddings actually measure. They capture association, not just synonymy. Day and night appear in the same sentences, the same comparisons, the same idioms; by the "words that keep company" standard, they're practically roommates. The same goes for co-occurring pairs: cup runs hot for coffee, saddle for horse.
Once you stop expecting a thesaurus, this becomes the best part of the game. A surprising hot guess is information: it tells you what the secret's neighborhood looks like, even when the connection isn't the one you predicted. Good players learn to read those surprises — "winter is blazing but snow is merely hot, so maybe the secret is about the season, not the weather." If you enjoy that kind of reasoning, our tips page goes deeper on triangulation strategy.
What makes Hot & Cold different
Hot & Cold is our take on the genre (the about page has the story of who builds it and why), and a few choices set it apart. The heat ladder above turns every guess into instant, glanceable feedback. And the word list is deliberately curated rather than anything-goes: mostly common singular nouns, with only the most familiar ~6,500 of them eligible to be the secret. That's a fairness decision — when the answer is revealed, the reaction should be "of course," not "that's a word?"
When you're stuck, hints reveal a cluster of three clue words drawn from neighboring ranks, sketching the secret's neighborhood rather than handing you a single stepping stone. Each round tops out at 1,000 points: the first 4 guesses cost nothing, later ones add a penalty that grows on a gentle logarithmic curve, and hints are charged by how much they actually helped — a hint that beats your best guess costs real points; one that doesn't is free.
You can play three ways. Daily is the shared ritual the genre inherited from Wordle: one secret for the whole world, rolling over at 00:00 UTC, with a streak to protect and an optional leaderboard attached. Endless hands you round after round of practice with settings you control, including an optional countdown timer — and on iOS and Android it runs fully offline. Challenge brings friends in asynchronously: one shared link puts a whole room on the same secret for a series of rounds, with podium-style points carrying over from round to round. Nobody can leak the answer, even by accident: all that ever passes between players is each guess's rank and the guesser's display name. It's free, and no account is required for any of it.
Try it yourself
The fastest way to understand a semantic word game is to lose your first one — everybody does, and round two is where the genre clicks. Play today's puzzle, or read how to play first if you'd like the rules in two minutes. Either way, pack a warm coat — the first few guesses are almost always freezing.