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.
| Situation | Measure | Why |
|---|---|---|
| Essay or dissertation | Words | Proxy for research and argument |
| Journalism brief | Words | Maps to column space |
| Translation quote | Words or characters | Words for European languages, characters for CJK |
| Social media post | Characters | Fixed field width |
| Meta description | Characters | Fixed pixel width in results |
| SMS | Characters | Fixed message encoding |
| Database field | Characters | Fixed storage allocation |
| Application form | Either — read carefully | Varies; 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.
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
- Character counterWith spaces, without spaces, letters and digits.
- Word counterWords, characters, sentences and reading time, live.
- What is a word count?What counts as a word, and why tools disagree.
- Twitter character counterX / Twitter limit, checked live.
- Meta description counterLive check against the ~155 character limit.