xref: /dokuwiki/inc/Utf8/tables/romanization.php (revision 1fa01e4a55725a11d15e5e5558e57551b166ff62)
113067778SAndreas Gohr<?php
213067778SAndreas Gohr/**
313067778SAndreas Gohr * Romanization lookup table
413067778SAndreas Gohr *
513067778SAndreas Gohr * This lookup tables provides a way to transform strings written in a language
613067778SAndreas Gohr * different from the ones based upon latin letters into plain ASCII.
713067778SAndreas Gohr *
813067778SAndreas Gohr * Please note: this is not a scientific transliteration table. It only works
913067778SAndreas Gohr * oneway from nonlatin to ASCII and it works by simple character replacement
1013067778SAndreas Gohr * only. Specialities of each language are not supported.
1113067778SAndreas Gohr *
1213067778SAndreas Gohr * @todo some keys are used multiple times
1313067778SAndreas Gohr * @todo remove or integrate commented pairs
1413067778SAndreas Gohr *
1513067778SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1613067778SAndreas Gohr * @author Vitaly Blokhin <vitinfo@vitn.com>
1713067778SAndreas Gohr * @author Bisqwit <bisqwit@iki.fi>
1813067778SAndreas Gohr * @author Arthit Suriyawongkul <arthit@gmail.com>
1913067778SAndreas Gohr * @author Denis Scheither <amorphis@uni-bremen.de>
2013067778SAndreas Gohr * @author Eivind Morland <eivind.morland@gmail.com>
2113067778SAndreas Gohr * @link   http://www.uconv.com/translit.htm
2213067778SAndreas Gohr * @link   http://kanjidict.stc.cx/hiragana.php?src=2
2313067778SAndreas Gohr * @link   http://www.translatum.gr/converter/greek-transliteration.htm
2413067778SAndreas Gohr * @link   http://en.wikipedia.org/wiki/Royal_Thai_General_System_of_Transcription
2513067778SAndreas Gohr * @link   http://www.btranslations.com/resources/romanization/korean.asp
2613067778SAndreas Gohr */
2713067778SAndreas Gohrreturn [
2813067778SAndreas Gohr    // scandinavian - differs from what we do in deaccent
2913067778SAndreas Gohr    'å' => 'a',
3013067778SAndreas Gohr    'Å' => 'A',
3113067778SAndreas Gohr    'ä' => 'a',
3213067778SAndreas Gohr    'Ä' => 'A',
3313067778SAndreas Gohr    'ö' => 'o',
3413067778SAndreas Gohr    'Ö' => 'O',
3513067778SAndreas Gohr
3613067778SAndreas Gohr    //russian cyrillic
3713067778SAndreas Gohr    'а' => 'a',
3813067778SAndreas Gohr    'А' => 'A',
3913067778SAndreas Gohr    'б' => 'b',
4013067778SAndreas Gohr    'Б' => 'B',
4113067778SAndreas Gohr    'в' => 'v',
4213067778SAndreas Gohr    'В' => 'V',
4313067778SAndreas Gohr    'г' => 'g',
4413067778SAndreas Gohr    'Г' => 'G',
4513067778SAndreas Gohr    'д' => 'd',
4613067778SAndreas Gohr    'Д' => 'D',
4713067778SAndreas Gohr    'е' => 'e',
4813067778SAndreas Gohr    'Е' => 'E',
4913067778SAndreas Gohr    'ё' => 'jo',
5013067778SAndreas Gohr    'Ё' => 'Jo',
5113067778SAndreas Gohr    'ж' => 'zh',
5213067778SAndreas Gohr    'Ж' => 'Zh',
5313067778SAndreas Gohr    'з' => 'z',
5413067778SAndreas Gohr    'З' => 'Z',
5513067778SAndreas Gohr    'и' => 'i',
5613067778SAndreas Gohr    'И' => 'I',
5713067778SAndreas Gohr    'й' => 'j',
5813067778SAndreas Gohr    'Й' => 'J',
5913067778SAndreas Gohr    'к' => 'k',
6013067778SAndreas Gohr    'К' => 'K',
6113067778SAndreas Gohr    'л' => 'l',
6213067778SAndreas Gohr    'Л' => 'L',
6313067778SAndreas Gohr    'м' => 'm',
6413067778SAndreas Gohr    'М' => 'M',
6513067778SAndreas Gohr    'н' => 'n',
6613067778SAndreas Gohr    'Н' => 'N',
6713067778SAndreas Gohr    'о' => 'o',
6813067778SAndreas Gohr    'О' => 'O',
6913067778SAndreas Gohr    'п' => 'p',
7013067778SAndreas Gohr    'П' => 'P',
7113067778SAndreas Gohr    'р' => 'r',
7213067778SAndreas Gohr    'Р' => 'R',
7313067778SAndreas Gohr    'с' => 's',
7413067778SAndreas Gohr    'С' => 'S',
7513067778SAndreas Gohr    'т' => 't',
7613067778SAndreas Gohr    'Т' => 'T',
7713067778SAndreas Gohr    'у' => 'u',
7813067778SAndreas Gohr    'У' => 'U',
7913067778SAndreas Gohr    'ф' => 'f',
8013067778SAndreas Gohr    'Ф' => 'F',
8113067778SAndreas Gohr    'х' => 'x',
8213067778SAndreas Gohr    'Х' => 'X',
8313067778SAndreas Gohr    'ц' => 'c',
8413067778SAndreas Gohr    'Ц' => 'C',
8513067778SAndreas Gohr    'ч' => 'ch',
8613067778SAndreas Gohr    'Ч' => 'Ch',
8713067778SAndreas Gohr    'ш' => 'sh',
8813067778SAndreas Gohr    'Ш' => 'Sh',
8913067778SAndreas Gohr    'щ' => 'sch',
9013067778SAndreas Gohr    'Щ' => 'Sch',
9113067778SAndreas Gohr    'ъ' => '',
9213067778SAndreas Gohr    'Ъ' => '',
9313067778SAndreas Gohr    'ы' => 'y',
9413067778SAndreas Gohr    'Ы' => 'Y',
9513067778SAndreas Gohr    'ь' => '',
9613067778SAndreas Gohr    'Ь' => '',
9713067778SAndreas Gohr    'э' => 'eh',
9813067778SAndreas Gohr    'Э' => 'Eh',
9913067778SAndreas Gohr    'ю' => 'ju',
10013067778SAndreas Gohr    'Ю' => 'Ju',
10113067778SAndreas Gohr    'я' => 'ja',
10213067778SAndreas Gohr    'Я' => 'Ja',
10313067778SAndreas Gohr
10413067778SAndreas Gohr    // Ukrainian cyrillic
10513067778SAndreas Gohr    'Ґ' => 'Gh',
10613067778SAndreas Gohr    'ґ' => 'gh',
10713067778SAndreas Gohr    'Є' => 'Je',
10813067778SAndreas Gohr    'є' => 'je',
10913067778SAndreas Gohr    'І' => 'I',
11013067778SAndreas Gohr    'і' => 'i',
11113067778SAndreas Gohr    'Ї' => 'Ji',
11213067778SAndreas Gohr    'ї' => 'ji',
11313067778SAndreas Gohr
11413067778SAndreas Gohr    // Georgian
11513067778SAndreas Gohr    'ა' => 'a',
11613067778SAndreas Gohr    'ბ' => 'b',
11713067778SAndreas Gohr    'გ' => 'g',
11813067778SAndreas Gohr    'დ' => 'd',
11913067778SAndreas Gohr    'ე' => 'e',
12013067778SAndreas Gohr    'ვ' => 'v',
12113067778SAndreas Gohr    'ზ' => 'z',
12213067778SAndreas Gohr    'თ' => 'th',
12313067778SAndreas Gohr    'ი' => 'i',
12413067778SAndreas Gohr    'კ' => 'p',
12513067778SAndreas Gohr    'ლ' => 'l',
12613067778SAndreas Gohr    'მ' => 'm',
12713067778SAndreas Gohr    'ნ' => 'n',
12813067778SAndreas Gohr    'ო' => 'o',
12913067778SAndreas Gohr    'პ' => 'p',
13013067778SAndreas Gohr    'ჟ' => 'zh',
13113067778SAndreas Gohr    'რ' => 'r',
13213067778SAndreas Gohr    'ს' => 's',
13313067778SAndreas Gohr    'ტ' => 't',
13413067778SAndreas Gohr    'უ' => 'u',
13513067778SAndreas Gohr    'ფ' => 'ph',
13613067778SAndreas Gohr    'ქ' => 'kh',
13713067778SAndreas Gohr    'ღ' => 'gh',
13813067778SAndreas Gohr    'ყ' => 'q',
13913067778SAndreas Gohr    'შ' => 'sh',
14013067778SAndreas Gohr    'ჩ' => 'ch',
14113067778SAndreas Gohr    'ც' => 'c',
14213067778SAndreas Gohr    'ძ' => 'dh',
14313067778SAndreas Gohr    'წ' => 'w',
14413067778SAndreas Gohr    'ჭ' => 'j',
14513067778SAndreas Gohr    'ხ' => 'x',
14613067778SAndreas Gohr    'ჯ' => 'jh',
14713067778SAndreas Gohr    'ჰ' => 'xh',
14813067778SAndreas Gohr
14913067778SAndreas Gohr    //Sanskrit
15013067778SAndreas Gohr    'अ' => 'a',
15113067778SAndreas Gohr    'आ' => 'ah',
15213067778SAndreas Gohr    'इ' => 'i',
15313067778SAndreas Gohr    'ई' => 'ih',
15413067778SAndreas Gohr    'उ' => 'u',
15513067778SAndreas Gohr    'ऊ' => 'uh',
15613067778SAndreas Gohr    'ऋ' => 'ry',
15713067778SAndreas Gohr    'ॠ' => 'ryh',
15813067778SAndreas Gohr    'ऌ' => 'ly',
15913067778SAndreas Gohr    'ॡ' => 'lyh',
16013067778SAndreas Gohr    'ए' => 'e',
16113067778SAndreas Gohr    'ऐ' => 'ay',
16213067778SAndreas Gohr    'ओ' => 'o',
16313067778SAndreas Gohr    'औ' => 'aw',
16413067778SAndreas Gohr    'अं' => 'amh',
16513067778SAndreas Gohr    'अः' => 'aq',
16613067778SAndreas Gohr    'क' => 'k',
16713067778SAndreas Gohr    'ख' => 'kh',
16813067778SAndreas Gohr    'ग' => 'g',
16913067778SAndreas Gohr    'घ' => 'gh',
17013067778SAndreas Gohr    'ङ' => 'nh',
17113067778SAndreas Gohr    'च' => 'c',
17213067778SAndreas Gohr    'छ' => 'ch',
17313067778SAndreas Gohr    'ज' => 'j',
17413067778SAndreas Gohr    'झ' => 'jh',
17513067778SAndreas Gohr    'ञ' => 'ny',
17613067778SAndreas Gohr    'ट' => 'tq',
17713067778SAndreas Gohr    'ठ' => 'tqh',
17813067778SAndreas Gohr    'ड' => 'dq',
17913067778SAndreas Gohr    'ढ' => 'dqh',
18013067778SAndreas Gohr    'ण' => 'nq',
18113067778SAndreas Gohr    'त' => 't',
18213067778SAndreas Gohr    'थ' => 'th',
18313067778SAndreas Gohr    'द' => 'd',
18413067778SAndreas Gohr    'ध' => 'dh',
18513067778SAndreas Gohr    'न' => 'n',
18613067778SAndreas Gohr    'प' => 'p',
18713067778SAndreas Gohr    'फ' => 'ph',
18813067778SAndreas Gohr    'ब' => 'b',
18913067778SAndreas Gohr    'भ' => 'bh',
19013067778SAndreas Gohr    'म' => 'm',
19113067778SAndreas Gohr    'य' => 'z',
19213067778SAndreas Gohr    'र' => 'r',
19313067778SAndreas Gohr    'ल' => 'l',
19413067778SAndreas Gohr    'व' => 'v',
19513067778SAndreas Gohr    'श' => 'sh',
19613067778SAndreas Gohr    'ष' => 'sqh',
19713067778SAndreas Gohr    'स' => 's',
19813067778SAndreas Gohr    'ह' => 'x',
19913067778SAndreas Gohr
20013067778SAndreas Gohr    //Sanskrit diacritics
20113067778SAndreas Gohr    'Ā' => 'A',
20213067778SAndreas Gohr    'Ī' => 'I',
20313067778SAndreas Gohr    'Ū' => 'U',
20413067778SAndreas Gohr    'Ṛ' => 'R',
20513067778SAndreas Gohr    'Ṝ' => 'R',
20613067778SAndreas Gohr    'Ṅ' => 'N',
20713067778SAndreas Gohr    'Ñ' => 'N',
20813067778SAndreas Gohr    'Ṭ' => 'T',
20913067778SAndreas Gohr    'Ḍ' => 'D',
21013067778SAndreas Gohr    'Ṇ' => 'N',
21113067778SAndreas Gohr    'Ś' => 'S',
21213067778SAndreas Gohr    'Ṣ' => 'S',
21313067778SAndreas Gohr    'Ṁ' => 'M',
21413067778SAndreas Gohr    'Ṃ' => 'M',
21513067778SAndreas Gohr    'Ḥ' => 'H',
21613067778SAndreas Gohr    'Ḷ' => 'L',
21713067778SAndreas Gohr    'Ḹ' => 'L',
21813067778SAndreas Gohr    'ā' => 'a',
21913067778SAndreas Gohr    'ī' => 'i',
22013067778SAndreas Gohr    'ū' => 'u',
22113067778SAndreas Gohr    'ṛ' => 'r',
22213067778SAndreas Gohr    'ṝ' => 'r',
22313067778SAndreas Gohr    'ṅ' => 'n',
22413067778SAndreas Gohr    'ñ' => 'n',
22513067778SAndreas Gohr    'ṭ' => 't',
22613067778SAndreas Gohr    'ḍ' => 'd',
22713067778SAndreas Gohr    'ṇ' => 'n',
22813067778SAndreas Gohr    'ś' => 's',
22913067778SAndreas Gohr    'ṣ' => 's',
23013067778SAndreas Gohr    'ṁ' => 'm',
23113067778SAndreas Gohr    'ṃ' => 'm',
23213067778SAndreas Gohr    'ḥ' => 'h',
23313067778SAndreas Gohr    'ḷ' => 'l',
23413067778SAndreas Gohr    'ḹ' => 'l',
23513067778SAndreas Gohr
23613067778SAndreas Gohr    //Hebrew
23713067778SAndreas Gohr    'א' => 'a',
23813067778SAndreas Gohr    'ב' => 'b',
23913067778SAndreas Gohr    'ג' => 'g',
24013067778SAndreas Gohr    'ד' => 'd',
24113067778SAndreas Gohr    'ה' => 'h',
24213067778SAndreas Gohr    'ו' => 'v',
24313067778SAndreas Gohr    'ז' => 'z',
24413067778SAndreas Gohr    'ח' => 'kh',
24513067778SAndreas Gohr    'ט' => 'th',
24613067778SAndreas Gohr    'י' => 'y',
24713067778SAndreas Gohr    'ך' => 'h',
24813067778SAndreas Gohr    'כ' => 'k',
24913067778SAndreas Gohr    'ל' => 'l',
25013067778SAndreas Gohr    'ם' => 'm',
25113067778SAndreas Gohr    'מ' => 'm',
25213067778SAndreas Gohr    'ן' => 'n',
25313067778SAndreas Gohr    'נ' => 'n',
25413067778SAndreas Gohr    'ס' => 's',
25513067778SAndreas Gohr    'ע' => 'ah',
25613067778SAndreas Gohr    'ף' => 'f',
25713067778SAndreas Gohr    'פ' => 'p',
25813067778SAndreas Gohr    'ץ' => 'c',
25913067778SAndreas Gohr    'צ' => 'c',
26013067778SAndreas Gohr    'ק' => 'q',
26113067778SAndreas Gohr    'ר' => 'r',
26213067778SAndreas Gohr    'ש' => 'sh',
26313067778SAndreas Gohr    'ת' => 't',
26413067778SAndreas Gohr
26513067778SAndreas Gohr    //Arabic
26613067778SAndreas Gohr    'ا' => 'a',
26713067778SAndreas Gohr    'ب' => 'b',
26813067778SAndreas Gohr    'ت' => 't',
26913067778SAndreas Gohr    'ث' => 'th',
27013067778SAndreas Gohr    'ج' => 'g',
27113067778SAndreas Gohr    'ح' => 'xh',
27213067778SAndreas Gohr    'خ' => 'x',
27313067778SAndreas Gohr    'د' => 'd',
27413067778SAndreas Gohr    'ذ' => 'dh',
27513067778SAndreas Gohr    'ر' => 'r',
27613067778SAndreas Gohr    'ز' => 'z',
27713067778SAndreas Gohr    'س' => 's',
27813067778SAndreas Gohr    'ش' => 'sh',
27913067778SAndreas Gohr    'ص' => 's\'',
28013067778SAndreas Gohr    'ض' => 'd\'',
28113067778SAndreas Gohr    'ط' => 't\'',
28213067778SAndreas Gohr    'ظ' => 'z\'',
28313067778SAndreas Gohr    'ع' => 'y',
28413067778SAndreas Gohr    'غ' => 'gh',
28513067778SAndreas Gohr    'ف' => 'f',
28613067778SAndreas Gohr    'ق' => 'q',
28713067778SAndreas Gohr    'ك' => 'k',
28813067778SAndreas Gohr    'ل' => 'l',
28913067778SAndreas Gohr    'م' => 'm',
29013067778SAndreas Gohr    'ن' => 'n',
29113067778SAndreas Gohr    'ه' => 'x\'',
29213067778SAndreas Gohr    'و' => 'u',
29313067778SAndreas Gohr    'ي' => 'i',
29413067778SAndreas Gohr
29513067778SAndreas Gohr    // Japanese characters  (last update: 2008-05-09)
29613067778SAndreas Gohr
29713067778SAndreas Gohr    // Japanese hiragana
29813067778SAndreas Gohr
29913067778SAndreas Gohr    // 3 character syllables, っ doubles the consonant after
30013067778SAndreas Gohr    'っちゃ' => 'ccha',
30113067778SAndreas Gohr    'っちぇ' => 'cche',
30213067778SAndreas Gohr    'っちょ' => 'ccho',
30313067778SAndreas Gohr    'っちゅ' => 'cchu',
30413067778SAndreas Gohr    'っびゃ' => 'bbya',
30513067778SAndreas Gohr    'っびぇ' => 'bbye',
30613067778SAndreas Gohr    'っびぃ' => 'bbyi',
30713067778SAndreas Gohr    'っびょ' => 'bbyo',
30813067778SAndreas Gohr    'っびゅ' => 'bbyu',
30913067778SAndreas Gohr    'っぴゃ' => 'ppya',
31013067778SAndreas Gohr    'っぴぇ' => 'ppye',
31113067778SAndreas Gohr    'っぴぃ' => 'ppyi',
31213067778SAndreas Gohr    'っぴょ' => 'ppyo',
31313067778SAndreas Gohr    'っぴゅ' => 'ppyu',
31413067778SAndreas Gohr    'っちゃ' => 'ccha',
31513067778SAndreas Gohr    'っちぇ' => 'cche',
31613067778SAndreas Gohr    'っち' => 'cchi',
31713067778SAndreas Gohr    'っちょ' => 'ccho',
31813067778SAndreas Gohr    'っちゅ' => 'cchu',
31913067778SAndreas Gohr    // 'っひゃ'=>'hya',
32013067778SAndreas Gohr    // 'っひぇ'=>'hye',
32113067778SAndreas Gohr    // 'っひぃ'=>'hyi',
32213067778SAndreas Gohr    // 'っひょ'=>'hyo',
32313067778SAndreas Gohr    // 'っひゅ'=>'hyu',
32413067778SAndreas Gohr    'っきゃ' => 'kkya',
32513067778SAndreas Gohr    'っきぇ' => 'kkye',
32613067778SAndreas Gohr    'っきぃ' => 'kkyi',
32713067778SAndreas Gohr    'っきょ' => 'kkyo',
32813067778SAndreas Gohr    'っきゅ' => 'kkyu',
32913067778SAndreas Gohr    'っぎゃ' => 'ggya',
33013067778SAndreas Gohr    'っぎぇ' => 'ggye',
33113067778SAndreas Gohr    'っぎぃ' => 'ggyi',
33213067778SAndreas Gohr    'っぎょ' => 'ggyo',
33313067778SAndreas Gohr    'っぎゅ' => 'ggyu',
33413067778SAndreas Gohr    'っみゃ' => 'mmya',
33513067778SAndreas Gohr    'っみぇ' => 'mmye',
33613067778SAndreas Gohr    'っみぃ' => 'mmyi',
33713067778SAndreas Gohr    'っみょ' => 'mmyo',
33813067778SAndreas Gohr    'っみゅ' => 'mmyu',
33913067778SAndreas Gohr    'っにゃ' => 'nnya',
34013067778SAndreas Gohr    'っにぇ' => 'nnye',
34113067778SAndreas Gohr    'っにぃ' => 'nnyi',
34213067778SAndreas Gohr    'っにょ' => 'nnyo',
34313067778SAndreas Gohr    'っにゅ' => 'nnyu',
34413067778SAndreas Gohr    'っりゃ' => 'rrya',
34513067778SAndreas Gohr    'っりぇ' => 'rrye',
34613067778SAndreas Gohr    'っりぃ' => 'rryi',
34713067778SAndreas Gohr    'っりょ' => 'rryo',
34813067778SAndreas Gohr    'っりゅ' => 'rryu',
34913067778SAndreas Gohr    'っしゃ' => 'ssha',
35013067778SAndreas Gohr    'っしぇ' => 'sshe',
35113067778SAndreas Gohr    'っし' => 'sshi',
35213067778SAndreas Gohr    'っしょ' => 'ssho',
35313067778SAndreas Gohr    'っしゅ' => 'sshu',
35413067778SAndreas Gohr
35513067778SAndreas Gohr    // seperate hiragana 'n' ('n' + 'i' != 'ni', normally we would write "kon'nichi wa" but the
35613067778SAndreas Gohr    // apostrophe would be converted to _ anyway)
35713067778SAndreas Gohr    'んあ' => 'n_a',
35813067778SAndreas Gohr    'んえ' => 'n_e',
35913067778SAndreas Gohr    'んい' => 'n_i',
36013067778SAndreas Gohr    'んお' => 'n_o',
36113067778SAndreas Gohr    'んう' => 'n_u',
36213067778SAndreas Gohr    'んや' => 'n_ya',
36313067778SAndreas Gohr    'んよ' => 'n_yo',
36413067778SAndreas Gohr    'んゆ' => 'n_yu',
36513067778SAndreas Gohr
36613067778SAndreas Gohr    // 2 character syllables - normal
36713067778SAndreas Gohr    'ふぁ' => 'fa',
36813067778SAndreas Gohr    'ふぇ' => 'fe',
36913067778SAndreas Gohr    'ふぃ' => 'fi',
37013067778SAndreas Gohr    'ふぉ' => 'fo',
37113067778SAndreas Gohr    'ちゃ' => 'cha',
37213067778SAndreas Gohr    'ちぇ' => 'che',
37313067778SAndreas Gohr    'ち' => 'chi',
37413067778SAndreas Gohr    'ちょ' => 'cho',
37513067778SAndreas Gohr    'ちゅ' => 'chu',
37613067778SAndreas Gohr    'ひゃ' => 'hya',
37713067778SAndreas Gohr    'ひぇ' => 'hye',
37813067778SAndreas Gohr    'ひぃ' => 'hyi',
37913067778SAndreas Gohr    'ひょ' => 'hyo',
38013067778SAndreas Gohr    'ひゅ' => 'hyu',
38113067778SAndreas Gohr    'びゃ' => 'bya',
38213067778SAndreas Gohr    'びぇ' => 'bye',
38313067778SAndreas Gohr    'びぃ' => 'byi',
38413067778SAndreas Gohr    'びょ' => 'byo',
38513067778SAndreas Gohr    'びゅ' => 'byu',
38613067778SAndreas Gohr    'ぴゃ' => 'pya',
38713067778SAndreas Gohr    'ぴぇ' => 'pye',
38813067778SAndreas Gohr    'ぴぃ' => 'pyi',
38913067778SAndreas Gohr    'ぴょ' => 'pyo',
39013067778SAndreas Gohr    'ぴゅ' => 'pyu',
39113067778SAndreas Gohr    'きゃ' => 'kya',
39213067778SAndreas Gohr    'きぇ' => 'kye',
39313067778SAndreas Gohr    'きぃ' => 'kyi',
39413067778SAndreas Gohr    'きょ' => 'kyo',
39513067778SAndreas Gohr    'きゅ' => 'kyu',
39613067778SAndreas Gohr    'ぎゃ' => 'gya',
39713067778SAndreas Gohr    'ぎぇ' => 'gye',
39813067778SAndreas Gohr    'ぎぃ' => 'gyi',
39913067778SAndreas Gohr    'ぎょ' => 'gyo',
40013067778SAndreas Gohr    'ぎゅ' => 'gyu',
40113067778SAndreas Gohr    'みゃ' => 'mya',
40213067778SAndreas Gohr    'みぇ' => 'mye',
40313067778SAndreas Gohr    'みぃ' => 'myi',
40413067778SAndreas Gohr    'みょ' => 'myo',
40513067778SAndreas Gohr    'みゅ' => 'myu',
40613067778SAndreas Gohr    'にゃ' => 'nya',
40713067778SAndreas Gohr    'にぇ' => 'nye',
40813067778SAndreas Gohr    'にぃ' => 'nyi',
40913067778SAndreas Gohr    'にょ' => 'nyo',
41013067778SAndreas Gohr    'にゅ' => 'nyu',
41113067778SAndreas Gohr    'りゃ' => 'rya',
41213067778SAndreas Gohr    'りぇ' => 'rye',
41313067778SAndreas Gohr    'りぃ' => 'ryi',
41413067778SAndreas Gohr    'りょ' => 'ryo',
41513067778SAndreas Gohr    'りゅ' => 'ryu',
41613067778SAndreas Gohr    'しゃ' => 'sha',
41713067778SAndreas Gohr    'しぇ' => 'she',
41813067778SAndreas Gohr    'し' => 'shi',
41913067778SAndreas Gohr    'しょ' => 'sho',
42013067778SAndreas Gohr    'しゅ' => 'shu',
42113067778SAndreas Gohr    'じゃ' => 'ja',
42213067778SAndreas Gohr    'じぇ' => 'je',
42313067778SAndreas Gohr    'じょ' => 'jo',
42413067778SAndreas Gohr    'じゅ' => 'ju',
42513067778SAndreas Gohr    'うぇ' => 'we',
42613067778SAndreas Gohr    'うぃ' => 'wi',
42713067778SAndreas Gohr    'いぇ' => 'ye',
42813067778SAndreas Gohr
42913067778SAndreas Gohr    // 2 character syllables, っ doubles the consonant after
43013067778SAndreas Gohr    'っば' => 'bba',
43113067778SAndreas Gohr    'っべ' => 'bbe',
43213067778SAndreas Gohr    'っび' => 'bbi',
43313067778SAndreas Gohr    'っぼ' => 'bbo',
43413067778SAndreas Gohr    'っぶ' => 'bbu',
43513067778SAndreas Gohr    'っぱ' => 'ppa',
43613067778SAndreas Gohr    'っぺ' => 'ppe',
43713067778SAndreas Gohr    'っぴ' => 'ppi',
43813067778SAndreas Gohr    'っぽ' => 'ppo',
43913067778SAndreas Gohr    'っぷ' => 'ppu',
44013067778SAndreas Gohr    'った' => 'tta',
44113067778SAndreas Gohr    'って' => 'tte',
44213067778SAndreas Gohr    'っち' => 'cchi',
44313067778SAndreas Gohr    'っと' => 'tto',
44413067778SAndreas Gohr    'っつ' => 'ttsu',
44513067778SAndreas Gohr    'っだ' => 'dda',
44613067778SAndreas Gohr    'っで' => 'dde',
44713067778SAndreas Gohr    'っぢ' => 'ddi',
44813067778SAndreas Gohr    'っど' => 'ddo',
44913067778SAndreas Gohr    'っづ' => 'ddu',
45013067778SAndreas Gohr    'っが' => 'gga',
45113067778SAndreas Gohr    'っげ' => 'gge',
45213067778SAndreas Gohr    'っぎ' => 'ggi',
45313067778SAndreas Gohr    'っご' => 'ggo',
45413067778SAndreas Gohr    'っぐ' => 'ggu',
45513067778SAndreas Gohr    'っか' => 'kka',
45613067778SAndreas Gohr    'っけ' => 'kke',
45713067778SAndreas Gohr    'っき' => 'kki',
45813067778SAndreas Gohr    'っこ' => 'kko',
45913067778SAndreas Gohr    'っく' => 'kku',
46013067778SAndreas Gohr    'っま' => 'mma',
46113067778SAndreas Gohr    'っめ' => 'mme',
46213067778SAndreas Gohr    'っみ' => 'mmi',
46313067778SAndreas Gohr    'っも' => 'mmo',
46413067778SAndreas Gohr    'っむ' => 'mmu',
46513067778SAndreas Gohr    'っな' => 'nna',
46613067778SAndreas Gohr    'っね' => 'nne',
46713067778SAndreas Gohr    'っに' => 'nni',
46813067778SAndreas Gohr    'っの' => 'nno',
46913067778SAndreas Gohr    'っぬ' => 'nnu',
47013067778SAndreas Gohr    'っら' => 'rra',
47113067778SAndreas Gohr    'っれ' => 'rre',
47213067778SAndreas Gohr    'っり' => 'rri',
47313067778SAndreas Gohr    'っろ' => 'rro',
47413067778SAndreas Gohr    'っる' => 'rru',
47513067778SAndreas Gohr    'っさ' => 'ssa',
47613067778SAndreas Gohr    'っせ' => 'sse',
47713067778SAndreas Gohr    'っし' => 'sshi',
47813067778SAndreas Gohr    'っそ' => 'sso',
47913067778SAndreas Gohr    'っす' => 'ssu',
48013067778SAndreas Gohr    'っざ' => 'zza',
48113067778SAndreas Gohr    'っぜ' => 'zze',
48213067778SAndreas Gohr    'っじ' => 'jji',
48313067778SAndreas Gohr    'っぞ' => 'zzo',
48413067778SAndreas Gohr    'っず' => 'zzu',
48513067778SAndreas Gohr
48613067778SAndreas Gohr    // 1 character syllabels
48713067778SAndreas Gohr    'あ' => 'a',
48813067778SAndreas Gohr    'え' => 'e',
48913067778SAndreas Gohr    'い' => 'i',
49013067778SAndreas Gohr    'お' => 'o',
49113067778SAndreas Gohr    'う' => 'u',
49213067778SAndreas Gohr    'ん' => 'n',
49313067778SAndreas Gohr    'は' => 'ha',
49413067778SAndreas Gohr    'へ' => 'he',
49513067778SAndreas Gohr    'ひ' => 'hi',
49613067778SAndreas Gohr    'ほ' => 'ho',
49713067778SAndreas Gohr    'ふ' => 'fu',
49813067778SAndreas Gohr    'ば' => 'ba',
49913067778SAndreas Gohr    'べ' => 'be',
50013067778SAndreas Gohr    'び' => 'bi',
50113067778SAndreas Gohr    'ぼ' => 'bo',
50213067778SAndreas Gohr    'ぶ' => 'bu',
50313067778SAndreas Gohr    'ぱ' => 'pa',
50413067778SAndreas Gohr    'ぺ' => 'pe',
50513067778SAndreas Gohr    'ぴ' => 'pi',
50613067778SAndreas Gohr    'ぽ' => 'po',
50713067778SAndreas Gohr    'ぷ' => 'pu',
50813067778SAndreas Gohr    'た' => 'ta',
50913067778SAndreas Gohr    'て' => 'te',
51013067778SAndreas Gohr    'ち' => 'chi',
51113067778SAndreas Gohr    'と' => 'to',
51213067778SAndreas Gohr    'つ' => 'tsu',
51313067778SAndreas Gohr    'だ' => 'da',
51413067778SAndreas Gohr    'で' => 'de',
51513067778SAndreas Gohr    'ぢ' => 'di',
51613067778SAndreas Gohr    'ど' => 'do',
51713067778SAndreas Gohr    'づ' => 'du',
51813067778SAndreas Gohr    'が' => 'ga',
51913067778SAndreas Gohr    'げ' => 'ge',
52013067778SAndreas Gohr    'ぎ' => 'gi',
52113067778SAndreas Gohr    'ご' => 'go',
52213067778SAndreas Gohr    'ぐ' => 'gu',
52313067778SAndreas Gohr    'か' => 'ka',
52413067778SAndreas Gohr    'け' => 'ke',
52513067778SAndreas Gohr    'き' => 'ki',
52613067778SAndreas Gohr    'こ' => 'ko',
52713067778SAndreas Gohr    'く' => 'ku',
52813067778SAndreas Gohr    'ま' => 'ma',
52913067778SAndreas Gohr    'め' => 'me',
53013067778SAndreas Gohr    'み' => 'mi',
53113067778SAndreas Gohr    'も' => 'mo',
53213067778SAndreas Gohr    'む' => 'mu',
53313067778SAndreas Gohr    'な' => 'na',
53413067778SAndreas Gohr    'ね' => 'ne',
53513067778SAndreas Gohr    'に' => 'ni',
53613067778SAndreas Gohr    'の' => 'no',
53713067778SAndreas Gohr    'ぬ' => 'nu',
53813067778SAndreas Gohr    'ら' => 'ra',
53913067778SAndreas Gohr    'れ' => 're',
54013067778SAndreas Gohr    'り' => 'ri',
54113067778SAndreas Gohr    'ろ' => 'ro',
54213067778SAndreas Gohr    'る' => 'ru',
54313067778SAndreas Gohr    'さ' => 'sa',
54413067778SAndreas Gohr    'せ' => 'se',
54513067778SAndreas Gohr    'し' => 'shi',
54613067778SAndreas Gohr    'そ' => 'so',
54713067778SAndreas Gohr    'す' => 'su',
54813067778SAndreas Gohr    'わ' => 'wa',
54913067778SAndreas Gohr    'を' => 'wo',
55013067778SAndreas Gohr    'ざ' => 'za',
55113067778SAndreas Gohr    'ぜ' => 'ze',
55213067778SAndreas Gohr    'じ' => 'ji',
55313067778SAndreas Gohr    'ぞ' => 'zo',
55413067778SAndreas Gohr    'ず' => 'zu',
55513067778SAndreas Gohr    'や' => 'ya',
55613067778SAndreas Gohr    'よ' => 'yo',
55713067778SAndreas Gohr    'ゆ' => 'yu',
55813067778SAndreas Gohr    // old characters
55913067778SAndreas Gohr    'ゑ' => 'we',
56013067778SAndreas Gohr    'ゐ' => 'wi',
56113067778SAndreas Gohr
56213067778SAndreas Gohr    //  convert what's left (probably only kicks in when something's missing above)
56313067778SAndreas Gohr    // 'ぁ'=>'a','ぇ'=>'e','ぃ'=>'i','ぉ'=>'o','ぅ'=>'u',
56413067778SAndreas Gohr    // 'ゃ'=>'ya','ょ'=>'yo','ゅ'=>'yu',
56513067778SAndreas Gohr
56613067778SAndreas Gohr    // never seen one of those (disabled for the moment)
56713067778SAndreas Gohr    // 'ヴぁ'=>'va','ヴぇ'=>'ve','ヴぃ'=>'vi','ヴぉ'=>'vo','ヴ'=>'vu',
56813067778SAndreas Gohr    // 'でゃ'=>'dha','でぇ'=>'dhe','でぃ'=>'dhi','でょ'=>'dho','でゅ'=>'dhu',
56913067778SAndreas Gohr    // 'どぁ'=>'dwa','どぇ'=>'dwe','どぃ'=>'dwi','どぉ'=>'dwo','どぅ'=>'dwu',
57013067778SAndreas Gohr    // 'ぢゃ'=>'dya','ぢぇ'=>'dye','ぢぃ'=>'dyi','ぢょ'=>'dyo','ぢゅ'=>'dyu',
57113067778SAndreas Gohr    // 'ふぁ'=>'fwa','ふぇ'=>'fwe','ふぃ'=>'fwi','ふぉ'=>'fwo','ふぅ'=>'fwu',
57213067778SAndreas Gohr    // 'ふゃ'=>'fya','ふぇ'=>'fye','ふぃ'=>'fyi','ふょ'=>'fyo','ふゅ'=>'fyu',
57313067778SAndreas Gohr    // 'すぁ'=>'swa','すぇ'=>'swe','すぃ'=>'swi','すぉ'=>'swo','すぅ'=>'swu',
57413067778SAndreas Gohr    // 'てゃ'=>'tha','てぇ'=>'the','てぃ'=>'thi','てょ'=>'tho','てゅ'=>'thu',
57513067778SAndreas Gohr    // 'つゃ'=>'tsa','つぇ'=>'tse','つぃ'=>'tsi','つょ'=>'tso','つ'=>'tsu',
57613067778SAndreas Gohr    // 'とぁ'=>'twa','とぇ'=>'twe','とぃ'=>'twi','とぉ'=>'two','とぅ'=>'twu',
57713067778SAndreas Gohr    // 'ヴゃ'=>'vya','ヴぇ'=>'vye','ヴぃ'=>'vyi','ヴょ'=>'vyo','ヴゅ'=>'vyu',
57813067778SAndreas Gohr    // 'うぁ'=>'wha','うぇ'=>'whe','うぃ'=>'whi','うぉ'=>'who','うぅ'=>'whu',
57913067778SAndreas Gohr    // 'じゃ'=>'zha','じぇ'=>'zhe','じぃ'=>'zhi','じょ'=>'zho','じゅ'=>'zhu',
58013067778SAndreas Gohr    // 'じゃ'=>'zya','じぇ'=>'zye','じぃ'=>'zyi','じょ'=>'zyo','じゅ'=>'zyu',
58113067778SAndreas Gohr
58213067778SAndreas Gohr    // 'spare' characters from other romanization systems
58313067778SAndreas Gohr    // 'だ'=>'da','で'=>'de','ぢ'=>'di','ど'=>'do','づ'=>'du',
58413067778SAndreas Gohr    // 'ら'=>'la','れ'=>'le','り'=>'li','ろ'=>'lo','る'=>'lu',
58513067778SAndreas Gohr    // 'さ'=>'sa','せ'=>'se','し'=>'si','そ'=>'so','す'=>'su',
58613067778SAndreas Gohr    // 'ちゃ'=>'cya','ちぇ'=>'cye','ちぃ'=>'cyi','ちょ'=>'cyo','ちゅ'=>'cyu',
58713067778SAndreas Gohr    //'じゃ'=>'jya','じぇ'=>'jye','じぃ'=>'jyi','じょ'=>'jyo','じゅ'=>'jyu',
58813067778SAndreas Gohr    //'りゃ'=>'lya','りぇ'=>'lye','りぃ'=>'lyi','りょ'=>'lyo','りゅ'=>'lyu',
58913067778SAndreas Gohr    //'しゃ'=>'sya','しぇ'=>'sye','しぃ'=>'syi','しょ'=>'syo','しゅ'=>'syu',
59013067778SAndreas Gohr    //'ちゃ'=>'tya','ちぇ'=>'tye','ちぃ'=>'tyi','ちょ'=>'tyo','ちゅ'=>'tyu',
59113067778SAndreas Gohr    //'し'=>'ci',,い'=>'yi','ぢ'=>'dzi',
59213067778SAndreas Gohr    //'っじゃ'=>'jja','っじぇ'=>'jje','っじ'=>'jji','っじょ'=>'jjo','っじゅ'=>'jju',
59313067778SAndreas Gohr
59413067778SAndreas Gohr
59513067778SAndreas Gohr    // Japanese katakana
59613067778SAndreas Gohr
59713067778SAndreas Gohr    // 4 character syllables: ッ doubles the consonant after, ー doubles the vowel before
59813067778SAndreas Gohr    // (usualy written with macron, but we don't want that in our URLs)
59913067778SAndreas Gohr    'ッビャー' => 'bbyaa',
60013067778SAndreas Gohr    'ッビェー' => 'bbyee',
60113067778SAndreas Gohr    'ッビィー' => 'bbyii',
60213067778SAndreas Gohr    'ッビョー' => 'bbyoo',
60313067778SAndreas Gohr    'ッビュー' => 'bbyuu',
60413067778SAndreas Gohr    'ッピャー' => 'ppyaa',
60513067778SAndreas Gohr    'ッピェー' => 'ppyee',
60613067778SAndreas Gohr    'ッピィー' => 'ppyii',
60713067778SAndreas Gohr    'ッピョー' => 'ppyoo',
60813067778SAndreas Gohr    'ッピュー' => 'ppyuu',
60913067778SAndreas Gohr    'ッキャー' => 'kkyaa',
61013067778SAndreas Gohr    'ッキェー' => 'kkyee',
61113067778SAndreas Gohr    'ッキィー' => 'kkyii',
61213067778SAndreas Gohr    'ッキョー' => 'kkyoo',
61313067778SAndreas Gohr    'ッキュー' => 'kkyuu',
61413067778SAndreas Gohr    'ッギャー' => 'ggyaa',
61513067778SAndreas Gohr    'ッギェー' => 'ggyee',
61613067778SAndreas Gohr    'ッギィー' => 'ggyii',
61713067778SAndreas Gohr    'ッギョー' => 'ggyoo',
61813067778SAndreas Gohr    'ッギュー' => 'ggyuu',
61913067778SAndreas Gohr    'ッミャー' => 'mmyaa',
62013067778SAndreas Gohr    'ッミェー' => 'mmyee',
62113067778SAndreas Gohr    'ッミィー' => 'mmyii',
62213067778SAndreas Gohr    'ッミョー' => 'mmyoo',
62313067778SAndreas Gohr    'ッミュー' => 'mmyuu',
62413067778SAndreas Gohr    'ッニャー' => 'nnyaa',
62513067778SAndreas Gohr    'ッニェー' => 'nnyee',
62613067778SAndreas Gohr    'ッニィー' => 'nnyii',
62713067778SAndreas Gohr    'ッニョー' => 'nnyoo',
62813067778SAndreas Gohr    'ッニュー' => 'nnyuu',
62913067778SAndreas Gohr    'ッリャー' => 'rryaa',
63013067778SAndreas Gohr    'ッリェー' => 'rryee',
63113067778SAndreas Gohr    'ッリィー' => 'rryii',
63213067778SAndreas Gohr    'ッリョー' => 'rryoo',
63313067778SAndreas Gohr    'ッリュー' => 'rryuu',
63413067778SAndreas Gohr    'ッシャー' => 'sshaa',
63513067778SAndreas Gohr    'ッシェー' => 'sshee',
63613067778SAndreas Gohr    'ッシー' => 'sshii',
63713067778SAndreas Gohr    'ッショー' => 'sshoo',
63813067778SAndreas Gohr    'ッシュー' => 'sshuu',
63913067778SAndreas Gohr    'ッチャー' => 'cchaa',
64013067778SAndreas Gohr    'ッチェー' => 'cchee',
64113067778SAndreas Gohr    'ッチー' => 'cchii',
64213067778SAndreas Gohr    'ッチョー' => 'cchoo',
64313067778SAndreas Gohr    'ッチュー' => 'cchuu',
64413067778SAndreas Gohr    'ッティー' => 'ttii',
64513067778SAndreas Gohr    'ッヂィー' => 'ddii',
64613067778SAndreas Gohr
64713067778SAndreas Gohr    // 3 character syllables - doubled vowels
64813067778SAndreas Gohr    'ファー' => 'faa',
64913067778SAndreas Gohr    'フェー' => 'fee',
65013067778SAndreas Gohr    'フィー' => 'fii',
65113067778SAndreas Gohr    'フォー' => 'foo',
65213067778SAndreas Gohr    'フャー' => 'fyaa',
65313067778SAndreas Gohr    'フェー' => 'fyee',
65413067778SAndreas Gohr    'フィー' => 'fyii',
65513067778SAndreas Gohr    'フョー' => 'fyoo',
65613067778SAndreas Gohr    'フュー' => 'fyuu',
65713067778SAndreas Gohr    'ヒャー' => 'hyaa',
65813067778SAndreas Gohr    'ヒェー' => 'hyee',
65913067778SAndreas Gohr    'ヒィー' => 'hyii',
66013067778SAndreas Gohr    'ヒョー' => 'hyoo',
66113067778SAndreas Gohr    'ヒュー' => 'hyuu',
66213067778SAndreas Gohr    'ビャー' => 'byaa',
66313067778SAndreas Gohr    'ビェー' => 'byee',
66413067778SAndreas Gohr    'ビィー' => 'byii',
66513067778SAndreas Gohr    'ビョー' => 'byoo',
66613067778SAndreas Gohr    'ビュー' => 'byuu',
66713067778SAndreas Gohr    'ピャー' => 'pyaa',
66813067778SAndreas Gohr    'ピェー' => 'pyee',
66913067778SAndreas Gohr    'ピィー' => 'pyii',
67013067778SAndreas Gohr    'ピョー' => 'pyoo',
67113067778SAndreas Gohr    'ピュー' => 'pyuu',
67213067778SAndreas Gohr    'キャー' => 'kyaa',
67313067778SAndreas Gohr    'キェー' => 'kyee',
67413067778SAndreas Gohr    'キィー' => 'kyii',
67513067778SAndreas Gohr    'キョー' => 'kyoo',
67613067778SAndreas Gohr    'キュー' => 'kyuu',
67713067778SAndreas Gohr    'ギャー' => 'gyaa',
67813067778SAndreas Gohr    'ギェー' => 'gyee',
67913067778SAndreas Gohr    'ギィー' => 'gyii',
68013067778SAndreas Gohr    'ギョー' => 'gyoo',
68113067778SAndreas Gohr    'ギュー' => 'gyuu',
68213067778SAndreas Gohr    'ミャー' => 'myaa',
68313067778SAndreas Gohr    'ミェー' => 'myee',
68413067778SAndreas Gohr    'ミィー' => 'myii',
68513067778SAndreas Gohr    'ミョー' => 'myoo',
68613067778SAndreas Gohr    'ミュー' => 'myuu',
68713067778SAndreas Gohr    'ニャー' => 'nyaa',
68813067778SAndreas Gohr    'ニェー' => 'nyee',
68913067778SAndreas Gohr    'ニィー' => 'nyii',
69013067778SAndreas Gohr    'ニョー' => 'nyoo',
69113067778SAndreas Gohr    'ニュー' => 'nyuu',
69213067778SAndreas Gohr    'リャー' => 'ryaa',
69313067778SAndreas Gohr    'リェー' => 'ryee',
69413067778SAndreas Gohr    'リィー' => 'ryii',
69513067778SAndreas Gohr    'リョー' => 'ryoo',
69613067778SAndreas Gohr    'リュー' => 'ryuu',
69713067778SAndreas Gohr    'シャー' => 'shaa',
69813067778SAndreas Gohr    'シェー' => 'shee',
69913067778SAndreas Gohr    'シー' => 'shii',
70013067778SAndreas Gohr    'ショー' => 'shoo',
70113067778SAndreas Gohr    'シュー' => 'shuu',
70213067778SAndreas Gohr    'ジャー' => 'jaa',
70313067778SAndreas Gohr    'ジェー' => 'jee',
70413067778SAndreas Gohr    'ジー' => 'jii',
70513067778SAndreas Gohr    'ジョー' => 'joo',
70613067778SAndreas Gohr    'ジュー' => 'juu',
70713067778SAndreas Gohr    'スァー' => 'swaa',
70813067778SAndreas Gohr    'スェー' => 'swee',
70913067778SAndreas Gohr    'スィー' => 'swii',
71013067778SAndreas Gohr    'スォー' => 'swoo',
71113067778SAndreas Gohr    'スゥー' => 'swuu',
71213067778SAndreas Gohr    'デァー' => 'daa',
71313067778SAndreas Gohr    'デェー' => 'dee',
71413067778SAndreas Gohr    'ディー' => 'dii',
71513067778SAndreas Gohr    'デォー' => 'doo',
71613067778SAndreas Gohr    'デゥー' => 'duu',
71713067778SAndreas Gohr    'チャー' => 'chaa',
71813067778SAndreas Gohr    'チェー' => 'chee',
71913067778SAndreas Gohr    'チー' => 'chii',
72013067778SAndreas Gohr    'チョー' => 'choo',
72113067778SAndreas Gohr    'チュー' => 'chuu',
72213067778SAndreas Gohr    'ヂャー' => 'dyaa',
72313067778SAndreas Gohr    'ヂェー' => 'dyee',
72413067778SAndreas Gohr    'ヂィー' => 'dyii',
72513067778SAndreas Gohr    'ヂョー' => 'dyoo',
72613067778SAndreas Gohr    'ヂュー' => 'dyuu',
72713067778SAndreas Gohr    'ツャー' => 'tsaa',
72813067778SAndreas Gohr    'ツェー' => 'tsee',
72913067778SAndreas Gohr    'ツィー' => 'tsii',
73013067778SAndreas Gohr    'ツョー' => 'tsoo',
73113067778SAndreas Gohr    'ツー' => 'tsuu',
73213067778SAndreas Gohr    'トァー' => 'twaa',
73313067778SAndreas Gohr    'トェー' => 'twee',
73413067778SAndreas Gohr    'トィー' => 'twii',
73513067778SAndreas Gohr    'トォー' => 'twoo',
73613067778SAndreas Gohr    'トゥー' => 'twuu',
73713067778SAndreas Gohr    'ドァー' => 'dwaa',
73813067778SAndreas Gohr    'ドェー' => 'dwee',
73913067778SAndreas Gohr    'ドィー' => 'dwii',
74013067778SAndreas Gohr    'ドォー' => 'dwoo',
74113067778SAndreas Gohr    'ドゥー' => 'dwuu',
74213067778SAndreas Gohr    'ウァー' => 'whaa',
74313067778SAndreas Gohr    'ウェー' => 'whee',
74413067778SAndreas Gohr    'ウィー' => 'whii',
74513067778SAndreas Gohr    'ウォー' => 'whoo',
74613067778SAndreas Gohr    'ウゥー' => 'whuu',
74713067778SAndreas Gohr    'ヴャー' => 'vyaa',
74813067778SAndreas Gohr    'ヴェー' => 'vyee',
74913067778SAndreas Gohr    'ヴィー' => 'vyii',
75013067778SAndreas Gohr    'ヴョー' => 'vyoo',
75113067778SAndreas Gohr    'ヴュー' => 'vyuu',
75213067778SAndreas Gohr    'ヴァー' => 'vaa',
75313067778SAndreas Gohr    'ヴェー' => 'vee',
75413067778SAndreas Gohr    'ヴィー' => 'vii',
75513067778SAndreas Gohr    'ヴォー' => 'voo',
75613067778SAndreas Gohr    'ヴー' => 'vuu',
75713067778SAndreas Gohr    'ウェー' => 'wee',
75813067778SAndreas Gohr    'ウィー' => 'wii',
75913067778SAndreas Gohr    'イェー' => 'yee',
76013067778SAndreas Gohr    'ティー' => 'tii',
76113067778SAndreas Gohr    'ヂィー' => 'dii',
76213067778SAndreas Gohr
76313067778SAndreas Gohr    // 3 character syllables - doubled consonants
76413067778SAndreas Gohr    'ッビャ' => 'bbya',
76513067778SAndreas Gohr    'ッビェ' => 'bbye',
76613067778SAndreas Gohr    'ッビィ' => 'bbyi',
76713067778SAndreas Gohr    'ッビョ' => 'bbyo',
76813067778SAndreas Gohr    'ッビュ' => 'bbyu',
76913067778SAndreas Gohr    'ッピャ' => 'ppya',
77013067778SAndreas Gohr    'ッピェ' => 'ppye',
77113067778SAndreas Gohr    'ッピィ' => 'ppyi',
77213067778SAndreas Gohr    'ッピョ' => 'ppyo',
77313067778SAndreas Gohr    'ッピュ' => 'ppyu',
77413067778SAndreas Gohr    'ッキャ' => 'kkya',
77513067778SAndreas Gohr    'ッキェ' => 'kkye',
77613067778SAndreas Gohr    'ッキィ' => 'kkyi',
77713067778SAndreas Gohr    'ッキョ' => 'kkyo',
77813067778SAndreas Gohr    'ッキュ' => 'kkyu',
77913067778SAndreas Gohr    'ッギャ' => 'ggya',
78013067778SAndreas Gohr    'ッギェ' => 'ggye',
78113067778SAndreas Gohr    'ッギィ' => 'ggyi',
78213067778SAndreas Gohr    'ッギョ' => 'ggyo',
78313067778SAndreas Gohr    'ッギュ' => 'ggyu',
78413067778SAndreas Gohr    'ッミャ' => 'mmya',
78513067778SAndreas Gohr    'ッミェ' => 'mmye',
78613067778SAndreas Gohr    'ッミィ' => 'mmyi',
78713067778SAndreas Gohr    'ッミョ' => 'mmyo',
78813067778SAndreas Gohr    'ッミュ' => 'mmyu',
78913067778SAndreas Gohr    'ッニャ' => 'nnya',
79013067778SAndreas Gohr    'ッニェ' => 'nnye',
79113067778SAndreas Gohr    'ッニィ' => 'nnyi',
79213067778SAndreas Gohr    'ッニョ' => 'nnyo',
79313067778SAndreas Gohr    'ッニュ' => 'nnyu',
79413067778SAndreas Gohr    'ッリャ' => 'rrya',
79513067778SAndreas Gohr    'ッリェ' => 'rrye',
79613067778SAndreas Gohr    'ッリィ' => 'rryi',
79713067778SAndreas Gohr    'ッリョ' => 'rryo',
79813067778SAndreas Gohr    'ッリュ' => 'rryu',
79913067778SAndreas Gohr    'ッシャ' => 'ssha',
80013067778SAndreas Gohr    'ッシェ' => 'sshe',
80113067778SAndreas Gohr    'ッシ' => 'sshi',
80213067778SAndreas Gohr    'ッショ' => 'ssho',
80313067778SAndreas Gohr    'ッシュ' => 'sshu',
80413067778SAndreas Gohr    'ッチャ' => 'ccha',
80513067778SAndreas Gohr    'ッチェ' => 'cche',
80613067778SAndreas Gohr    'ッチ' => 'cchi',
80713067778SAndreas Gohr    'ッチョ' => 'ccho',
80813067778SAndreas Gohr    'ッチュ' => 'cchu',
80913067778SAndreas Gohr    'ッティ' => 'tti',
81013067778SAndreas Gohr    'ッヂィ' => 'ddi',
81113067778SAndreas Gohr
81213067778SAndreas Gohr    // 3 character syllables - doubled vowel and consonants
81313067778SAndreas Gohr    'ッバー' => 'bbaa',
81413067778SAndreas Gohr    'ッベー' => 'bbee',
81513067778SAndreas Gohr    'ッビー' => 'bbii',
81613067778SAndreas Gohr    'ッボー' => 'bboo',
81713067778SAndreas Gohr    'ッブー' => 'bbuu',
81813067778SAndreas Gohr    'ッパー' => 'ppaa',
81913067778SAndreas Gohr    'ッペー' => 'ppee',
82013067778SAndreas Gohr    'ッピー' => 'ppii',
82113067778SAndreas Gohr    'ッポー' => 'ppoo',
82213067778SAndreas Gohr    'ップー' => 'ppuu',
82313067778SAndreas Gohr    'ッケー' => 'kkee',
82413067778SAndreas Gohr    'ッキー' => 'kkii',
82513067778SAndreas Gohr    'ッコー' => 'kkoo',
82613067778SAndreas Gohr    'ックー' => 'kkuu',
82713067778SAndreas Gohr    'ッカー' => 'kkaa',
82813067778SAndreas Gohr    'ッガー' => 'ggaa',
82913067778SAndreas Gohr    'ッゲー' => 'ggee',
83013067778SAndreas Gohr    'ッギー' => 'ggii',
83113067778SAndreas Gohr    'ッゴー' => 'ggoo',
83213067778SAndreas Gohr    'ッグー' => 'gguu',
83313067778SAndreas Gohr    'ッマー' => 'maa',
83413067778SAndreas Gohr    'ッメー' => 'mee',
83513067778SAndreas Gohr    'ッミー' => 'mii',
83613067778SAndreas Gohr    'ッモー' => 'moo',
83713067778SAndreas Gohr    'ッムー' => 'muu',
83813067778SAndreas Gohr    'ッナー' => 'nnaa',
83913067778SAndreas Gohr    'ッネー' => 'nnee',
84013067778SAndreas Gohr    'ッニー' => 'nnii',
84113067778SAndreas Gohr    'ッノー' => 'nnoo',
84213067778SAndreas Gohr    'ッヌー' => 'nnuu',
84313067778SAndreas Gohr    'ッラー' => 'rraa',
84413067778SAndreas Gohr    'ッレー' => 'rree',
84513067778SAndreas Gohr    'ッリー' => 'rrii',
84613067778SAndreas Gohr    'ッロー' => 'rroo',
84713067778SAndreas Gohr    'ッルー' => 'rruu',
84813067778SAndreas Gohr    'ッサー' => 'ssaa',
84913067778SAndreas Gohr    'ッセー' => 'ssee',
85013067778SAndreas Gohr    'ッシー' => 'sshii',
85113067778SAndreas Gohr    'ッソー' => 'ssoo',
85213067778SAndreas Gohr    'ッスー' => 'ssuu',
85313067778SAndreas Gohr    'ッザー' => 'zzaa',
85413067778SAndreas Gohr    'ッゼー' => 'zzee',
85513067778SAndreas Gohr    'ッジー' => 'jjii',
85613067778SAndreas Gohr    'ッゾー' => 'zzoo',
85713067778SAndreas Gohr    'ッズー' => 'zzuu',
85813067778SAndreas Gohr    'ッター' => 'ttaa',
85913067778SAndreas Gohr    'ッテー' => 'ttee',
86013067778SAndreas Gohr    'ッチー' => 'chii',
86113067778SAndreas Gohr    'ットー' => 'ttoo',
86213067778SAndreas Gohr    'ッツー' => 'ttsuu',
86313067778SAndreas Gohr    'ッダー' => 'ddaa',
86413067778SAndreas Gohr    'ッデー' => 'ddee',
86513067778SAndreas Gohr    'ッヂー' => 'ddii',
86613067778SAndreas Gohr    'ッドー' => 'ddoo',
86713067778SAndreas Gohr    'ッヅー' => 'dduu',
86813067778SAndreas Gohr
86913067778SAndreas Gohr    // 2 character syllables - normal
87013067778SAndreas Gohr    'ファ' => 'fa',
87113067778SAndreas Gohr    'フェ' => 'fe',
87213067778SAndreas Gohr    'フィ' => 'fi',
87313067778SAndreas Gohr    'フォ' => 'fo',
87413067778SAndreas Gohr    'フゥ' => 'fu',
87513067778SAndreas Gohr    // 'フャ'=>'fya',
87613067778SAndreas Gohr    // 'フェ'=>'fye',
87713067778SAndreas Gohr    // 'フィ'=>'fyi',
87813067778SAndreas Gohr    // 'フョ'=>'fyo',
87913067778SAndreas Gohr    // 'フュ'=>'fyu',
88013067778SAndreas Gohr    'フャ' => 'fa',
88113067778SAndreas Gohr    'フェ' => 'fe',
88213067778SAndreas Gohr    'フィ' => 'fi',
88313067778SAndreas Gohr    'フョ' => 'fo',
88413067778SAndreas Gohr    'フュ' => 'fu',
88513067778SAndreas Gohr    'ヒャ' => 'hya',
88613067778SAndreas Gohr    'ヒェ' => 'hye',
88713067778SAndreas Gohr    'ヒィ' => 'hyi',
88813067778SAndreas Gohr    'ヒョ' => 'hyo',
88913067778SAndreas Gohr    'ヒュ' => 'hyu',
89013067778SAndreas Gohr    'ビャ' => 'bya',
89113067778SAndreas Gohr    'ビェ' => 'bye',
89213067778SAndreas Gohr    'ビィ' => 'byi',
89313067778SAndreas Gohr    'ビョ' => 'byo',
89413067778SAndreas Gohr    'ビュ' => 'byu',
89513067778SAndreas Gohr    'ピャ' => 'pya',
89613067778SAndreas Gohr    'ピェ' => 'pye',
89713067778SAndreas Gohr    'ピィ' => 'pyi',
89813067778SAndreas Gohr    'ピョ' => 'pyo',
89913067778SAndreas Gohr    'ピュ' => 'pyu',
90013067778SAndreas Gohr    'キャ' => 'kya',
90113067778SAndreas Gohr    'キェ' => 'kye',
90213067778SAndreas Gohr    'キィ' => 'kyi',
90313067778SAndreas Gohr    'キョ' => 'kyo',
90413067778SAndreas Gohr    'キュ' => 'kyu',
90513067778SAndreas Gohr    'ギャ' => 'gya',
90613067778SAndreas Gohr    'ギェ' => 'gye',
90713067778SAndreas Gohr    'ギィ' => 'gyi',
90813067778SAndreas Gohr    'ギョ' => 'gyo',
90913067778SAndreas Gohr    'ギュ' => 'gyu',
91013067778SAndreas Gohr    'ミャ' => 'mya',
91113067778SAndreas Gohr    'ミェ' => 'mye',
91213067778SAndreas Gohr    'ミィ' => 'myi',
91313067778SAndreas Gohr    'ミョ' => 'myo',
91413067778SAndreas Gohr    'ミュ' => 'myu',
91513067778SAndreas Gohr    'ニャ' => 'nya',
91613067778SAndreas Gohr    'ニェ' => 'nye',
91713067778SAndreas Gohr    'ニィ' => 'nyi',
91813067778SAndreas Gohr    'ニョ' => 'nyo',
91913067778SAndreas Gohr    'ニュ' => 'nyu',
92013067778SAndreas Gohr    'リャ' => 'rya',
92113067778SAndreas Gohr    'リェ' => 'rye',
92213067778SAndreas Gohr    'リィ' => 'ryi',
92313067778SAndreas Gohr    'リョ' => 'ryo',
92413067778SAndreas Gohr    'リュ' => 'ryu',
92513067778SAndreas Gohr    'シャ' => 'sha',
92613067778SAndreas Gohr    'シェ' => 'she',
92713067778SAndreas Gohr    'ショ' => 'sho',
92813067778SAndreas Gohr    'シュ' => 'shu',
92913067778SAndreas Gohr    'ジャ' => 'ja',
93013067778SAndreas Gohr    'ジェ' => 'je',
93113067778SAndreas Gohr    'ジョ' => 'jo',
93213067778SAndreas Gohr    'ジュ' => 'ju',
93313067778SAndreas Gohr    'スァ' => 'swa',
93413067778SAndreas Gohr    'スェ' => 'swe',
93513067778SAndreas Gohr    'スィ' => 'swi',
93613067778SAndreas Gohr    'スォ' => 'swo',
93713067778SAndreas Gohr    'スゥ' => 'swu',
93813067778SAndreas Gohr    'デァ' => 'da',
93913067778SAndreas Gohr    'デェ' => 'de',
94013067778SAndreas Gohr    'ディ' => 'di',
94113067778SAndreas Gohr    'デォ' => 'do',
94213067778SAndreas Gohr    'デゥ' => 'du',
94313067778SAndreas Gohr    'チャ' => 'cha',
94413067778SAndreas Gohr    'チェ' => 'che',
94513067778SAndreas Gohr    'チ' => 'chi',
94613067778SAndreas Gohr    'チョ' => 'cho',
94713067778SAndreas Gohr    'チュ' => 'chu',
94813067778SAndreas Gohr    // 'ヂャ'=>'dya',
94913067778SAndreas Gohr    // 'ヂェ'=>'dye',
95013067778SAndreas Gohr    // 'ヂィ'=>'dyi',
95113067778SAndreas Gohr    // 'ヂョ'=>'dyo',
95213067778SAndreas Gohr    // 'ヂュ'=>'dyu',
95313067778SAndreas Gohr    'ツャ' => 'tsa',
95413067778SAndreas Gohr    'ツェ' => 'tse',
95513067778SAndreas Gohr    'ツィ' => 'tsi',
95613067778SAndreas Gohr    'ツョ' => 'tso',
95713067778SAndreas Gohr    'ツ' => 'tsu',
95813067778SAndreas Gohr    'トァ' => 'twa',
95913067778SAndreas Gohr    'トェ' => 'twe',
96013067778SAndreas Gohr    'トィ' => 'twi',
96113067778SAndreas Gohr    'トォ' => 'two',
96213067778SAndreas Gohr    'トゥ' => 'twu',
96313067778SAndreas Gohr    'ドァ' => 'dwa',
96413067778SAndreas Gohr    'ドェ' => 'dwe',
96513067778SAndreas Gohr    'ドィ' => 'dwi',
96613067778SAndreas Gohr    'ドォ' => 'dwo',
96713067778SAndreas Gohr    'ドゥ' => 'dwu',
96813067778SAndreas Gohr    'ウァ' => 'wha',
96913067778SAndreas Gohr    'ウェ' => 'whe',
97013067778SAndreas Gohr    'ウィ' => 'whi',
97113067778SAndreas Gohr    'ウォ' => 'who',
97213067778SAndreas Gohr    'ウゥ' => 'whu',
97313067778SAndreas Gohr    'ヴャ' => 'vya',
97413067778SAndreas Gohr    'ヴェ' => 'vye',
97513067778SAndreas Gohr    'ヴィ' => 'vyi',
97613067778SAndreas Gohr    'ヴョ' => 'vyo',
97713067778SAndreas Gohr    'ヴュ' => 'vyu',
97813067778SAndreas Gohr    'ヴァ' => 'va',
97913067778SAndreas Gohr    'ヴェ' => 've',
98013067778SAndreas Gohr    'ヴィ' => 'vi',
98113067778SAndreas Gohr    'ヴォ' => 'vo',
98213067778SAndreas Gohr    'ヴ' => 'vu',
98313067778SAndreas Gohr    'ウェ' => 'we',
98413067778SAndreas Gohr    'ウィ' => 'wi',
98513067778SAndreas Gohr    'イェ' => 'ye',
98613067778SAndreas Gohr    'ティ' => 'ti',
98713067778SAndreas Gohr    'ヂィ' => 'di',
98813067778SAndreas Gohr
98913067778SAndreas Gohr    // 2 character syllables - doubled vocal
99013067778SAndreas Gohr    'アー' => 'aa',
99113067778SAndreas Gohr    'エー' => 'ee',
99213067778SAndreas Gohr    'イー' => 'ii',
99313067778SAndreas Gohr    'オー' => 'oo',
99413067778SAndreas Gohr    'ウー' => 'uu',
99513067778SAndreas Gohr    'ダー' => 'daa',
99613067778SAndreas Gohr    'デー' => 'dee',
99713067778SAndreas Gohr    'ヂー' => 'dii',
99813067778SAndreas Gohr    'ドー' => 'doo',
99913067778SAndreas Gohr    'ヅー' => 'duu',
100013067778SAndreas Gohr    'ハー' => 'haa',
100113067778SAndreas Gohr    'ヘー' => 'hee',
100213067778SAndreas Gohr    'ヒー' => 'hii',
100313067778SAndreas Gohr    'ホー' => 'hoo',
100413067778SAndreas Gohr    'フー' => 'fuu',
100513067778SAndreas Gohr    'バー' => 'baa',
100613067778SAndreas Gohr    'ベー' => 'bee',
100713067778SAndreas Gohr    'ビー' => 'bii',
100813067778SAndreas Gohr    'ボー' => 'boo',
100913067778SAndreas Gohr    'ブー' => 'buu',
101013067778SAndreas Gohr    'パー' => 'paa',
101113067778SAndreas Gohr    'ペー' => 'pee',
101213067778SAndreas Gohr    'ピー' => 'pii',
101313067778SAndreas Gohr    'ポー' => 'poo',
101413067778SAndreas Gohr    'プー' => 'puu',
101513067778SAndreas Gohr    'ケー' => 'kee',
101613067778SAndreas Gohr    'キー' => 'kii',
101713067778SAndreas Gohr    'コー' => 'koo',
101813067778SAndreas Gohr    'クー' => 'kuu',
101913067778SAndreas Gohr    'カー' => 'kaa',
102013067778SAndreas Gohr    'ガー' => 'gaa',
102113067778SAndreas Gohr    'ゲー' => 'gee',
102213067778SAndreas Gohr    'ギー' => 'gii',
102313067778SAndreas Gohr    'ゴー' => 'goo',
102413067778SAndreas Gohr    'グー' => 'guu',
102513067778SAndreas Gohr    'マー' => 'maa',
102613067778SAndreas Gohr    'メー' => 'mee',
102713067778SAndreas Gohr    'ミー' => 'mii',
102813067778SAndreas Gohr    'モー' => 'moo',
102913067778SAndreas Gohr    'ムー' => 'muu',
103013067778SAndreas Gohr    'ナー' => 'naa',
103113067778SAndreas Gohr    'ネー' => 'nee',
103213067778SAndreas Gohr    'ニー' => 'nii',
103313067778SAndreas Gohr    'ノー' => 'noo',
103413067778SAndreas Gohr    'ヌー' => 'nuu',
103513067778SAndreas Gohr    'ラー' => 'raa',
103613067778SAndreas Gohr    'レー' => 'ree',
103713067778SAndreas Gohr    'リー' => 'rii',
103813067778SAndreas Gohr    'ロー' => 'roo',
103913067778SAndreas Gohr    'ルー' => 'ruu',
104013067778SAndreas Gohr    'サー' => 'saa',
104113067778SAndreas Gohr    'セー' => 'see',
104213067778SAndreas Gohr    'シー' => 'shii',
104313067778SAndreas Gohr    'ソー' => 'soo',
104413067778SAndreas Gohr    'スー' => 'suu',
104513067778SAndreas Gohr    'ザー' => 'zaa',
104613067778SAndreas Gohr    'ゼー' => 'zee',
104713067778SAndreas Gohr    'ジー' => 'jii',
104813067778SAndreas Gohr    'ゾー' => 'zoo',
104913067778SAndreas Gohr    'ズー' => 'zuu',
105013067778SAndreas Gohr    'ター' => 'taa',
105113067778SAndreas Gohr    'テー' => 'tee',
105213067778SAndreas Gohr    'チー' => 'chii',
105313067778SAndreas Gohr    'トー' => 'too',
105413067778SAndreas Gohr    'ツー' => 'tsuu',
105513067778SAndreas Gohr    'ワー' => 'waa',
105613067778SAndreas Gohr    'ヲー' => 'woo',
105713067778SAndreas Gohr    'ヤー' => 'yaa',
105813067778SAndreas Gohr    'ヨー' => 'yoo',
105913067778SAndreas Gohr    'ユー' => 'yuu',
106013067778SAndreas Gohr    'ヵー' => 'kaa',
106113067778SAndreas Gohr    'ヶー' => 'kee',
106213067778SAndreas Gohr    // old characters
106313067778SAndreas Gohr    'ヱー' => 'wee',
106413067778SAndreas Gohr    'ヰー' => 'wii',
106513067778SAndreas Gohr
106613067778SAndreas Gohr    // seperate katakana 'n'
106713067778SAndreas Gohr    'ンア' => 'n_a',
106813067778SAndreas Gohr    'ンエ' => 'n_e',
106913067778SAndreas Gohr    'ンイ' => 'n_i',
107013067778SAndreas Gohr    'ンオ' => 'n_o',
107113067778SAndreas Gohr    'ンウ' => 'n_u',
107213067778SAndreas Gohr    'ンヤ' => 'n_ya',
107313067778SAndreas Gohr    'ンヨ' => 'n_yo',
107413067778SAndreas Gohr    'ンユ' => 'n_yu',
107513067778SAndreas Gohr
107613067778SAndreas Gohr    // 2 character syllables - doubled consonants
107713067778SAndreas Gohr    'ッバ' => 'bba',
107813067778SAndreas Gohr    'ッベ' => 'bbe',
107913067778SAndreas Gohr    'ッビ' => 'bbi',
108013067778SAndreas Gohr    'ッボ' => 'bbo',
108113067778SAndreas Gohr    'ッブ' => 'bbu',
108213067778SAndreas Gohr    'ッパ' => 'ppa',
108313067778SAndreas Gohr    'ッペ' => 'ppe',
108413067778SAndreas Gohr    'ッピ' => 'ppi',
108513067778SAndreas Gohr    'ッポ' => 'ppo',
108613067778SAndreas Gohr    'ップ' => 'ppu',
108713067778SAndreas Gohr    'ッケ' => 'kke',
108813067778SAndreas Gohr    'ッキ' => 'kki',
108913067778SAndreas Gohr    'ッコ' => 'kko',
109013067778SAndreas Gohr    'ック' => 'kku',
109113067778SAndreas Gohr    'ッカ' => 'kka',
109213067778SAndreas Gohr    'ッガ' => 'gga',
109313067778SAndreas Gohr    'ッゲ' => 'gge',
109413067778SAndreas Gohr    'ッギ' => 'ggi',
109513067778SAndreas Gohr    'ッゴ' => 'ggo',
109613067778SAndreas Gohr    'ッグ' => 'ggu',
109713067778SAndreas Gohr    'ッマ' => 'ma',
109813067778SAndreas Gohr    'ッメ' => 'me',
109913067778SAndreas Gohr    'ッミ' => 'mi',
110013067778SAndreas Gohr    'ッモ' => 'mo',
110113067778SAndreas Gohr    'ッム' => 'mu',
110213067778SAndreas Gohr    'ッナ' => 'nna',
110313067778SAndreas Gohr    'ッネ' => 'nne',
110413067778SAndreas Gohr    'ッニ' => 'nni',
110513067778SAndreas Gohr    'ッノ' => 'nno',
110613067778SAndreas Gohr    'ッヌ' => 'nnu',
110713067778SAndreas Gohr    'ッラ' => 'rra',
110813067778SAndreas Gohr    'ッレ' => 'rre',
110913067778SAndreas Gohr    'ッリ' => 'rri',
111013067778SAndreas Gohr    'ッロ' => 'rro',
111113067778SAndreas Gohr    'ッル' => 'rru',
111213067778SAndreas Gohr    'ッサ' => 'ssa',
111313067778SAndreas Gohr    'ッセ' => 'sse',
111413067778SAndreas Gohr    'ッシ' => 'sshi',
111513067778SAndreas Gohr    'ッソ' => 'sso',
111613067778SAndreas Gohr    'ッス' => 'ssu',
111713067778SAndreas Gohr    'ッザ' => 'zza',
111813067778SAndreas Gohr    'ッゼ' => 'zze',
111913067778SAndreas Gohr    'ッジ' => 'jji',
112013067778SAndreas Gohr    'ッゾ' => 'zzo',
112113067778SAndreas Gohr    'ッズ' => 'zzu',
112213067778SAndreas Gohr    'ッタ' => 'tta',
112313067778SAndreas Gohr    'ッテ' => 'tte',
112413067778SAndreas Gohr    'ッチ' => 'cchi',
112513067778SAndreas Gohr    'ット' => 'tto',
112613067778SAndreas Gohr    'ッツ' => 'ttsu',
112713067778SAndreas Gohr    'ッダ' => 'dda',
112813067778SAndreas Gohr    'ッデ' => 'dde',
112913067778SAndreas Gohr    'ッヂ' => 'ddi',
113013067778SAndreas Gohr    'ッド' => 'ddo',
113113067778SAndreas Gohr    'ッヅ' => 'ddu',
113213067778SAndreas Gohr
113313067778SAndreas Gohr    // 1 character syllables
113413067778SAndreas Gohr    'ア' => 'a',
113513067778SAndreas Gohr    'エ' => 'e',
113613067778SAndreas Gohr    'イ' => 'i',
113713067778SAndreas Gohr    'オ' => 'o',
113813067778SAndreas Gohr    'ウ' => 'u',
113913067778SAndreas Gohr    'ン' => 'n',
114013067778SAndreas Gohr    'ハ' => 'ha',
114113067778SAndreas Gohr    'ヘ' => 'he',
114213067778SAndreas Gohr    'ヒ' => 'hi',
114313067778SAndreas Gohr    'ホ' => 'ho',
114413067778SAndreas Gohr    'フ' => 'fu',
114513067778SAndreas Gohr    'バ' => 'ba',
114613067778SAndreas Gohr    'ベ' => 'be',
114713067778SAndreas Gohr    'ビ' => 'bi',
114813067778SAndreas Gohr    'ボ' => 'bo',
114913067778SAndreas Gohr    'ブ' => 'bu',
115013067778SAndreas Gohr    'パ' => 'pa',
115113067778SAndreas Gohr    'ペ' => 'pe',
115213067778SAndreas Gohr    'ピ' => 'pi',
115313067778SAndreas Gohr    'ポ' => 'po',
115413067778SAndreas Gohr    'プ' => 'pu',
115513067778SAndreas Gohr    'ケ' => 'ke',
115613067778SAndreas Gohr    'キ' => 'ki',
115713067778SAndreas Gohr    'コ' => 'ko',
115813067778SAndreas Gohr    'ク' => 'ku',
115913067778SAndreas Gohr    'カ' => 'ka',
116013067778SAndreas Gohr    'ガ' => 'ga',
116113067778SAndreas Gohr    'ゲ' => 'ge',
116213067778SAndreas Gohr    'ギ' => 'gi',
116313067778SAndreas Gohr    'ゴ' => 'go',
116413067778SAndreas Gohr    'グ' => 'gu',
116513067778SAndreas Gohr    'マ' => 'ma',
116613067778SAndreas Gohr    'メ' => 'me',
116713067778SAndreas Gohr    'ミ' => 'mi',
116813067778SAndreas Gohr    'モ' => 'mo',
116913067778SAndreas Gohr    'ム' => 'mu',
117013067778SAndreas Gohr    'ナ' => 'na',
117113067778SAndreas Gohr    'ネ' => 'ne',
117213067778SAndreas Gohr    'ニ' => 'ni',
117313067778SAndreas Gohr    'ノ' => 'no',
117413067778SAndreas Gohr    'ヌ' => 'nu',
117513067778SAndreas Gohr    'ラ' => 'ra',
117613067778SAndreas Gohr    'レ' => 're',
117713067778SAndreas Gohr    'リ' => 'ri',
117813067778SAndreas Gohr    'ロ' => 'ro',
117913067778SAndreas Gohr    'ル' => 'ru',
118013067778SAndreas Gohr    'サ' => 'sa',
118113067778SAndreas Gohr    'セ' => 'se',
118213067778SAndreas Gohr    'シ' => 'shi',
118313067778SAndreas Gohr    'ソ' => 'so',
118413067778SAndreas Gohr    'ス' => 'su',
118513067778SAndreas Gohr    'ザ' => 'za',
118613067778SAndreas Gohr    'ゼ' => 'ze',
118713067778SAndreas Gohr    'ジ' => 'ji',
118813067778SAndreas Gohr    'ゾ' => 'zo',
118913067778SAndreas Gohr    'ズ' => 'zu',
119013067778SAndreas Gohr    'タ' => 'ta',
119113067778SAndreas Gohr    'テ' => 'te',
119213067778SAndreas Gohr    'チ' => 'chi',
119313067778SAndreas Gohr    'ト' => 'to',
119413067778SAndreas Gohr    'ツ' => 'tsu',
119513067778SAndreas Gohr    'ダ' => 'da',
119613067778SAndreas Gohr    'デ' => 'de',
119713067778SAndreas Gohr    'ヂ' => 'di',
119813067778SAndreas Gohr    'ド' => 'do',
119913067778SAndreas Gohr    'ヅ' => 'du',
120013067778SAndreas Gohr    'ワ' => 'wa',
120113067778SAndreas Gohr    'ヲ' => 'wo',
120213067778SAndreas Gohr    'ヤ' => 'ya',
120313067778SAndreas Gohr    'ヨ' => 'yo',
120413067778SAndreas Gohr    'ユ' => 'yu',
120513067778SAndreas Gohr    'ヵ' => 'ka',
120613067778SAndreas Gohr    'ヶ' => 'ke',
120713067778SAndreas Gohr    // old characters
120813067778SAndreas Gohr    'ヱ' => 'we',
120913067778SAndreas Gohr    'ヰ' => 'wi',
121013067778SAndreas Gohr
121113067778SAndreas Gohr    //  convert what's left (probably only kicks in when something's missing above)
121213067778SAndreas Gohr    'ァ' => 'a',
121313067778SAndreas Gohr    'ェ' => 'e',
121413067778SAndreas Gohr    'ィ' => 'i',
121513067778SAndreas Gohr    'ォ' => 'o',
121613067778SAndreas Gohr    'ゥ' => 'u',
121713067778SAndreas Gohr    'ャ' => 'ya',
121813067778SAndreas Gohr    'ョ' => 'yo',
121913067778SAndreas Gohr    'ュ' => 'yu',
122013067778SAndreas Gohr
122113067778SAndreas Gohr    // special characters
122213067778SAndreas Gohr    '・' => '_',
122313067778SAndreas Gohr    '、' => '_',
122413067778SAndreas Gohr    'ー' => '_',
122513067778SAndreas Gohr    // when used with hiragana (seldom), this character would not be converted otherwise
122613067778SAndreas Gohr
122713067778SAndreas Gohr    // 'ラ'=>'la',
122813067778SAndreas Gohr    // 'レ'=>'le',
122913067778SAndreas Gohr    // 'リ'=>'li',
123013067778SAndreas Gohr    // 'ロ'=>'lo',
123113067778SAndreas Gohr    // 'ル'=>'lu',
123213067778SAndreas Gohr    // 'チャ'=>'cya',
123313067778SAndreas Gohr    // 'チェ'=>'cye',
123413067778SAndreas Gohr    // 'チィ'=>'cyi',
123513067778SAndreas Gohr    // 'チョ'=>'cyo',
123613067778SAndreas Gohr    // 'チュ'=>'cyu',
123713067778SAndreas Gohr    // 'デャ'=>'dha',
123813067778SAndreas Gohr    // 'デェ'=>'dhe',
123913067778SAndreas Gohr    // 'ディ'=>'dhi',
124013067778SAndreas Gohr    // 'デョ'=>'dho',
124113067778SAndreas Gohr    // 'デュ'=>'dhu',
124213067778SAndreas Gohr    // 'リャ'=>'lya',
124313067778SAndreas Gohr    // 'リェ'=>'lye',
124413067778SAndreas Gohr    // 'リィ'=>'lyi',
124513067778SAndreas Gohr    // 'リョ'=>'lyo',
124613067778SAndreas Gohr    // 'リュ'=>'lyu',
124713067778SAndreas Gohr    // 'テャ'=>'tha',
124813067778SAndreas Gohr    // 'テェ'=>'the',
124913067778SAndreas Gohr    // 'ティ'=>'thi',
125013067778SAndreas Gohr    // 'テョ'=>'tho',
125113067778SAndreas Gohr    // 'テュ'=>'thu',
125213067778SAndreas Gohr    // 'ファ'=>'fwa',
125313067778SAndreas Gohr    // 'フェ'=>'fwe',
125413067778SAndreas Gohr    // 'フィ'=>'fwi',
125513067778SAndreas Gohr    // 'フォ'=>'fwo',
125613067778SAndreas Gohr    // 'フゥ'=>'fwu',
125713067778SAndreas Gohr    // 'チャ'=>'tya',
125813067778SAndreas Gohr    // 'チェ'=>'tye',
125913067778SAndreas Gohr    // 'チィ'=>'tyi',
126013067778SAndreas Gohr    // 'チョ'=>'tyo',
126113067778SAndreas Gohr    // 'チュ'=>'tyu',
126213067778SAndreas Gohr    // 'ジャ'=>'jya',
126313067778SAndreas Gohr    // 'ジェ'=>'jye',
126413067778SAndreas Gohr    // 'ジィ'=>'jyi',
126513067778SAndreas Gohr    // 'ジョ'=>'jyo',
126613067778SAndreas Gohr    // 'ジュ'=>'jyu',
126713067778SAndreas Gohr    // 'ジャ'=>'zha',
126813067778SAndreas Gohr    // 'ジェ'=>'zhe',
126913067778SAndreas Gohr    // 'ジィ'=>'zhi',
127013067778SAndreas Gohr    // 'ジョ'=>'zho',
127113067778SAndreas Gohr    // 'ジュ'=>'zhu',
127213067778SAndreas Gohr    // 'ジャ'=>'zya',
127313067778SAndreas Gohr    // 'ジェ'=>'zye',
127413067778SAndreas Gohr    // 'ジィ'=>'zyi',
127513067778SAndreas Gohr    // 'ジョ'=>'zyo',
127613067778SAndreas Gohr    // 'ジュ'=>'zyu',
127713067778SAndreas Gohr    // 'シャ'=>'sya',
127813067778SAndreas Gohr    // 'シェ'=>'sye',
127913067778SAndreas Gohr    // 'シィ'=>'syi',
128013067778SAndreas Gohr    // 'ショ'=>'syo',
128113067778SAndreas Gohr    // 'シュ'=>'syu',
128213067778SAndreas Gohr    // 'シ'=>'ci',
128313067778SAndreas Gohr    // 'フ'=>'hu',
128413067778SAndreas Gohr    // 'シ'=>'si',
128513067778SAndreas Gohr    // 'チ'=>'ti',
128613067778SAndreas Gohr    // 'ツ'=>'tu',
128713067778SAndreas Gohr    // 'イ'=>'yi',
128813067778SAndreas Gohr    // 'ヂ'=>'dzi',
128913067778SAndreas Gohr
129013067778SAndreas Gohr    // "Greeklish"
1291*1fa01e4aSsintoris    'Α' => 'a',
1292*1fa01e4aSsintoris    'Ά' => 'a',
1293*1fa01e4aSsintoris    'Β' => 'b',
1294*1fa01e4aSsintoris    'Γ' => 'g',
1295*1fa01e4aSsintoris    'Δ' => 'd',
1296*1fa01e4aSsintoris    'Ε' => 'e',
1297*1fa01e4aSsintoris    'Έ' => 'e',
1298*1fa01e4aSsintoris    'Ζ' => 'z',
1299*1fa01e4aSsintoris    'Η' => 'i',
1300*1fa01e4aSsintoris    'Ή' => 'i',
1301*1fa01e4aSsintoris    'Θ' => 'th',
1302*1fa01e4aSsintoris    'Ι' => 'i',
1303*1fa01e4aSsintoris    'Ί' => 'i',
1304*1fa01e4aSsintoris    'Ϊ' => 'i',
1305*1fa01e4aSsintoris    'ΐ' => 'i',
1306*1fa01e4aSsintoris    'Κ' => 'k',
1307*1fa01e4aSsintoris    'Λ' => 'l',
1308*1fa01e4aSsintoris    'Μ' => 'm',
1309*1fa01e4aSsintoris    'Ν' => 'n',
1310*1fa01e4aSsintoris    'Ξ' => 'x',
1311*1fa01e4aSsintoris    'Ο' => 'o',
1312*1fa01e4aSsintoris    'Ό' => 'o',
1313*1fa01e4aSsintoris    'Π' => 'p',
1314*1fa01e4aSsintoris    'Ρ' => 'r',
1315*1fa01e4aSsintoris    'Σ' => 's',
1316*1fa01e4aSsintoris    'Τ' => 't',
1317*1fa01e4aSsintoris    'Υ' => 'y',
1318*1fa01e4aSsintoris    'Ύ' => 'y',
1319*1fa01e4aSsintoris    'Ϋ' => 'y',
1320*1fa01e4aSsintoris    'ΰ' => 'y',
1321*1fa01e4aSsintoris    'Φ' => 'f',
1322*1fa01e4aSsintoris    'Χ' => 'ch',
1323*1fa01e4aSsintoris    'Ψ' => 'ps',
1324*1fa01e4aSsintoris    'Ω' => 'o',
1325*1fa01e4aSsintoris    'Ώ' => 'o',
1326*1fa01e4aSsintoris    'α' => 'a',
1327*1fa01e4aSsintoris    'ά' => 'a',
1328*1fa01e4aSsintoris    'β' => 'b',
132913067778SAndreas Gohr    'γ' => 'g',
1330*1fa01e4aSsintoris    'δ' => 'd',
1331*1fa01e4aSsintoris    'ε' => 'e',
1332*1fa01e4aSsintoris    'έ' => 'e',
1333*1fa01e4aSsintoris    'ζ' => 'z',
1334*1fa01e4aSsintoris    'η' => 'i',
1335*1fa01e4aSsintoris    'ή' => 'i',
133613067778SAndreas Gohr    'θ' => 'th',
1337*1fa01e4aSsintoris    'ι' => 'i',
1338*1fa01e4aSsintoris    'ί' => 'i',
1339*1fa01e4aSsintoris    'ϊ' => 'i',
1340*1fa01e4aSsintoris    'κ' => 'k',
134113067778SAndreas Gohr    'λ' => 'l',
1342*1fa01e4aSsintoris    'μ' => 'm',
1343*1fa01e4aSsintoris    'ν' => 'n',
134413067778SAndreas Gohr    'ξ' => 'x',
1345*1fa01e4aSsintoris    'ο' => 'o',
1346*1fa01e4aSsintoris    'ό' => 'o',
134713067778SAndreas Gohr    'π' => 'p',
1348*1fa01e4aSsintoris    'ρ' => 'r',
134913067778SAndreas Gohr    'σ' => 's',
1350*1fa01e4aSsintoris    'ς' => 's',
1351*1fa01e4aSsintoris    'τ' => 't',
1352*1fa01e4aSsintoris    'υ' => 'y',
1353*1fa01e4aSsintoris    'ύ' => 'y',
1354*1fa01e4aSsintoris    'ϋ' => 'y',
135513067778SAndreas Gohr    'φ' => 'f',
1356*1fa01e4aSsintoris    'χ' => 'ch',
135713067778SAndreas Gohr    'ψ' => 'ps',
1358*1fa01e4aSsintoris    'ω' => 'o',
1359*1fa01e4aSsintoris    'ώ' => 'o',
136013067778SAndreas Gohr
136113067778SAndreas Gohr    // Thai
136213067778SAndreas Gohr    'ก' => 'k',
136313067778SAndreas Gohr    'ข' => 'kh',
136413067778SAndreas Gohr    'ฃ' => 'kh',
136513067778SAndreas Gohr    'ค' => 'kh',
136613067778SAndreas Gohr    'ฅ' => 'kh',
136713067778SAndreas Gohr    'ฆ' => 'kh',
136813067778SAndreas Gohr    'ง' => 'ng',
136913067778SAndreas Gohr    'จ' => 'ch',
137013067778SAndreas Gohr    'ฉ' => 'ch',
137113067778SAndreas Gohr    'ช' => 'ch',
137213067778SAndreas Gohr    'ซ' => 's',
137313067778SAndreas Gohr    'ฌ' => 'ch',
137413067778SAndreas Gohr    'ญ' => 'y',
137513067778SAndreas Gohr    'ฎ' => 'd',
137613067778SAndreas Gohr    'ฏ' => 't',
137713067778SAndreas Gohr    'ฐ' => 'th',
137813067778SAndreas Gohr    'ฑ' => 'd',
137913067778SAndreas Gohr    'ฒ' => 'th',
138013067778SAndreas Gohr    'ณ' => 'n',
138113067778SAndreas Gohr    'ด' => 'd',
138213067778SAndreas Gohr    'ต' => 't',
138313067778SAndreas Gohr    'ถ' => 'th',
138413067778SAndreas Gohr    'ท' => 'th',
138513067778SAndreas Gohr    'ธ' => 'th',
138613067778SAndreas Gohr    'น' => 'n',
138713067778SAndreas Gohr    'บ' => 'b',
138813067778SAndreas Gohr    'ป' => 'p',
138913067778SAndreas Gohr    'ผ' => 'ph',
139013067778SAndreas Gohr    'ฝ' => 'f',
139113067778SAndreas Gohr    'พ' => 'ph',
139213067778SAndreas Gohr    'ฟ' => 'f',
139313067778SAndreas Gohr    'ภ' => 'ph',
139413067778SAndreas Gohr    'ม' => 'm',
139513067778SAndreas Gohr    'ย' => 'y',
139613067778SAndreas Gohr    'ร' => 'r',
139713067778SAndreas Gohr    'ฤ' => 'rue',
139813067778SAndreas Gohr    'ฤๅ' => 'rue',
139913067778SAndreas Gohr    'ล' => 'l',
140013067778SAndreas Gohr    'ฦ' => 'lue',
140113067778SAndreas Gohr    'ฦๅ' => 'lue',
140213067778SAndreas Gohr    'ว' => 'w',
140313067778SAndreas Gohr    'ศ' => 's',
140413067778SAndreas Gohr    'ษ' => 's',
140513067778SAndreas Gohr    'ส' => 's',
140613067778SAndreas Gohr    'ห' => 'h',
140713067778SAndreas Gohr    'ฬ' => 'l',
140813067778SAndreas Gohr    'ฮ' => 'h',
140913067778SAndreas Gohr    'ะ' => 'a',
141013067778SAndreas Gohr    'ั' => 'a',
141113067778SAndreas Gohr    'รร' => 'a',
141213067778SAndreas Gohr    'า' => 'a',
141313067778SAndreas Gohr    'ๅ' => 'a',
141413067778SAndreas Gohr    'ำ' => 'am',
141513067778SAndreas Gohr    'ํา' => 'am',
141613067778SAndreas Gohr    'ิ' => 'i',
141713067778SAndreas Gohr    'ี' => 'i',
141813067778SAndreas Gohr    'ึ' => 'ue',
141913067778SAndreas Gohr    'ี' => 'ue',
142013067778SAndreas Gohr    'ุ' => 'u',
142113067778SAndreas Gohr    'ู' => 'u',
142213067778SAndreas Gohr    'เ' => 'e',
142313067778SAndreas Gohr    'แ' => 'ae',
142413067778SAndreas Gohr    'โ' => 'o',
142513067778SAndreas Gohr    'อ' => 'o',
142613067778SAndreas Gohr    'ียะ' => 'ia',
142713067778SAndreas Gohr    'ีย' => 'ia',
142813067778SAndreas Gohr    'ือะ' => 'uea',
142913067778SAndreas Gohr    'ือ' => 'uea',
143013067778SAndreas Gohr    'ัวะ' => 'ua',
143113067778SAndreas Gohr    'ัว' => 'ua',
143213067778SAndreas Gohr    'ใ' => 'ai',
143313067778SAndreas Gohr    'ไ' => 'ai',
143413067778SAndreas Gohr    'ัย' => 'ai',
143513067778SAndreas Gohr    'าย' => 'ai',
143613067778SAndreas Gohr    'าว' => 'ao',
143713067778SAndreas Gohr    'ุย' => 'ui',
143813067778SAndreas Gohr    'อย' => 'oi',
143913067778SAndreas Gohr    'ือย' => 'ueai',
144013067778SAndreas Gohr    'วย' => 'uai',
144113067778SAndreas Gohr    'ิว' => 'io',
144213067778SAndreas Gohr    '็ว' => 'eo',
144313067778SAndreas Gohr    'ียว' => 'iao',
144413067778SAndreas Gohr    '่' => '',
144513067778SAndreas Gohr    '้' => '',
144613067778SAndreas Gohr    '๊' => '',
144713067778SAndreas Gohr    '๋' => '',
144813067778SAndreas Gohr    '็' => '',
144913067778SAndreas Gohr    '์' => '',
145013067778SAndreas Gohr    '๎' => '',
145113067778SAndreas Gohr    'ํ' => '',
145213067778SAndreas Gohr    'ฺ' => '',
145313067778SAndreas Gohr    'ๆ' => '2',
145413067778SAndreas Gohr    '๏' => 'o',
145513067778SAndreas Gohr    'ฯ' => '-',
145613067778SAndreas Gohr    '๚' => '-',
145713067778SAndreas Gohr    '๛' => '-',
145813067778SAndreas Gohr    '๐' => '0',
145913067778SAndreas Gohr    '๑' => '1',
146013067778SAndreas Gohr    '๒' => '2',
146113067778SAndreas Gohr    '๓' => '3',
146213067778SAndreas Gohr    '๔' => '4',
146313067778SAndreas Gohr    '๕' => '5',
146413067778SAndreas Gohr    '๖' => '6',
146513067778SAndreas Gohr    '๗' => '7',
146613067778SAndreas Gohr    '๘' => '8',
146713067778SAndreas Gohr    '๙' => '9',
146813067778SAndreas Gohr
146913067778SAndreas Gohr    // Korean
147013067778SAndreas Gohr    'ㄱ' => 'k', 'ㅋ' => 'kh',
147113067778SAndreas Gohr    'ㄲ' => 'kk',
147213067778SAndreas Gohr    'ㄷ' => 't',
147313067778SAndreas Gohr    'ㅌ' => 'th',
147413067778SAndreas Gohr    'ㄸ' => 'tt',
147513067778SAndreas Gohr    'ㅂ' => 'p',
147613067778SAndreas Gohr    'ㅍ' => 'ph',
147713067778SAndreas Gohr    'ㅃ' => 'pp',
147813067778SAndreas Gohr    'ㅈ' => 'c',
147913067778SAndreas Gohr    'ㅊ' => 'ch',
148013067778SAndreas Gohr    'ㅉ' => 'cc',
148113067778SAndreas Gohr    'ㅅ' => 's',
148213067778SAndreas Gohr    'ㅆ' => 'ss',
148313067778SAndreas Gohr    'ㅎ' => 'h',
148413067778SAndreas Gohr    'ㅇ' => 'ng',
148513067778SAndreas Gohr    'ㄴ' => 'n',
148613067778SAndreas Gohr    'ㄹ' => 'l',
148713067778SAndreas Gohr    'ㅁ' => 'm',
148813067778SAndreas Gohr    'ㅏ' => 'a',
148913067778SAndreas Gohr    'ㅓ' => 'e',
149013067778SAndreas Gohr    'ㅗ' => 'o',
149113067778SAndreas Gohr    'ㅜ' => 'wu',
149213067778SAndreas Gohr    'ㅡ' => 'u',
149313067778SAndreas Gohr    'ㅣ' => 'i',
149413067778SAndreas Gohr    'ㅐ' => 'ay',
149513067778SAndreas Gohr    'ㅔ' => 'ey',
149613067778SAndreas Gohr    'ㅚ' => 'oy',
149713067778SAndreas Gohr    'ㅘ' => 'wa',
149813067778SAndreas Gohr    'ㅝ' => 'we',
149913067778SAndreas Gohr    'ㅟ' => 'wi',
150013067778SAndreas Gohr    'ㅙ' => 'way',
150113067778SAndreas Gohr    'ㅞ' => 'wey',
150213067778SAndreas Gohr    'ㅢ' => 'uy',
150313067778SAndreas Gohr    'ㅑ' => 'ya',
150413067778SAndreas Gohr    'ㅕ' => 'ye',
150513067778SAndreas Gohr    'ㅛ' => 'oy',
150613067778SAndreas Gohr    'ㅠ' => 'yu',
150713067778SAndreas Gohr    'ㅒ' => 'yay',
150813067778SAndreas Gohr    'ㅖ' => 'yey',
150913067778SAndreas Gohr];
1510