How to use the Word Counter
Last verified 2026-08-08 · about 6 minutes to read
The short version
- 1.Paste or type your text. Use the box above. Nothing is sent anywhere — the count is calculated in this browser tab.
- 2.Read the counts. Words and characters update on every keystroke. Sentences, paragraphs and reading time appear underneath.
- 3.Match a specific limit. Turn off "include spaces" if your form counts characters without them, which most application forms do.
Why this is worth getting right
Most online word counters split text on whitespace. That is correct for English and wrong for roughly half the world: a 40-character Chinese sentence has no spaces and gets reported as one word. This tool uses Intl.Segmenter, the browser's own Unicode word-boundary implementation, so the count is right in every script.
Method 1 — use the Word Counter on this site
The fastest route. It runs entirely in your browser, so nothing is uploaded and there is no queue to wait in. No account is needed and there is no daily limit.
- Paste or type your text. Use the box above. Nothing is sent anywhere — the count is calculated in this browser tab.
- Read the counts. Words and characters update on every keystroke. Sentences, paragraphs and reading time appear underneath.
- Match a specific limit. Turn off "include spaces" if your form counts characters without them, which most application forms do.
Method 2 — do it without this site
Worth knowing, because a tool you cannot replace is a dependency rather than a convenience. Most tasks in the text division have a command-line or built-in equivalent; it is usually more setup and less convenient, but it works offline and it is scriptable, which matters once you are doing something a hundred times instead of once.
What this tool will not do
Every tool has an edge. These are ours for word counter, stated up front so you find out here rather than halfway through a deadline:
- Sentence counting is punctuation-based, so "Dr. Smith" is read as two sentences.
- Reading time is an average. Technical writing runs slower, fiction faster.
- Hyphenated compounds count as one word, matching most editorial style guides.
Questions people ask
How does this tool count words?
It uses the browser's Unicode text segmentation, which splits on real word boundaries rather than on spaces. That gives correct counts for Chinese, Japanese, Thai and Bangla, where a whitespace split would report one word for an entire sentence.
Does the character count include spaces?
Both numbers are shown. "Characters" includes spaces and line breaks; "characters without spaces" excludes all whitespace. Most CV forms and social platforms count the first, but application forms often count the second.
Is my text uploaded to a server?
No. The entire count runs in JavaScript inside your browser. You can disconnect from the internet after the page loads and the tool keeps working, which is the simplest way to verify the claim.
How is reading time calculated?
Reading time uses 238 words per minute, the mean silent reading rate for adults reading English non-fiction found in Brysbaert's 2019 meta-analysis of 190 studies. Speaking time uses 150 words per minute, a typical presentation pace.
How are emoji and accented characters counted?
By grapheme, not by code unit. A family emoji is one character here, though JavaScript's raw string length would report eleven. Accented letters count as one character whether or not they are stored as a combining sequence.
Is there a size limit?
No hard limit. Counting stays under a frame at around 200,000 words on a mid-range laptop; beyond that the typing itself becomes the slow part, not the counting.