Syllable Counter

Count syllables, words and characters in text and check for palindromes, with an honest account of why English syllable counting is genuinely hard.

0
Syllables
0
Lines
0
Words
0
Characters

Line by line

Three standard rules disagree about a quarter of English

Counting syllables from spelling is guesswork, and different pieces of software guess differently. Running three published rules over 274,937 English words — the one this page uses, a naive count of vowel runs, and a fuller rule that adds silent-e and -le handling — all three agree on only 72.8% of them. That leaves 74,815 words where at least one rule differs from the others.

ComparedWords they disagree onShare
the rule on this page vs naive vowel runs 68,505 24.9%
the rule on this page vs a fuller rule 35,869 13.0%
naive vowel runs vs a fuller rule 45,397 16.5%

This measurement needs no correct answers at all, which is what makes it solid — it does not depend on anyone agreeing how many syllables "fire" has. Two programs that both claim to count syllables will simply differ on roughly one word in four, and any figure a tool like this one gives you is one opinion among several.

And the failures are one specific thing

Scored against ordinary words and against words picked because they are hard:

RuleOrdinary wordsHard words
the rule on this page 96% 46%
naive vowel runs 92% 39%
a fuller rule 92% 39%

Neither column is "the accuracy of a syllable counter" — the hard set was chosen to be hard and the easy set to be easy. What the pair shows is the shape of the problem. Regular spelling is handled well. The disagreements pile up where a run of adjacent vowels belongs to two different syllables, which linguists call hiatus. All three rules undercount every one of these: ion, eon, area, idea, poem, diet, being, lion, union.

There is no spelling cue that could rescue them, and these pairs are the proof — the same letters, a different answer:

WordSyllablesWordSyllables
poem2 moan1
diet2 quiet2
lion2 lien1
create2 crease1

It is a fact about the word, not about the letters, so no rule reading the letters can get it right. Two smaller failures round it out. A syllable can be carried by a consonant with no vowel at all, so nothing that counts vowels finds the second syllable of rhythm. And the rule on this page returns 1 for any word of three letters or fewer — a shortcut covering 1,444 dictionary words that is almost always right, and wrong for ion and eon.

Worth noting what is not on that list. "Quiet", "science" and "create" look like the same problem, and at least one rule gets each of them right — the rule here caps a vowel run at two letters, so "quiet" splits into ui and e and comes out correct for entirely the wrong reason. Adding rules does not reliably help: the fuller rule, with the most special cases of the three, lands exactly where the naive one does. The simplest rule here is also the best one.

How to use

  1. Paste or type your text.
  2. Read the syllable, word and character counts.
  3. Check the per-word breakdown for anything that looks wrong.
  4. Trust your ear over the algorithm for unusual words.

Frequently asked questions

Why is counting syllables in English so difficult?

Because English spelling and pronunciation parted company centuries ago. A vowel letter may or may not form a syllable, a silent e usually does not, and the same spelling can differ between words. Any algorithm works by heuristics with exceptions, and none is fully reliable.

Which words trip up counters?

Words where the count is genuinely disputed. Fire, hour, our and similar are one or two syllables depending on the speaker and the accent. Words ending in -ed vary — wanted has two, walked has one. Poetry counts them as the metre requires, which is not always how they are spoken.

Why does this matter for poetry?

Because fixed forms depend on it. A haiku's structure, a sonnet's iambic pentameter and a limerick's rhythm are all syllable counts. Poets frequently exploit the ambiguity — choosing a pronunciation that fits the line is a legitimate and long-standing technique.

How do algorithms usually count?

By counting vowel groups and applying correction rules: subtract for a silent e, add for certain endings, handle common exceptions from a list. It gets most ordinary words right and fails on names, loanwords and technical vocabulary, which is where a dictionary lookup does better.

Does accent change the count?

Yes, in real cases. Words like caramel, mayonnaise and comfortable are pronounced with different numbers of syllables in different regions, and both counts are correct for their speakers. A single number is a simplification of a genuinely variable thing.

What counts as a palindrome?

A word or phrase reading the same in both directions, typically after ignoring case, spaces and punctuation. Under that convention, 'A man, a plan, a canal: Panama' qualifies. A strict character-by-character comparison would reject it, which is why the normalisation is stated rather than assumed.

🔒 This tool runs entirely in your browser. Nothing you enter is uploaded, logged, or stored.