Tokens· 6 min read

Word Count vs Token Count

You count text in words. An AI model counts it in tokens. Those two numbers are almost never the same, and the gap is why a document that looks short to you can be too long for the model. Here is how the two counts differ, and how to convert between them in your head.

Two different ways to count the same text

A word is a unit you already understand. You can see where one word ends and the next begins. A token is different. It is a chunk of text the model reads as one piece, and that chunk does not respect the spaces between words.

A short, common word is usually one token. A longer or rarer word gets broken into two, three, or more tokens. Punctuation and spaces count too. So the same sentence has one word count and a higher token count, and the two only line up by accident.

The same sentence, counted both ways

Take this sentence: “Tokenization is surprisingly simple.” Four words. But here is how a model tends to break it into tokens.

Tokenization·is·surprisingly·simple.

4 words, but 7 tokens. “Tokenization” alone splits into two pieces, and “surprisingly” splits into two more. The leading dot marks a space that travels with the word.

A simple rule to convert in your head

For plain English, the numbers work out close to this:

  • 100 tokens ≈ 75 words
  • 1,000 words ≈ 1,300 to 1,400 tokens
  • To go from words to tokens, add about a third

So if your word processor says 1,000 words, plan for roughly 1,350 tokens. That small habit stops you from being surprised when a model rejects a document you thought was well within its limit.

When the ratio shifts

The one-third rule holds for normal English prose. It breaks down when the text is unusual, and knowing when helps you avoid nasty surprises.

  • Code, numbers, and symbols use more tokens per character than plain words.
  • Other languages, especially ones that do not use spaces, can cost far more tokens.
  • Names, technical terms, and made-up words split into many small pieces.

How to estimate tokens in your head

You rarely need an exact count. You just need a good enough guess to know if your text will fit or what it might cost. Here are three quick ways, from roughest to closest.

From words

Take your word count and add about a third. 1,000 words is roughly 1,350 tokens. This is the fastest check when your word processor already shows a word count.

From characters

Divide the character count by four. This is handy for short text like a single prompt, where counting words is awkward.

From pages

One page of normal text is very roughly 500 words, so about 650 to 700 tokens. Useful for guessing whether a long document will fit.

For anything that has to be exact, like staying just under a hard limit, use a real token counter rather than a guess. For everyday planning, these estimates are plenty.

Where the difference bites you

The gap between words and tokens is not just a curiosity. It shows up in two ways that can catch you out.

The first is limits. Every model can only handle so many tokens at once. If you paste a document that looks fine by word count, it may still be too long once counted in tokens, and the model will cut part of it. Planning in tokens, not words, stops that surprise.

The second is cost. Paid AI tools charge by the token. Because tokens run higher than words, a job that feels short by word count can cost more than you expect, especially if it involves code or another language. Knowing the real ratio helps you budget.

Why the model bothers with tokens at all

It would be simpler for us if models just counted words. But a model cannot keep a slot for every possible word in every language, plus every name and typo people invent. So it keeps a fixed set of common pieces and builds everything from those.

Tokens are the result of that trade. They let one system handle any text you throw at it. The cost is that the model's count of your writing will never quite match your own.