Help for this page

Select Code to Download


  1. or download this
    sub InThaiHCons { #Thai high-class consonants
        return join "\n",
    ...
    '0E2A', #SO SUA
    '0E2B', #HO HIP
    }
    
  2. or download this
    sub InThaiLCons { #Thai low-class consonants
        return <<'END';
    ...
    0E2E
    END
    }
    
  3. 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.