hangul.dev
Each consonant was designed to diagram the shape of the mouth producing it.
The round dot: the sky, the origin point, from which all vowels derive their yang quality
The horizontal stroke: the ground, flat and receptive, the yin foundation of the vowel system
The vertical stroke: the upright human, mediating between heaven and earth
func Compose(lead, vowel, trail rune) rune {
return 0xAC00 +
(lead-0x1100)*21*28 +
(vowel-0x1161)*28 +
(trail - 0x11A7)
}
hangul.dev