Word Frequency Counter

Count and rank repeated words in pasted text without uploading it.

Calculations happen locally. We do not send your values to our server.

Example

For “blue sky, blue ocean, bright sky,” blue and sky each occur twice while the other words occur once.

Calculation method

Text is split into Unicode letter and number words, normalized to lowercase, counted, and sorted by frequency then alphabetically.

Important notes

Capitalization is ignored. Punctuation is excluded, while apostrophes and internal hyphens may remain part of a word; review language-specific tokenization.

Frequently asked questions

Is the text uploaded to a server?

No. Counting and sorting run locally in the current browser page.

Are uppercase and lowercase counted together?

Yes. Words are converted to lowercase before frequencies are combined.

How are tied counts ordered?

Words with the same frequency are ordered alphabetically using the browser locale.

Related tools