Word Counter
Client-sideNewCount words, characters, sentences, and paragraphs with reading time — live and private.
Word Counter reports words, characters (with and without spaces), sentences, paragraphs, lines, and estimated reading and speaking time — computed live in your browser on Toolverse by RS.
Examples
Key takeaways
- Words, characters (± spaces), sentences, paragraphs, and lines in one report
- Reading (~200 wpm) and speaking (~130 wpm) time estimates
- Emoji and accented characters count once (code points, not bytes)
- Counts run client-side — drafts are never uploaded
What does a word counter measure?
A word counter reports the size of a text: word, character, sentence, and paragraph totals, usually alongside a reading-time estimate.
This tool splits words on whitespace, counts characters by Unicode code point (so an emoji counts once), detects sentence boundaries on ., !, and ?, and treats blank lines as paragraph breaks. Reading time assumes roughly 200 words per minute and speaking time roughly 130 — planning estimates, not guarantees.
Features
Eight metrics in one pass
Words, both character counts, sentences, paragraphs, lines, plus read and speak time.
Unicode-correct characters
Counts code points, so emoji and accents count once — not per byte.
Reading & speaking time
Estimates at ~200 wpm reading and ~130 wpm speaking pace.
Private by default
Counts compute locally — drafts never leave your browser.
How it works
Paste your draft
Any length up to the input limit — essays, posts, scripts.
Count
The full report renders in the output pane.
Trim to target
Edit the input and re-count until you hit the limit.
Example walkthroughs
Multi-paragraph draft
Reports 15 words, 3 sentences, 2 paragraphs, and sub-minute read time.
The launch went well. Metrics improved across the board! Next quarter we focus on retention.
Character-limited copy
The emoji counts as one character; compare with/without spaces against your platform limit.
Free developer tools that run privately in your browser 🚀
Use cases
Meet submission limits
Verify essays, abstracts, and application answers against word or character caps.
Time a talk
Use the speaking estimate to size a script for a 5-minute lightning slot.
Code snippets
Code-point-safe count in JS
jsSpreading a string iterates code points, so astral characters count once.
const text = "hi 🚀"; const words = text.split(/\s+/).filter(Boolean).length; // 2 const chars = [...text].length; // 4 — not text.length (5)
Common errors
Character count differs from another site
Cause: Some counters count UTF-16 units or bytes, inflating emoji and accents.
Fix: This tool counts code points; check which rule your target platform uses.
Sentence count looks high
Cause: Abbreviations like “e.g.” followed by a space register as sentence ends.
Fix: Treat the sentence metric as an estimate for prose with many abbreviations.
About Word Counter
Word Counter is a private counting workspace for anything with a length limit: essays, meta descriptions, tweets, abstracts, cover letters, and talk scripts. Paste or type text and get a full report — words, characters with and without spaces, sentences, paragraphs, lines, and estimated reading and speaking time.
People searching “word counter” usually have a hard boundary to meet: a 500-word essay, a 160-character SMS, a 60-second speech. The report is structured so each of those maps to one number, and the character counts distinguish with-spaces from without-spaces because different platforms count differently.
Counting rules are explicit rather than mysterious. Words split on any whitespace run. Characters count Unicode code points, so “🚀” is one character even though it is four UTF-8 bytes. Sentences end at ., !, or ? followed by space or end of text — decimal numbers do not create false breaks in normal prose. Paragraphs are blocks separated by blank lines.
Because drafts are often unpublished or confidential, everything computes in your browser. Nothing is stored or sent — the same client-side privacy model as the rest of Toolverse by RS. Writers pairing this with Case Converter can fix capitalization and check length without switching sites.
Best practice: check the without-spaces character count when a platform is strict (some ad systems), and treat reading time as a planning estimate — technical material reads slower than 200 words per minute.
Frequently asked questions
Does Word Counter store or upload my draft?
No. Counting runs entirely in your browser on Toolverse by RS — unpublished drafts and confidential text are never transmitted.
How is reading time calculated?
Words divided by ~200 per minute for reading and ~130 for speaking, rounded to whole minutes. Dense technical text will read slower.
Do spaces count as characters?
Both numbers are reported: characters including spaces and characters excluding all whitespace, since platforms disagree on which to enforce.
How do emoji affect the count?
Each emoji counts as one character because counting uses Unicode code points rather than UTF-16 units — “🚀” is 1, not 2.
Related tools
Case Converter
Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, and more.
Text Diff
Compare two texts line by line — see added and removed lines with a unified-style diff.
Slug Generator
Turn titles into clean, SEO-friendly URL slugs — lowercase, hyphenated, accents stripped.
Lorem Ipsum Generator
Generate placeholder text by paragraphs, sentences, or words — deterministic and offline-friendly.
Popular tools
JSON Formatter
Format, beautify, and minify JSON in your browser. Free, private, and instant — no upload to a server.
JSON Validator
Validate JSON instantly in your browser. See type, size, and node counts — or exact parse errors with line and column.
JSON Viewer
Explore JSON as an interactive tree with paths, types, and expandable nodes — all processed locally in your browser.
Base64 Encode / Decode
Encode UTF-8 text to Base64 or decode Base64 back to text — instantly in your browser.
Newest tools
Image Compressor
Compress JPG, PNG, and WebP images in your browser with a quality slider — private, no upload.
Image Resizer
Resize images by width or height in your browser — keep aspect ratio or stretch to exact pixels.
Image Converter
Convert images between PNG, JPG, and WebP in your browser — private, no upload.
Image Cropper
Crop images by pixel coordinates in your browser — JPG, PNG, WebP, private, no upload.
Explore more
Guides & articles
Private text tools for writers and developers
Convert case, count words, diff drafts, and slugify titles in your browser — without uploading manuscripts to a third-party site.
Writing length limits notes on the RS Roshi blog
Practical write-ups around writing length limits.
Platform documentation
Shortcuts, limits, and how client-side tools work.