Module:Unicode data/Hangul

Hello, you have come here looking for the meaning of the word Module:Unicode data/Hangul. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:Unicode data/Hangul, but we will also tell you about its etymology, its characteristics and you will know how to say Module:Unicode data/Hangul in singular and plural. Everything you need to know about the word Module:Unicode data/Hangul you have here. The definition of the word Module:Unicode data/Hangul will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:Unicode data/Hangul, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


-- Data used to generate the names of characters in the Hangul Syllables block
-- (U+AC00 to U+D7A3).
local Hangul = {}

-- The following leads, vowels, and trails come from here:
-- http://www.unicode.org/Public/UNIDATA/Jamo.txt
Hangul.leads = {
	 = "G", "GG", "N", "D", "DD", "R", "M", "B", "BB", "S", "SS",
	"", "J", "JJ", "C", "K", "T", "P", "H"
}
-- not actually used:
Hangul.lead_count = #Hangul.leads + 1

Hangul.vowels = {
	 = "A", "AE", "YA", "YAE", "EO", "E", "YEO", "YE", "O", "WA",
	"WAE", "OE", "YO", "U", "WEO", "WE", "WI", "YU", "EU", "YI",
	"I"
}
Hangul.vowel_count = #Hangul.vowels + 1

Hangul.trails = {
	 = "", "G", "GG", "GS", "N", "NJ", "NH", "D", "L", "LG", "LM", "LB",
	"LS", "LT", "LP", "LH", "M", "B", "BS", "S", "SS", "NG", "J", "C", "K",
	"T", "P", "H"
}
Hangul.trail_count = #Hangul.trails + 1

--For the term "final", see ].
Hangul.final_count = Hangul.vowel_count * Hangul.trail_count

return Hangul