counter-word

Word count vs character count

Word counts measure effort. Character counts measure space. Almost every situation calls clearly for one or the other.

The short version

If a human will read it and judge how much you wrote, it is a word count. If a machine must fit it into a box, it is a character count.

SituationMeasureWhy
Essay or dissertationWordsProxy for research and argument
Journalism briefWordsMaps to column space
Translation quoteWords or charactersWords for European languages, characters for CJK
Social media postCharactersFixed field width
Meta descriptionCharactersFixed pixel width in results
SMSCharactersFixed message encoding
Database fieldCharactersFixed storage allocation
Application formEither — read carefullyVaries; forms often truncate silently

Why the ratio is unreliable

The rule of thumb is about 5.7 characters per English word including the following space, so 100 words is roughly 570 characters. It is fine for a rough sanity check and dangerous near a limit.

Vocabulary moves it a long way. Technical or academic prose with long Latinate words can exceed seven characters per word, while conversational writing full of short function words can drop under five. A 500-character limit might hold 70 words of one and 100 of the other.

When a form just says “limit”

Default to characters with spaces, since that is what web forms nearly always enforce. Two behaviours are worth knowing about.

  • Silent truncation. Many forms accept a long paste and store only what fits, with no warning. Your final sentence simply vanishes.
  • Client-side counters that lie. Some count words while the server counts characters, or count differently from how they store.
  • Test before you submit. Paste, save, reload the page and read what came back. It takes thirty seconds and catches both problems.
For anything that matters: an application, a submission, a job posting. Check the saved version rather than trusting the counter beside the box.

Common questions

How many characters is 500 words?

Roughly 2,800 to 3,000 characters including spaces, but the range is wide. Technical writing with long words can exceed 3,500; conversational writing may come in under 2,600.

Does 'characters' include spaces?

Almost always, yes. Unless a form explicitly says “excluding spaces”, assume every space, tab and line break counts.

Which is better for measuring writing?

Neither measures writing. Both measure length. Word counts correlate slightly better with effort, which is why education and publishing use them; character counts correlate with space, which is why software uses them.

Tools for this