Text Statistics
Count words, characters, lines, paragraphs, sentences, and bytes online. Useful for writing, forms, code snippets, and content limits.
INPUT
0 charsUse cases
Word counter
Check word count for drafts, descriptions, notes, and pasted content before publishing or submitting a form.
Character counter
Review total characters and characters without spaces when writing compact copy, metadata, short messages, or field-limited text.
Line and paragraph counter
Count lines for logs, CSV snippets, code samples, and lists; count paragraphs to understand longer writing structure.
Examples
Frequently Asked Questions
How are words counted?+
Words are counted by splitting non-empty text on whitespace.
Does it support Chinese text?+
Character and byte counts work well for Chinese. Word count is whitespace-based.
Related Tools
API preview
Endpoint
POST
/api/text/statsRequest
{
"text": "Fast tools for everyday work."
}Response
{
"words": 5,
"characters": 30,
"lines": 1
}