- or download this
sub InThaiHCons { #Thai high-class consonants
return join "\n",
...
'0E2A', #SO SUA
'0E2B', #HO HIP
}
- or download this
sub InThaiLCons { #Thai low-class consonants
return <<'END';
...
0E2E
END
}
- or download this
my @characters = list('InThaiHCons');
...
#Codepoints, e.g. '0E01' instead of actual characters would also be ac
+ceptable, as it should be trivial to convert them.