Count
Word counter
Live counts as you type, with academic exclusions and correct segmentation for Indic and CJK scripts.
How word counting actually works
A word counter has to decide where one word ends and the next begins. For English that looks trivial — split on spaces — which is why almost every online counter does exactly that, and why almost every one of them is wrong for a large part of the world.
Splitting on whitespace fails immediately outside the Latin script. Chinese and Japanese do not put spaces between words. Thai does not either. Telugu, Hindi and Tamil use spaces, but they also use combining marks that naive counters miscount as separate characters. This tool uses the browser's built-in Unicode segmentation instead, which applies the proper word-boundary rules for the script it detects.
Character counting has the same trap. The JavaScript expression "నమస్తే".length returns 6, because it counts UTF-16 code units rather than characters a reader would recognise. A single emoji can return 2, and a flag emoji 4. This tool counts grapheme clusters, so the number matches what you would get by counting on screen.
Word limits and what your marker counts
Academic word limits are the most common reason people reach for a counter, and the number your word processor reports is frequently not the number that will be marked. Institutions differ, but the usual pattern is that the body text counts and the scaffolding does not.
| Element | Commonly counted |
|---|---|
| Body paragraphs | Yes |
| In-text citations, e.g. (Smith, 2020) | Often excluded |
| Reference list or bibliography | Almost always excluded |
| Footnotes and endnotes | Varies — check your handbook |
| Headings and subheadings | Varies |
| Block quotations | Usually counted |
| Tables, figures and captions | Usually excluded |
| Abstract, title page, appendices | Usually excluded |
Academic mode lets you switch each of these off and shows both the raw and the countable total, so you can match whatever your handbook specifies rather than guessing. Where a rule is ambiguous, the handbook wins — this tool models the common conventions, not your specific institution's policy.
Reading and speaking time
Reading time here uses 238 words per minute, the mean silent reading rate for English prose found in Brysbaert's 2019 meta-analysis of 190 studies. Many sites use 200 or 250 without saying where the figure came from; the difference on a 3,000-word piece is over two minutes.
Speaking time uses 130 words per minute, which is deliberately slower than conversational speech. Presenters read prepared text faster than they should when nervous, and rehearsal timings that assume 150 words per minute tend to leave people over-running. If you are timing a speech, treat the figure as a floor and rehearse aloud.
Both figures are averages across readers and text types. Dense technical prose reads slower; familiar narrative reads faster.
Use this word counter for essays, articles and assignments
Whether you are writing a university essay, a blog article or a professional report, this free word counting tool gives you an accurate count in real time. Students use it to stay within assignment word limits; journalists use it to hit article targets; academics use it to check thesis chapters against departmental requirements.
Paste your text and the counter updates instantly — no button to press, no page to reload. The character counter runs alongside the word counter, so you always see both totals. For essays with strict word limits, switch on Academic mode to exclude citations, reference lists and footnotes from the countable total.
Word and character counter with live results
This word and character counter gives you both totals simultaneously as you type. The word count uses Unicode word-boundary rules, so it works correctly for English, Chinese, Japanese, Hindi, Telugu and every other script. The character count uses grapheme clusters, so a flag emoji counts as one character, not four.
For articles and blog posts, the reading time estimate tells you how long your piece will take to read. For speeches, the speaking time estimate gives you a rehearsal baseline at 130 words per minute.
Common questions
Does the word count include citations and references?
It depends on your institution, and the tool lets you match either convention. Reference lists are almost always excluded from a stated word limit; in-text citations are excluded by many but not all universities. Switch on the relevant exclusions in Academic mode and compare the raw and countable totals. Your course handbook is the authority.
Is my text uploaded anywhere?
No. Every calculation runs in your browser using JavaScript. There is no server that receives your text, no account, and no analytics on what you type. You can confirm this by opening your browser's network tab — nothing is sent after the page itself loads.
Why does the character count differ from Microsoft Word?
Word counts UTF-16 code units in some contexts, which inflates the count for emoji, Indic scripts and other characters outside the basic Latin range. This tool counts grapheme clusters — characters as a reader perceives them. For plain English text the two agree.
How is reading time calculated?
Words divided by 238 words per minute, the mean silent reading rate for English prose from Brysbaert's 2019 meta-analysis. Speaking time uses a deliberately conservative 130 words per minute.
Does it count words in Telugu or Hindi correctly?
Yes. The tool detects the script and applies Unicode word-boundary rules for it rather than splitting on spaces, so combining marks and conjuncts are handled properly. Mixed-script documents are counted with the rules for the dominant non-Latin script.
How do I count words in text online?
Paste your text into the editor above. The word count, character count, sentence count and paragraph count all update live as you type. Nothing is sent to a server — every calculation happens in your browser.
Is this a free word counting tool?
Yes. The tool is completely free with no sign-up and no file upload limit. All processing happens locally in your browser.
Can I use this as an essay word count checker?
Yes. Paste your essay into the editor and the word count updates in real time. Switch on Academic mode to exclude citations and reference lists from the countable total, matching your institution's conventions.
How does the online text analyzer work?
The tool uses Unicode segmentation rules to count words correctly across all scripts — English, Chinese, Japanese, Hindi, Telugu and more. It counts grapheme clusters for character counting, so emoji and combining marks are handled properly.