Character Frequency Counter guide
Paste any text to count how many times each character appears, sorted from most to least frequent. Useful for cryptogram and cipher puzzles, linguistics homework, checking data for stray symbols, and word games.
What the counter does
It walks through your text one character at a time, tallies each one, and lists the results from most to least frequent. Letters are counted case-insensitively, so A and a share a total. Spaces, tabs, and line breaks are skipped because they would dominate any normal text; punctuation, digits, and symbols are counted.
Take 'Hello, World!'. After lowercasing and dropping the space: l appears 3 times, o twice, and h, e, comma, w, r, d, and ! once each. Thirteen characters in, twelve counted, nine distinct.
English letter frequencies
In large samples of English, letters are far from evenly used. E is the clear leader at roughly 12 to 13 percent of all letters. T follows at about 9 percent, then A (8), O (7.5), I (7), N (6.7), S (6.3), H (6.1), and R (6). Typesetters memorized the order as ETAOIN SHRDLU, which is why that nonsense phrase sometimes appeared in old newspapers when a Linotype operator ran a finger down the keyboard.
At the other end, Z, Q, X, and J each make up well under 1 percent. Short texts wander from these averages, so a 50-word note might not have E on top. The pattern emerges reliably from a few hundred letters up.
Breaking a substitution cipher
Frequency analysis is the oldest code-breaking technique, described by the Arab scholar al-Kindi in the ninth century. In a simple substitution cipher every letter is swapped for another, but the frequencies survive the swap. If X is the most common symbol in a long ciphertext, X very likely stands for E.
A practical workflow: paste the ciphertext, map the top two or three symbols to E, T, and A, then look for structure. A single-letter word is almost always A or I. A three-letter word that repeats is probably THE or AND. Doubled letters are often LL, EE, SS, or OO. Each confirmed letter makes the next one easier. Newspaper cryptograms and escape-room puzzles fall quickly this way, since they rarely use anything stronger than substitution.
Other practical uses
Data cleaning: paste a column from a spreadsheet and look for characters that shouldn't be there, such as curly quotes in a product code, stray semicolons, or non-breaking spaces from copied web text. An unexpected symbol near the bottom of the list is often the reason an import or lookup is failing.
Word games and puzzles: Wordle and Scrabble players study letter frequencies to choose starting words heavy in common letters. Writing constraints: lipograms avoid a letter entirely, and the tool confirms there are zero. Linguistics and language learning: compare the profile of a Spanish or German text to English and the differences are obvious, from the frequency of ñ to the role of E and A.
Characters versus letters
The tool counts characters, so digits and punctuation appear alongside letters. If you only want letter statistics, ignore the non-letter rows, or use the letter counter for a letters-only total. For whole words rather than characters, the word frequency counter ranks each word by occurrence, which is more useful for spotting overused phrases or checking keyword balance in marketing copy.
Accented letters count separately: é and e are different characters here. Emoji are counted as whole symbols. Very large texts, such as a full novel pasted in, still count almost instantly because everything runs locally in your browser, and nothing you paste is uploaded or stored.
Reading the results
The Share column is each count divided by the total characters counted; tick Letters only to leave out digits and punctuation so the shares compare directly with published letter frequencies. If e appears 130 times in 1,000 characters, that is 13 percent, right on the English average. A large deviation from the typical profile can tell you something: text heavy in Z, X, and Q may be a cipher, a list of codes, or simply a different language.
Frequently asked questions
What is character frequency analysis?
Counting how often each character appears in a text. It is the classic way to break simple substitution ciphers, because the most common symbol in English ciphertext usually stands for E.
What are the most common letters in English?
E is most frequent at roughly 12% to 13% of letters, followed by T (about 9%), A (8%), O, I, N, S, H, and R. The least common are Z, Q, X, and J, each well under 1%.
Is the count case-sensitive?
No. Uppercase and lowercase are combined, so A and a are counted together. Accented letters such as é are counted as their own characters.
Are spaces counted?
No. Spaces, tabs, and line breaks are skipped so they do not swamp the results. Punctuation, digits, and symbols are counted.
How do I use this to solve a cryptogram?
Paste the ciphertext, then match the most frequent symbols to E, T, A, and O. Look for one-letter words (A or I) and common three-letter patterns (THE, AND) to confirm guesses.
Can I count characters in other languages?
Yes. Any Unicode text works, including Spanish, French, German, Cyrillic, and Greek. Frequency rankings differ by language; in Spanish, E and A trade the top spot.
Is my text uploaded?
Everything runs in your browser. Nothing you enter is uploaded to a server or stored by us.