Length limits worth keeping handy
Most word-count questions are really "will this fit?". These are the limits people hit most often, so you can check a draft against the destination before you paste it somewhere:
| Where | Limit | Counted in |
|---|---|---|
| X / Twitter post | 280 (Premium up to 25,000) | characters |
| Instagram caption | 2,200 | characters |
| SMS (single segment) | 160 | characters |
| SEO meta description | ~155–160 | characters |
| SEO title tag | ~60 | characters |
| Git commit subject | ~50 (recommended) | characters |
| College essay (Common App) | 250–650 | words |
Exactly what's being counted
Different tools disagree on edge cases, so here is the rule each number above uses — no surprises:
- Words — runs of non-whitespace separated by spaces, tabs or line breaks.
well-knownis one word;42is one word. This matches how Word and Google Docs count. - Characters — every character including spaces. "No spaces" strips all whitespace.
- Sentences — segments ending in
.,!or?. Abbreviations like "Dr." will over-count slightly; this is true of every regex-based counter. - Reading time — words ÷ 238 wpm (the common figure for silent reading of online prose). Speaking time uses 150 wpm, a typical presentation pace.
Gotcha — languages without spaces. Chinese, Japanese and Thai don't put spaces between words, so the word count will be wrong for them. Use the character count instead — it's the meaningful unit for those scripts.
Is there an ideal length?
For most writing the honest answer is no — cover the topic fully and stop. For SEO in particular there is no magic word count; a complete 700-word answer can outperform a padded 2,000-word one, and search engines reward usefulness, not length. Where a hard cap exists (an abstract, a form field, an ad headline) the limits table above is what to check against. Everywhere else, treat length as a result of saying what needs saying, not a target to hit.
When "words" stop being the right unit
Word counting assumes spaces separate words, which is an English assumption that breaks the moment you leave it. Chinese, Japanese and Thai write without spaces, so a word count for them is meaningless and the character count is the unit that matters. Agglutinative languages like Finnish, Turkish and German pack what English says in several words into one long one, so the same idea has a much lower word count. None of that means the counter is broken; it means "300 words" describes English-shaped prose and should be read with a pinch of salt for anything else. For non-spaced scripts, switch your attention to the character count above.
Long isn't the same as good
It's worth being blunt about this, since chasing a word count is what got a lot of thin pages penalized. Search engines don't reward length; they reward answering the question. A focused 700-word page that fully covers a topic routinely outranks a padded 2,000-word one stuffed to hit a target, and Google's own guidance points at usefulness and depth, not a number. Use a word count as a sanity check against hard limits — an abstract's cap, an ad headline, a meta description — and otherwise let length fall out of saying what needs saying. The fastest way to make writing worse, for readers and for ranking alike, is to inflate it to reach a figure.
In an academic word count, do footnotes and citations count?
It depends entirely on the style guide or assignment rules — some include footnotes and block quotes, others exclude them, and reference lists are usually excluded. Check the specific requirement, because the same essay can be "over" or "under" depending on which rule applies.
Does the word count work for Chinese or Japanese?
Not meaningfully — those languages don't separate words with spaces, so the character count is the unit to use instead. The word count is reliable for space-separated languages like English.
Is there an ideal article length for SEO?
No fixed number. Cover the topic thoroughly rather than chasing a word count — a focused 700-word answer can beat a padded 2,000-word one. Length should follow the content, not lead it.
Is my text uploaded anywhere?
No. Counting happens in JavaScript on your device. Nothing is sent to a server — you can confirm this in your browser's Network tab while typing.
Why does my count differ from Microsoft Word?
Usually the sentence count. Word and most online tools split on terminal punctuation, so decimals ("3.5") and abbreviations ("e.g.") can shift the number by one or two. Word and character counts almost always match.
How accurate is the reading-time estimate?
It's a guide, not a stopwatch. 238 wpm is an average for online reading; dense technical text reads slower (150–200 wpm) and skimmed copy faster (300+). Treat it as a planning number.
Can I paste from a PDF or Word file?
Yes — copy the text out of the document and paste it in. The tool works on plain text, so formatting is ignored and only the words and characters are counted.