What Are Tokens in AI? A Plain-English Guide
Models do not read words. They read tokens. Once you see how text gets chopped up, cost and context limits stop being mysterious.
A token is the unit an AI model actually reads. Models do not process whole words or single letters; they break text into small chunks called tokens, and one token is about four characters of English, or roughly three-quarters of a word. Your prompt, the model’s reply, and every file you attach all get counted in tokens. That count is what decides your bill and what fits in a single request.
What a token actually is
A token is a small piece of text, most often a short word or a fragment of a longer one. The word cat is a single token. A word like tokenization gets split into several pieces, maybe token, iz and ation. Common words tend to be one token each, while rare or long words break apart. Spaces and punctuation get folded in too, so the with its leading space is usually one token.
The reason you keep seeing the same rule of thumb is that it holds up well: one token averages about four characters in English, which works out to roughly 0.75 words. It is an average, not a rule, so a sentence full of short words lands lower and a sentence stuffed with technical terms lands higher. If you want to watch plain text turn into tokens in front of you, the token counter shows the split for any text you paste.
Why models use tokens instead of words or letters
Tokens are a compromise that sits between two worse options. Feeding a model one letter at a time would make even a short sentence a long sequence to process, and the model would have to relearn spelling from scratch every time. Feeding it whole words has the opposite problem: a fixed word list can never cover every name, typo, slang term or word in another language, so anything unseen becomes a blank.
Tokens split the difference. A tokenizer keeps common words whole for speed and chops rarer words into reusable pieces, so the model can still handle a word it has never met by assembling it from parts. That is why unhappiness can become un, happi and ness, and why the model copes fine with a brand name it saw only once in training. The tradeoff is that you now count in tokens rather than words, which takes a moment to get used to.
How many tokens is a word?
The short answer is that one token is about 0.75 words, so a word is a bit more than one token on average. A few anchors make it concrete:
- 1 token is roughly 0.75 words, or about four characters.
- 1,000 tokens is around 750 words.
- A page of prose runs near 650 tokens, so a typical page is comfortably under a thousand.
These are English-prose figures, and real text wanders around them. The sentence you are reading is close to the average; a block of dense code or a table sits well above it. Rather than guess, you can paste the exact text into the token counter and see the number for your own writing.
Why tokens matter: cost and limits
Tokens are not just trivia. They decide two things you feel directly: what you pay and what fits.
On cost, nearly every AI API bills by the token, and it counts both directions. The tokens you send in and the tokens the model writes back each carry a price, and output usually costs more than input. A single request looks cheap, but multiply it across a busy app and the maths starts to matter. The full breakdown of what AI APIs cost walks through the numbers if you are building something.
On limits, every model can only read so many tokens at once. That ceiling is the context window, and once your prompt plus the conversation so far runs past it, the oldest text falls off and the model can no longer see it. To check whether a given document will fit a given model before you send it, the context window calculator does the arithmetic for you.
What uses more tokens
The 0.75-words rule assumes ordinary English. Push past that and the token count climbs, sometimes sharply. A few things reliably cost more than they look:
- Code. Brackets, indentation, variable names and symbols each add tokens, so a screen of code eats more than the same screen of prose.
- Other languages. Many languages, especially ones that do not use the Latin alphabet, split into more tokens per word than English does, so a translated passage can cost noticeably more.
- Emoji and unusual symbols. A single emoji often takes several tokens, since the model stores it as a small string of underlying pieces.
- Heavy formatting. Tables, JSON, Markdown and long strings of numbers pack in extra tokens through all their structure and punctuation.
None of this is a problem to avoid; it is just useful to expect. If a bill or a context limit comes in higher than you guessed, one of these is usually the reason.
Practical ways to use fewer tokens
You do not need to obsess over counts, but a few habits keep them down without hurting your results. Cut the filler from your prompts, since polite padding and repeated instructions add up. When you attach a document, paste the section that matters rather than the whole thing. Start a fresh chat when the subject changes, so a long history stops getting resent on every turn. And if you work in code or another language, budget for higher counts from the start instead of being surprised later.
Tokens sit underneath a lot of AI behaviour, from pricing to why a long chat forgets its own beginning. Once they click, the rest gets easier to reason about. For the wider picture, the AI literacy guide connects tokens to the other ideas worth knowing.
Frequently asked questions
What is a token?
A token is a chunk of text an AI model reads and generates, usually a short word or a piece of a longer one. In English a token averages about four characters, so it lands near three-quarters of a word. Models never see letters or whole words the way you do; they see a stream of these tokens.
How many tokens is a word?
One token is roughly 0.75 words in English, so 1,000 tokens is about 750 words and a typical page of prose is around 650 tokens. Short common words are one token each, while long or rare words split into several. Numbers, code and other languages run higher than the average.
Why do tokens cost money?
Running a model takes real computing power, and that cost scales with how much text it processes. So AI APIs bill per token, counting both what you send in and what the model writes back. More tokens means more computation, which is why a long document or a chatty back-and-forth costs more than a quick question.
Do ChatGPT and Claude count tokens the same way?
No. Each model family uses its own tokenizer, so the same sentence can split into a slightly different number of tokens depending on whether it is ChatGPT, Claude or Gemini. The rules of thumb still hold across all of them, but for an exact count you need to check with the specific model's own counter.
Does everything I type count as tokens?
Yes, and so does everything the model has already said. Your prompt, any files you attach, the earlier turns of the conversation and the reply being written all get counted. That running total is what fills up a context window and what shows up on an API bill.
How can I use fewer tokens?
Trim filler from your prompts, paste only the part of a document that matters, and start a fresh chat when the topic changes so old turns stop riding along. If you write code or work in another language, expect higher counts and plan for them. A token counter makes the effect of each change easy to see.
The Scroll Team writes the lessons inside Scroll: Learn AI, a microlearning app that teaches how AI works in one minute a day. We read the papers and release notes so you do not have to.
