Word Sayıcı
Say words, characters, sentences and paragraphs in your text anında. Yükleme yok, fully tamamen gizli.
Local processingWhat is Word Sayıcı?
A word counter tallies the words, characters (with and without spaces), sentences, and paragraphs in a text. These metrics matter for writing constraints — essays, tweets, meta descriptions, and SEO snippets all have length limits. The counter updates live as the user types or pastes, giving immediate feedback without any upload.
How It Works
Words are counted by splitting the text on Unicode whitespace sequences (one or more spaces, tabs, newlines) and discarding empty fragments. Characters are the string's .length (with spaces) and the length after removing whitespace (without spaces). Sentences are approximated by counting terminal punctuation (. ! ?) followed by whitespace or end-of-text. Paragraphs are counted by splitting on double newlines. All counts run in O(n) locally.
Common Use Cases
- Hitting essay or article word limits — stay under a 500- or 2000-word cap
- Writing SEO meta descriptions — keep under 160 characters for search snippets
- Composing tweets or SMS — fit within 280 or 160 character limits
- Measuring reading time — divide word count by an average reading speed (e.g., 200 wpm)
Technical Details
Word splitting: Unicode-aware whitespace regex (\s+). Sentence detection is heuristic — it counts terminal punctuation followed by a boundary, so abbreviations (e.g., 'Dr.') may inflate the count. Paragraphs split on /\n{2,}/. CJK text (Chinese/Japanese/Korean) does not use spaces between words, so word counts for CJK input approximate by counting characters. All processing is local and O(n).
How to Use
Enter your input above. The result updates automatically. Use the copy button to copy the result.
Privacy
All processing happens in your browser. Your data is never uploaded to any server.
FAQ
How are words counted?
Words are counted by splitting the text on whitespace sequences. Empty input returns zero.
Is my text uploaded to a server?
No. All counting happens locally in your browser. Your text never leaves your device, making this safe for sensitive or unpublished content.
Does it count characters and sentences too?
Yes. The tool reports characters (with and without spaces), words, sentences (approximated by terminal punctuation), and paragraphs (split on double newlines). Reading time is also estimated at ~200 words per minute.