γ±Hangul Jamo Decomposition / Composition
Decompose Hangul syllables into initial/medial/final jamo, or compose them back. Useful for Korean search and autocomplete, IME conversion, phonological analysis, and learning to code Korean text.
How to use
- 1Enter a syllable to decompose into jamo.
- 2Reverse: enter jamo to compose.
FAQ
Are double finals supported?+
γ³, γ΅, γΆ, γΊ, γ», γΌ, γ½, γΎ, γΏ, γ , γ β all decompose and recompose correctly.
Why is jamo decomposition useful?+
(1) Initial-consonant search ('γ γ±' β 'νκ΅'), (2) IME conversion, (3) Korean phonology algorithms. Essential for Korean apps and search.
Same as Unicode jamo?+
Uses Unicode Hangul Jamo (U+1100~U+11FF), not the compatibility jamo (U+3131~U+318F).
What about combined vowels (γ , γ )?+
By default they're one unit. An option further decomposes them to γ +γ .
Example: initial-consonant search?+
Decompose each character β extract initials β match user input. 'νκ΅' β 'γ γ±', 'νμ' β 'γ γ '.
Performance concerns?+
Each character takes microseconds. Tens of thousands of characters process instantly.