https://en.wikipedia.org/w/index.php?action=history&feed=atom&title=Module%3AUnicode_data%2FHangul
Module:Unicode data/Hangul - Revision history
2025-05-26T01:58:41Z
Revision history for this page on the wiki
MediaWiki 1.45.0-wmf.2
https://en.wikipedia.org/w/index.php?title=Module:Unicode_data/Hangul&diff=847990364&oldid=prev
Erutuon: moved from Module:Unicode data
2018-06-29T03:32:28Z
<p>moved from <a href="/wiki/Module:Unicode_data" title="Module:Unicode data">Module:Unicode data</a></p>
<p><b>New page</b></p><div>-- Data used to generate the names of characters in the Hangul Syllables block<br />
-- (U+AC00 to U+D7A3).<br />
local Hangul = {}<br />
<br />
-- The following leads, vowels, and trails come from here:<br />
-- http://www.unicode.org/Public/UNIDATA/Jamo.txt<br />
Hangul.leads = {<br />
[0] = "G", "GG", "N", "D", "DD", "R", "M", "B", "BB", "S", "SS",<br />
"", "J", "JJ", "C", "K", "T", "P", "H"<br />
}<br />
-- not actually used:<br />
Hangul.lead_count = #Hangul.leads + 1<br />
<br />
Hangul.vowels = {<br />
[0] = "A", "AE", "YA", "YAE", "EO", "E", "YEO", "YE", "O", "WA",<br />
"WAE", "OE", "YO", "U", "WEO", "WE", "WI", "YU", "EU", "YI",<br />
"I"<br />
}<br />
Hangul.vowel_count = #Hangul.vowels + 1<br />
<br />
Hangul.trails = {<br />
[0] = "", "G", "GG", "GS", "N", "NJ", "NH", "D", "L", "LG", "LM", "LB",<br />
"LS", "LT", "LP", "LH", "M", "B", "BS", "S", "SS", "NG", "J", "C", "K",<br />
"T", "P", "H"<br />
}<br />
Hangul.trail_count = #Hangul.trails + 1<br />
<br />
--For the term "final", see [[Syllable#Chinese model]].<br />
Hangul.final_count = Hangul.vowel_count * Hangul.trail_count<br />
<br />
return Hangul</div>
Erutuon