Character Count vs Word Count
Character count measures every keystroke; word count measures groups separated by whitespace. Machines count characters because storage and display width are finite, so almost every platform limit is a character limit. People count words because it estimates effort and reading time. Use characters when something enforces a limit, words when a human specified the length.
Character Counter
Count characters with and without spaces, live as you type.
These are not competing measures of the same thing — they answer different questions. "Will this fit?" is a character question, because a database column, an SMS payload and a search result snippet are all bounded in characters or pixels. "How long is this?" is a word question, because words track reading time and effort in a way characters do not.
The confusion arises because both are reported by the same tools and people treat them as interchangeable. A 500-word article and a 3,000-character article are roughly the same thing; a 500-word article and a 500-character article are not remotely.
What each one counts
- Characters: every letter, digit, punctuation mark, space and line break. "Hello world" is 11 characters.
- Characters excluding spaces: the same, minus whitespace. "Hello world" is 10.
- Words: runs of non-whitespace. "Hello world" is 2 words.
- The rough conversion for English prose is 5 to 6 characters per word including the following space — so 500 words is roughly 2,500 to 3,000 characters.
Why machines count characters
Because "word" is not a well-defined unit to a computer. Is "state-of-the-art" one word or four? Is an emoji a word? Chinese and Japanese are written without spaces, so a naive word count returns one word for an entire paragraph. Characters have none of these problems: the count is unambiguous, cheap to compute and maps directly onto storage and display width. That is why essentially every platform limit — X, Instagram, SMS, meta descriptions, database columns — is expressed in characters.
Why people count words
Because words estimate effort and time. A 2,000-word essay means something to a student and a marker; 12,000 characters does not. Reading speed is measured in words per minute, typically 200 to 250 for adults, which makes word count the natural input for a reading-time estimate. Academic and editorial requirements are almost always specified in words for exactly this reason.
Where the difference bites
Four cases where picking the wrong measure causes real problems.
- Spaces. "Characters with spaces" and "characters without" can differ by 15 to 20 per cent. Platforms count spaces; some academic limits do not. Check which is meant before trimming.
- Emoji and non-Latin text. Most systems count UTF-16 code units, so an emoji counts as two and a family emoji as eleven or more. A word count is unaffected, which is why a caption can pass a word check and still be rejected.
- CJK languages. Chinese, Japanese and Korean are written without spaces, so word count is meaningless and character count is the only sensible measure.
- URLs. A link is one word and often sixty characters. One link can consume a fifth of an X post while barely moving a word count.
Which to write to
- A platform, form or database enforces the limit → characters.
- A person or a brief specified the length → words.
- Estimating reading or speaking time → words.
- Writing in a language without spaces → characters.
- A search result or ad must fit → characters, and really pixel width.
- Comparing your draft against a competitor's → words, as the fairer comparison across writing styles.
Frequently asked questions
How many characters is 500 words?
Do character limits include spaces?
Why does my text pass a word count but fail a character limit?
Which should I use for SEO?
Does word count work for Chinese or Japanese?
Tools used in this guide
All tools →- Character Counter Count characters with and without spaces, live as you type. In your browser
- Word Counter Count words, sentences and paragraphs while you write. In your browser
- Sentence Counter Count sentences and see the average sentence length. In your browser
- Line Counter Count total, non-empty and unique lines in any list. In your browser
- Readability Checker Score how hard your writing is to read. In your browser
- Reading Time Calculator Estimate how long an article takes to read or speak aloud. In your browser
Related guides
All guides →- How to Write Meta Tags The head tags that actually matter, what to put in them, and the ones to ignore.
- UTF-8 vs UTF-16 Two encodings of the same character set, and why string lengths disagree between languages.
- How to Fix Broken Characters in Text Diagnose mojibake, question marks and invisible characters, and repair the text.
Last reviewed .