Word Counter
Client-sideNewCount words, characters, sentences, and paragraphs with reading time — live and private.
O Contador de Palavras reporta palavras, caracteres (com e sem espaços), frases, parágrafos, linhas e tempo estimado de leitura e fala — calculado ao vivo no seu navegador no 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
O Contador de Palavras é um workspace privado de contagem para tudo com limite de comprimento: redações, meta descriptions, tweets, abstracts, cartas de apresentação e roteiros. Cole ou digite texto e obtenha um relatório completo — palavras, caracteres com e sem espaços, frases, parágrafos, linhas e tempo estimado de leitura e de fala.
Quem busca “contador de palavras” costuma ter um limite rígido: uma redação de 500 palavras, um SMS de 160 caracteres, um discurso de 60 segundos. O relatório é estruturado para cada caso mapear a um número, e as contagens de caracteres distinguem com espaços e sem espaços porque as plataformas contam de forma diferente.
As regras de contagem são explícitas. Palavras se separam em qualquer sequência de espaços em branco. Caracteres contam code points Unicode, então “🚀” é um caractere mesmo sendo quatro bytes UTF-8. Frases terminam em ., ! ou ? seguidos de espaço ou fim do texto — números decimais não criam cortes falsos em prosa normal. Parágrafos são blocos separados por linhas em branco.
Como rascunhos costumam ser inéditos ou confidenciais, tudo calcula no navegador. Nada é armazenado ou enviado — o mesmo modelo de privacidade no cliente do restante do Toolverse by RS. Quem combina com o Conversor de Maiúsculas pode ajustar capitalização e checar comprimento sem trocar de site.
Boa prática: confira a contagem de caracteres sem espaços quando uma plataforma for rigorosa (alguns sistemas de anúncios) e trate o tempo de leitura como estimativa de planejamento — material técnico lê mais devagar que ~200 palavras por minuto.
Frequently asked questions
O Contador de Palavras armazena ou envia meu rascunho?
Não. A contagem roda inteiramente no seu navegador no Toolverse by RS — rascunhos inéditos e texto confidencial nunca são transmitidos.
Como o tempo de leitura é calculado?
Palavras divididas por ~200 por minuto para leitura e ~130 para fala, arredondadas para minutos inteiros. Texto técnico denso lê mais devagar.
Espaços contam como caracteres?
Os dois números são reportados: caracteres incluindo espaços e excluindo todo whitespace, porque as plataformas discordam sobre qual aplicar.
Como emojis afetam a contagem?
Cada emoji conta como um caractere porque usamos code points Unicode — “🚀” é 1, não 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.