Dutch Syllable Counter

Counts Dutch syllables using vowel groups and trema hiatus rules

Count syllables in Dutch words and text by detecting vowel groups, correctly handling long vowels, digraphs like ui and oe, and the trema that opens a new syllable in ideeën or geïnd. Shows totals and a per-word breakdown. Runs in your browser.

How are Dutch syllables counted?

Each maximal run of vowel letters is treated as one syllable nucleus. Long vowels (maan), and digraphs and diphthongs (boom, huis, oe, ui) are single sounds, so they count once. This vowel-group method matches how Dutch syllables are formed in spelling.

This tool counts the syllables in Dutch words and passages. Dutch spelling encodes syllable structure quite directly through its vowel groups, so a vowel-group counter is both simple and accurate for most words, with one important refinement for the trema.

How it works

The counter scans each word and counts the maximal runs of vowel letters. A run of vowels is normally a single syllable nucleus, which means long vowels and digraphs collapse to one count:

maan  -> 1   (one vowel group: aa)
boom  -> 1   (oo)
huis  -> 1   (ui)
water -> 2   (a | e)

The one exception is the trema. In Dutch a trema on ë ï ö ü signals that the vowel starts a new syllable, breaking the vowel group:

ideeën -> 3   (i-dee-en, the ë opens a syllable)
geïnd  -> 2   (ge-ind)

The doubling rule the description mentions — a long vowel written single in an open syllable (ma-nen) and doubled in a closed one (maan) — is exactly what produces these vowel groups, so counting vowel groups handles it automatically.

Tips and notes

Hyphenated compounds are split and each part counted, so auto-ongeluk sums its parts. The method is reliable for native vocabulary; rare loanwords with hidden vowel hiatus (no trema) may read one syllable short, so double-check unusual words when exact counts matter, for example in poetry or song lyrics.