Word and Character Counter
Counts words, characters, UTF-8 bytes, lines, sentences and paragraphs, and estimates reading time.
Loading the tool…
How to use this tool
- Paste or type the text.
- Select Count.
- Compare the character count with the byte count. If they differ, the text is not plain ASCII and a byte-based length limit will bite sooner than you expect.
What word counter does
Most word counters stop at words and characters. The count that causes trouble is the third one: bytes. A database column declared as VARCHAR(255) may mean 255 bytes rather than 255 characters, and a string of accented or non-Latin text uses two, three or four bytes per character in UTF-8. A value that looks well within the limit can be rejected at insert time for that reason alone.
This page reports both, alongside lines, paragraphs and sentences. The sentence count is deliberately simple — a full stop followed by a space ends a sentence — so an abbreviation such as "e.g." inflates it. The reading time uses 200 words a minute, the usual figure for silent reading of ordinary prose, and is a guide rather than a measurement.