Two Different Measurements
When you measure text length, you can count words or characters – and they are not interchangeable. Which one matters depends entirely on where your content is going.
Using the wrong metric leads to content that gets cut off, rejected by a platform, or penalized by an algorithm. Here is a practical guide to which metric applies where.
Character Count: Where Every Character Is Literal
Systems that display text in a fixed-width space or transmit it over size-constrained channels measure characters, not words.
SMS / text messages
The classic SMS limit is 160 characters for a single message (GSM-7 encoding) or 70 characters if your message contains any Unicode character (emoji, accented letters, etc.). Carriers automatically split longer messages into segments billed separately.
Social media character limits
| Platform | Limit |
|---|---|
| X (Twitter) | 280 characters |
| Bluesky | 300 characters |
| LinkedIn post | 3,000 characters |
| Instagram caption | 2,200 characters |
| YouTube description | 5,000 characters |
SEO meta fields
Search engines display meta titles and descriptions based on pixel width, not character count – but character count is a useful proxy:
- Meta title: aim for 50–60 characters (longer titles get truncated in SERPs)
- Meta description: aim for 150–160 characters
HTML attributes and database fields
When storing content in a database column with a character limit (e.g., VARCHAR(255)), character count is what hits the constraint, not word count.
URL slugs
URLs should be short and readable. A 3–5 word slug is generally a good target, but the character count matters for avoiding very long URLs that get truncated in share previews.
Word Count: Where Reading Time and Depth Matter
Word count is most relevant when the metric reflects content depth rather than transmission constraints.
SEO content length
Search engines do not rank by word count directly, but there is a correlation between longer, more thorough content and higher rankings for competitive informational queries. A general guide:
- Short-form blog post / FAQ answer: 300–600 words
- Standard article: 800–1,500 words
- Pillar page / complete guide: 2,000–5,000 words
Word count is a proxy for coverage, not quality. A 300-word answer that directly addresses a query can outrank a 3,000-word article that buries the answer.
Academic and professional writing
Essays, reports, and legal documents set word count limits: "Submit a 2,000-word analysis." Word count here signals expected effort and depth.
Reading time estimation
Word count converts directly to estimated reading time. The average adult reads ~200–250 words per minute. Divide your word count by 238 for a reliable reading time estimate.
The Nuance: Counting in Different Languages
Word count is not a universal concept. Languages like Chinese, Japanese, and Korean do not use spaces between words, so word count is meaningless – character count (or token count) is the relevant metric. Even in European languages, compound words mean German sentences tend to have fewer but longer words than equivalent English sentences.
If you are writing for a multilingual audience or comparing translated content, character count is a more stable measurement across languages.
Measuring Both at Once
The Word Counter on this site shows word count, character count (with and without spaces), sentence count, paragraph count, and estimated reading time simultaneously. Paste your draft and check all the metrics before publishing.
Quick Reference
| Context | Metric to watch |
|---|---|
| SMS | Characters (≤160 GSM, ≤70 Unicode) |
| Tweet / social | Characters |
| Meta title | Characters (~55) |
| Meta description | Characters (~155) |
| Blog article | Words |
| Academic essay | Words |
| Database column | Characters |
| Reading time | Words ÷ 238 = minutes |