Test Turkish words for vowel harmony
Vowel harmony (ünlü uyumu) is a core feature of Turkish: in native words, all vowels agree in backness. This checker analyzes the vowels in a word or suffix chain and flags any that break the front-or-back series, which is handy for verifying generated suffixes or spotting loanwords.
How it works
The tool extracts every vowel from the word and classifies it:
- front vowels:
e,i,ö,ü - back vowels:
a,ı,o,u
It takes the first vowel as the baseline backness for the word, then checks every subsequent vowel against it. Any vowel in the opposite group is reported as a violation, with its position and the group it was expected to match. Words with zero or one vowel are reported as trivially harmonious.
Example
evlerimizde -> harmonious (all front: e, e, i, i, e)
kitap -> violation (loanword, mixes groups)
otobüs -> violation (loanword, o/o back then ü front)
Tips and notes
- This checks backness harmony only — the most fundamental rule. Rounding harmony, which governs whether suffix vowels are rounded, is a separate constraint not evaluated here.
- A flagged loanword is not an error: borrowings like
kitapandotobüslegitimately break native harmony. - The analysis runs entirely in your browser, so input stays private.