Word Frequency Counter
Count how often every word appears in a piece of text. Sort by frequency or alphabetically.
Quick answer: Count how often every word appears in a piece of text. Sort by frequency or alphabetically.
Last updated
Frequently asked questions
- What counts as a 'word'?
- Any maximal run of Unicode letters and digits, lowercased. Punctuation and whitespace separate words; numbers like <code>2026</code> are counted as a word.
- Are stop words removed?
- Optional — toggle 'ignore common stop words' to filter out the top ~150 English function words (the, a, of, and, etc.). Useful for keyword analysis on prose.
- How big a text can I analyse?
- Up to a few megabytes of text runs in well under a second. Above that it stays responsive but the table grows large enough that scrolling matters more than counting time.
- Is my text uploaded?
- No — counting runs entirely in your browser.
- Can I export the result as CSV?
- Yes — the table has a 'download CSV' button so you can paste into Excel for further analysis.