]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Fixed combining marks on Unicode regexes.
authorThad Hughes <thad.hughes@gmail.com>
Tue, 6 Mar 2012 00:50:29 +0000 (16:50 -0800)
committerThad Hughes <thad.hughes@gmail.com>
Tue, 6 Mar 2012 00:50:29 +0000 (16:50 -0800)
data/downloadInputs.sh
src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
src/com/hughes/android/dictionary/engine/DictionaryTest.java
src/com/hughes/android/dictionary/engine/LanguageTest.java
src/com/hughes/android/dictionary/parser/DictFileParser.java
src/com/hughes/android/dictionary/parser/wiktionary/WiktionaryLangs.java
testdata/goldens/wiktionary.ar_ar.quickdic.text
testdata/goldens/wiktionary.th_th.quickdic.text [new file with mode: 0644]
testdata/goldens/wiktionary.zh_en.quickdic.text
testdata/goldens/wiktionary.zh_zh.quickdic.text
todo.txt

index 8dcad04ff0331307bd8a44d949772aa510e48218..f0863bfecb6188136cc716cd859b8056710a45f8 100755 (executable)
@@ -2,7 +2,6 @@
 
 OLD_DIR=`pwd`
 DIR=`dirname $0`
-
 cd $DIR
 
 echo "Downloading from: http://ftp.tu-chemnitz.de/pub/Local/urz/ding/de-en-devel/"
index a73b1b11a8c741c3fe0ea8f38b01934947252571..e3a8acc401c75e1d0b6b032777c0bafd16816ff7 100644 (file)
@@ -80,6 +80,13 @@ public class DictionaryBuilderTest extends TestCase {
         "DE.data", "enwiktionary.german", "German", "it");
   }
 
+  // Thai
+  public void testWiktionary_TH_TH() throws Exception {
+    wiktionaryTestWithLangToEn("wiktionary.th_th.quickdic", "TH", "empty.txt",
+        // These missing "e" prevents a complete match, forcing the name to be printed.
+        "TH.data", "enwiktionary.thai", "Thai", "th");
+  }
+
   public void wiktionaryTestWithLangToEn(final String name, final String lang1,
       final String stoplist, final String data, final String dictName,
       final String langPattern, final String langCode) throws Exception {
index 52c3161b206e2712bc7281775dabc470d30f0170..5dab1de7b9a5aaee76e46a39f66146a5b158c112 100644 (file)
@@ -296,5 +296,16 @@ public class DictionaryTest extends TestCase {
     raf.close();
   }
 
+  public void testThai() throws IOException {
+    final RandomAccessFile raf = new RandomAccessFile(OUTPUTS + "EN-TH_enwiktionary.quickdic", "r");
+    final Dictionary dict = new Dictionary(raf);
+    final Index thIndex = dict.indices.get(1);
+
+    final IndexEntry entry = thIndex.findInsertionPoint("ดี", new AtomicBoolean(false));
+    assertEquals("di", entry.token);
+    
+    raf.close();
+  }
+
 
 }
index 7037172d88e8bee2327440f5288445c0b018da48..7b84dd644845682305cab6e6f7482f70ceb55b21 100644 (file)
@@ -23,6 +23,7 @@ import java.util.Set;
 
 import junit.framework.TestCase;
 
+import com.hughes.android.dictionary.parser.DictFileParser;
 import com.hughes.android.dictionary.parser.wiktionary.WiktionaryLangs;
 import com.ibm.icu.text.Transliterator;
 
@@ -169,6 +170,18 @@ public class LanguageTest extends TestCase {
        
   }
 
+  public void testThai() {
+    final Language th = Language.lookup("TH");
+    final Transliterator transliterator = Transliterator.createFromRules("", th.getDefaultNormalizerRules(), Transliterator.FORWARD);
+    // Not sure these are right, just to know...
+    assertEquals("d", transliterator.transliterate("ด"));
+    assertEquals("di", transliterator.transliterate("ด ี"));
+    assertEquals("dii", transliterator.transliterate("ดีี"));
+    
+    assertEquals(Collections.singleton("ดีี"), DictFileParser.tokenize("ดีี", DictFileParser.NON_CHAR));
+  }
+
+  
   public void testEnWiktionaryNames() {
     final Set<String> enLangs = new LinkedHashSet<String>(WiktionaryLangs.isoCodeToWikiName.keySet());
     for (final String code : WiktionaryLangs.isoCodeToWikiName.keySet()) {
index b435b4a1ecac0501d5805b603f1e8cc86dde832b..991ed8ad417b29e4941f68fb07e4a1eaf4b4248b 100644 (file)
@@ -50,17 +50,15 @@ public class DictFileParser implements Parser {
   public static final Pattern PIPE = Pattern.compile("\\|");
   
   static final Pattern SPACES = Pattern.compile("\\s+");
-//  static final Pattern DE_NOUN = Pattern.compile("([^ ]+) *\\{(m|f|n|pl)\\}");
-//  static final Pattern EN_VERB = Pattern.compile("^to ([^ ]+)");
   
   static final Pattern BRACKETED = Pattern.compile("\\[([^]]+)\\]");
   static final Pattern PARENTHESIZED = Pattern.compile("\\(([^)]+)\\)");
   static final Pattern CURLY_BRACED = Pattern.compile("\\{([^}]+)\\}");
   
-  static final Pattern NON_CHAR_DASH = Pattern.compile("[^-'\\p{L}0-9]+");
-  public static final Pattern NON_CHAR = Pattern.compile("[^\\p{L}0-9]+");
+  static final Pattern NON_CHAR_DASH = Pattern.compile("[^-'\\p{L}\\p{M}\\p{N}]+");
+  public static final Pattern NON_CHAR = Pattern.compile("[^\\p{L}\\p{M}\\p{N}]+");
 
-  static final Pattern TRIM_PUNC = Pattern.compile("^[^\\p{L}0-9]+|[^\\p{L}0-9]+$");
+  static final Pattern TRIM_PUNC = Pattern.compile("^[^\\p{L}\\p{M}\\p{N}]+|[^\\p{L}\\p{M}\\p{N}]+$");
 
   final Charset charset;
   final boolean flipCols;
index 141d2c62cf8060e8de7d24e09312f3ec25b870bc..0fbe21e14ffe1482887e1ee1415c2e667ab659f5 100644 (file)
@@ -49,7 +49,8 @@ public class WiktionaryLangs {
     isoCodeToWikiName.put("HU", "Hungarian");
     isoCodeToWikiName.put("IS", "Icelandic");
     isoCodeToWikiName.put("ID", "Indonesian");
-    isoCodeToWikiName.put("GA", "Gaelic");
+    isoCodeToWikiName.put("GA", "Irish");
+    isoCodeToWikiName.put("GD", "Gaelic");
     isoCodeToWikiName.put("IT", "Italian");
     isoCodeToWikiName.put("LA", "Latin");
     isoCodeToWikiName.put("LV", "Latvian");
index fbefea1713f59eb10bed61e20d0d72e76174acaa..3cf5f620cce17bad225f33e0d91f50ac53b0f646 100644 (file)
@@ -1,22 +1,41 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.arabic 13381
+EntrySource: enwiktionary.arabic 13375
 
 Index: AR AR->EN
+***٠***
+  ٠ (ʂifr) :: 0 (zero)
+***١***
+  ١ (wáħid) :: 1 (one)
+***١٠***
+  ١٠ (‘áshara) :: 10 (ten)
+  ١٠ (‘áshara) :: Previous: ٩
+  ١٠ (‘áshara) :: Next: ١١
+***٢***
+  ٢ (ithnéin) :: 2 (two)
+***٣***
+  ٣ (thalátha) :: 3 (three)
+***٤***
+  ٤ (arba‘a) :: 4 (four)
+***٥***
+  ٥ (khámsa) :: 5 (five)
+***٦***
+  ٦ (sítta) :: 6 (six)
+***٧***
+  ٧ (sáb‘a) :: 7 (seven)
+***٨***
+  ٨ (thamánya) :: 8 (eight)
+***٩***
+  ٩ (tís‘a) :: 9 (nine)
 ***أ***
   أ / ‍أ (’álifu hámzatin) :: The first letter of the Arabic alphabet is the small hamza (ء) that sits on top of أ, and the tall column is its bearer. The composite letter is called الف (’álif) and the hamza represents a glottal stop (/ʔ/). (For the pronunciation without hamza, see ا.) It is followed by ب.
   أ / ‍أ (’álifu hámzatin) :: The first letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is followed by ب.
   أ / ‍أ (ʼa) :: Initial interrogative particle that indicates a yes-or-no question, usually precedes a noun or a pronoun, not a verb or an adjective. It’s written together with the following word as all one letter words.
-  صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ***ا***
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
-  ف‍- (fa-) (prefix) :: then, and then
-    يومًا فيومًا (yáuman fa-yáuman) :: day after day
-    شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
 ***اﷲ***
   اﷲ (allāh) {m} :: Allah, God
+===أَصْفَر===
+  صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ===ab===
   أبٌ {m} (’ab) (noun), آبَاءٌ (’ābā’) {p} :: father
   أبٌ {m} (’ab) (noun), آبَاءٌ (’ābā’) {p} :: ancestor, forefather
@@ -28,9 +47,6 @@ Index: AR AR->EN
   أبٌ {m} (’ab) (noun), آبَاءٌ (’ābā’) {p} :: ancestor, forefather
   اب آب (’Āb) {m} :: August (month name used in Syria, Lebanon, Jordan, and Iraq)
   اب آب (’āba) :: to return, to come back
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ***اباحية***
   اباحية {{ar-noun|tr=’ibaħíyya|g=f|head=إِبَاحِيَّة}} :: libertinism
   اباحية {{ar-noun|tr=’ibaħíyya|g=f|head=إِبَاحِيَّة}} :: licentiousness
@@ -133,10 +149,6 @@ Index: AR AR->EN
   أغسطس {{ar-noun|head=أغُسْطُسْ|tr=’ağúʂʈuʂ|g=m}} :: August (Westernized calendar)
 ===اغوال===
   اغوال (’ağwāl) :: ghouls ({plural of|غول})
-===اه===
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ***أحبك***
   أحبك (uHíbbuka, uHíbbak) :: I love you (to a male)
   أحبك (uHíbbuki, uHíbbik) :: I love you (to a female)
@@ -164,9 +176,10 @@ Index: AR AR->EN
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: case
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: present, actuality
   حال {m|f} (ḥāla) (noun), plural: أحوال, ’aḥwāl :: matter, affair, concern
-===اج===
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
+===اِسْمْ===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
+    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
+    He didn't choose a good title for his book :: --
 ===اجنان===
   اجنان (ajnān) {p} :: {plural of|جنان}
 ===اجتماعي===
@@ -744,10 +757,6 @@ Index: AR AR->EN
   رب (rabb) {m}, ارباب (’arbāb) {p} :: master, lord, king, sovereign, potentate, gentleman
     الرب (ar-rább) :: God; Lord
     رب العائلة (rabb al-ʕá’ila) :: paterfamilias
-===ار===
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ===Arab===
   جميل {m} (jamiil) (adjective), feminine singular and inanimate plural: جميلة, masculine plural: جمال, feminine plural: جميلات :: beautiful
   برج (burj) (noun), dual: برجي (barjī), plural: بروج (burūj) or ابراج (’abrāj) :: castle
@@ -789,9 +798,6 @@ Index: AR AR->EN
   سرطان سَرَطان (saraṭān) {m}, سرطانات (saraṭanāt) {p} :: crab
     السرطان (as-saraṭān) :: Cancer (sign of the zodiac)
     سرطان بحري (saraṭān báħriy) :: lobster
-===اس===
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ===asad===
   أسَد {m} ('asad) (noun), , أُسُود ('usuud) {p} :: lion
   (Egyptian Arabic) أسد {m} ('asad) (noun), , أسود ('usuud) {p} :: lion
@@ -960,15 +966,6 @@ Index: AR AR->EN
   (Tunisian Arabic) بـ (b) (preposition) :: with
     نْحِبْ قَهْوَة بِالْحْلِيبْ (nḥib qahwa bilḥlīb) — I like coffee with milk :: --
     تُرْعُشْ بِالْخُوفْ (turʿuš bilḫūf) - She is shaking with fear :: --
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
-  ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
-    بِكَ (bika) :: to you
-  ـكِ {f} (-ki) (suffix) :: you, your (bound object pronoun)
-    بِكِ (biki) :: to you
 ===ba===
   جعبة (já‘ba) (noun), plural: جعاب :: quiver (for arrows)
 ***باب***
@@ -985,6 +982,10 @@ Index: AR AR->EN
   بابا (bābā) {m}, بابوات (bābawāt) {p}, باباوات (bābāwāt) {p} :: papa, daddy, father
 ===bahār===
   بهار {m} (bahār) (noun), بهارات (baharāt) {p} :: spice
+===بَاهِي===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
+    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
+    He didn't choose a good title for his book :: --
 ===báħri===
   رب (rabb) {m}, ارباب (’arbāb) {p} :: leader, chief, head
     رب بحري (rabb báħri) :: seaman (naval rank)
@@ -1096,6 +1097,9 @@ Index: AR AR->EN
 ===bika===
   ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
     بِكَ (bika) :: to you
+===بِكَ===
+  ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
+    بِكَ (bika) :: to you
 ===biki===
   ـكِ {f} (-ki) (suffix) :: you, your (bound object pronoun)
     بِكِ (biki) :: to you
@@ -1104,6 +1108,9 @@ Index: AR AR->EN
     ازايك (izzayyak) :: How are you(m) ?
     بك (bik) :: to you(m)
     بك (biki) :: to you(f)
+===بِكِ===
+  ـكِ {f} (-ki) (suffix) :: you, your (bound object pronoun)
+    بِكِ (biki) :: to you
 ===بك===
   (Egyptian Arabic) ك {m|f} (-k) (suffix) :: you, your (bound object pronoun)
     ازايك (izzayyik) :: How are you(f) ?
@@ -1154,6 +1161,9 @@ Index: AR AR->EN
 ===bqlam===
   (Tunisian Arabic) و (u) (conjunction) :: and
     حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
+===بْقْلَمْ===
+  (Tunisian Arabic) و (u) (conjunction) :: and
+    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ***بقلاوة***
   بقلاوة (baqlāwa) {f} :: baklava
 ***بربري***
@@ -1358,6 +1368,7 @@ Index: AR AR->EN
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: adversary, opponent
   ضد {{ar-noun|head=ضِدّ|tr=Didd|g=m|pl=اضداد|plhead=أضداد}} :: antitoxin, antidote, anti-
   ضِد{{ar-dia|sha}} (Didda) (preposition) :: against.
+===ضدّ===
   أضداد (’aḍdād) :: {plural of|ضدّ}; opposites.
 ***دف***
   دف {{ar-verb (old)|I|دَفّ|dáffa|دف}}{{ar-verb (old)|II|دَفّ|dáffa|دف}} :: to flap the wings (of a bird)
@@ -1585,7 +1596,6 @@ Index: AR AR->EN
   ف‍- (fa-) (prefix) :: because, for
   ف‍- (fa-) (prefix) :: (with a subjunctive) so that
   م.ت.ف (m.t.f.) {f} (abbreviation of منظمة التحرير الفلسطينية) :: PLO, Palestine Liberation Organization
-  صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ===fa===
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
@@ -1697,7 +1707,7 @@ Index: AR AR->EN
   فروسية (furūsiyya) {f} :: horsemanship, hippology, farriery
   فروسية (furūsiyya) {f} :: chivalry, knighthood
   فروسية (furūsiyya) {f} :: heroism, valor
-===فشيئ===
+===فشيئًا===
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
@@ -1731,7 +1741,7 @@ Index: AR AR->EN
   فيلسوف فَيْلَسوف (failasūf) {m}, فلاسفة (falāsifa) {p} :: philosopher
 ***فيتنام***
   فيتنام (fitnām) {m} :: Vietnam
-===فيوم===
+===فيومًا===
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
@@ -1787,8 +1797,6 @@ Index: AR AR->EN
 ***ح***
   ح / ح‍ / ‍ح‍ / ‍ح (ḥā’) :: The sixth letter of the Arabic alphabet. It is preceded by ج and followed by خ.
   ح / ح‍ / ‍ح‍ / ‍ح (ḥā’) :: The eighth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ز and followed by ط.
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ***ه***
   ه / ﻫ / ‍ه‍ / ‍ه (hā’) :: The twenty-sixth letter of the Arabic alphabet. It is preceded by ن and followed by و.
   ه (number) :: The fifth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by د and followed by و.
@@ -1809,7 +1817,7 @@ Index: AR AR->EN
   هدف {m} (hádaf) (noun), plural: اهداف (’ahdāf) :: target, object, aim, end
   هدف {m} (hádaf) (noun), plural: اهداف (’ahdāf) :: objective, purpose, design, intention
   هدف {m} (hádaf) (noun), plural: اهداف (’ahdāf) :: goal
-===Ħāfiđ===
+===Ħāfiđ̣===
   حافظ {m} (Ħāfiđ̣) (proper noun) :: {{given name|male}}, Hafez
 ***حافظ***
   حافظ {{ar-verb|form=3|tr=ħāfađ̣a|impf=يحافظ|impftr=yuħāfiđ̣u}} :: to preserve, to maintain, to keep up, to uphold, to sustain
@@ -1825,6 +1833,9 @@ Index: AR AR->EN
 ===ḥājtī===
   (Tunisian Arabic) و (u) (conjunction) :: and
     حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
+===حَاجْتِي===
+  (Tunisian Arabic) و (u) (conjunction) :: and
+    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ***حال***
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to change, to be transformed
   حال {{ar-verb (old)|I|حال|ḥāla}}{{ar-verb (old)|II|حال|ḥálla}} :: to shift, to turn, to pass, to grow, to become
@@ -2503,12 +2514,6 @@ Index: AR AR->EN
   (Egyptian Arabic) كـ (ki-) (preposition) :: like
     مش كده :: not like this
     مش كده ؟ :: isn't it ? (tag question)
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: name
-    شِسْمِكْ ؟ :: šismik
-    What's your name? :: --
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ===ka===
   كَـ (ka-) (preposition) :: like, as
   ـكَ {m} (-ka) (suffix) :: you, your (bound object pronoun)
@@ -2533,9 +2538,6 @@ Index: AR AR->EN
 ***خ***
   خ / خ‍ / ‍خ‍ / ‍خ (xā’) :: The seventh letter of the Arabic alphabet. It is preceded by ح and followed by د.
   خ / خ‍ / ‍خ‍ / ‍خ (xā’) :: The twenty-fourth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ث and followed by ذ.
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ***خال***
   خالٍ (xālin) :: empty, void
   خالٍ (xālin) :: open, vacant
@@ -2646,6 +2648,10 @@ Index: AR AR->EN
   خنفساء (xunfusā’) {f}, خنافس (xanāfis) {p} :: beetle
 ***خردل***
   خردل {{ar-noun|g=m|tr=xárdal}} :: mustard
+===خْتَارِشْ===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
+    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
+    He didn't choose a good title for his book :: --
 ***كحول***
   كحول (kuħūl) {m} :: alcohol, spirits
 ***خون***
@@ -2812,11 +2818,6 @@ Index: AR AR->EN
   ل / ل‍ / ‍ل‍ / ‍ل (lām) :: The twenty-third letter of the Arabic alphabet. It is preceded by ك and followed by م.
   ل / ل‍ / ‍ل‍ / ‍ل (lām) :: The twelfth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ك and followed by م.
   ل (li-) :: A prefix meaning to, for, belonging to.
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ***لا***
   لا {{ar-part|tr=lā}} :: not, no
   لا {{ar-part|tr=lā}} :: there is not, there is no
@@ -2844,6 +2845,10 @@ Index: AR AR->EN
 ===lii===
   ي (-ii) (pronoun) :: me, my (bound object pronoun)
     لي (lii) :: to me
+===لِكْتَابُو===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
+    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
+    He didn't choose a good title for his book :: --
 ===liyya===
   (Egyptian Arabic) ي (-ii) (pronoun) :: me, my (bound object pronoun)
     لي (liyya) :: to me
@@ -2910,16 +2915,6 @@ Index: AR AR->EN
   م / م‍ / ‍م‍ / ‍م (mīm) :: The twenty-fourth letter of the Arabic alphabet. It is preceded by ل and followed by ن.
   م / م‍ / ‍م‍ / ‍م (mīm) :: The thirteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ل and followed by ن.
   م.ت.ف (m.t.f.) {f} (abbreviation of منظمة التحرير الفلسطينية) :: PLO, Palestine Liberation Organization
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: name
-    شِسْمِكْ ؟ :: šismik
-    What's your name? :: --
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
-  بات {{ar-adj|tr=batt}} :: categorical
-    مَنع بات :: categorical interdiction
 ***ما***
   ما {{ar-pron|tr=mā}} :: {interrogative} what?
   ما {{ar-pron|tr=mā}} :: {indefinite} some, a certain
@@ -2931,6 +2926,10 @@ Index: AR AR->EN
   ما {{ar-adv|tr=mā}} :: whenever
   ما {{ar-adv|tr=mā}} :: as far as, to the extent that, to the degree that
   مَا وَرَاءَ النَهْر (maa waraa3a n-nahr) (proper noun) :: Transoxiana, "beyond the river" (an old name for the land in Central Asia north of the Amu Darya River).
+===مَا===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
+    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
+    He didn't choose a good title for his book :: --
 ===maa===
   مَا وَرَاءَ النَهْر (maa waraa3a n-nahr) (proper noun) :: Transoxiana, "beyond the river" (an old name for the land in Central Asia north of the Amu Darya River).
 ***ماه***
@@ -2947,6 +2946,9 @@ Index: AR AR->EN
 ===manāqīsh===
   مناقيش (manāqīsh) {m} :: manakish (a Middle-Eastern pastry similar to pizza); also spelt manaeesh or manakeesh in English.
     مناقيش بزعتر (manāqīsh bi-záʕtar) :: thyme manakish
+===مَنع===
+  بات {{ar-adj|tr=batt}} :: categorical
+    مَنع بات :: categorical interdiction
 ===máqdis===
   بيت المقدس (beyt al-muqáddas or al-máqdis) (proper noun) :: Jerusalem (the capital of Palestine and Israel)
 ***مار***
@@ -3249,7 +3251,7 @@ Index: AR AR->EN
   مرحبا مَرْحَبًا (marHában) :: hello, welcome (greeting)
 ===مرحلة===
   مرحلة زمنية (marħála zamníyya) {f} :: period, epoch
-===مرة===
+===مرةٍ===
   رب (rúbba) :: (with a following indefinite genitive) many
     رب رجلٍ (rúbba rájulin) :: many a man
     رب مرةٍ (rúbba márratin) :: many a time
@@ -3706,9 +3708,6 @@ Index: AR AR->EN
 ***نظرية***
   نظرية {{ar-noun|head=نَظَرِيَّة|tr=naðʿaríyya|g=f|pl=نظريات|pltr=naðʿariyyāt}} :: theory
   نظرية {{ar-noun|head=نَظَرِيَّة|tr=naðʿaríyya|g=f|pl=نظريات|pltr=naðʿariyyāt}} :: theorem
-===نع===
-  بات {{ar-adj|tr=batt}} :: categorical
-    مَنع بات :: categorical interdiction
 ***نعامة***
   نعامة (naʕāma) {f} (singulative), نعام (naʕām) {m} (collective), نعائم (naʕā’im) {p} :: ostrich
 ***نعش***
@@ -3728,8 +3727,6 @@ Index: AR AR->EN
 ***ق***
   ق / ق‍ / ‍ق‍ / ‍ق (qāf) :: The twenty-first letter of the Arabic alphabet. It is preceded by ف and followed by ك.
   ق / ق‍ / ‍ق‍ / ‍ق (qāf) :: The nineteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ص and followed by ر.
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ===qábla===
   قبل (qábla) (preposition)قبل (qíbala) (preposition) :: before
   قبل (qábla) (preposition)قبل (qíbala) (preposition) :: prior to
@@ -3965,9 +3962,6 @@ Index: AR AR->EN
 ***ر***
   ر / ‍ر (rā’) :: The tenth letter of the Arabic alphabet. It is preceded by ذ and followed by ز.
   ر / ‍ر (rā’) :: The twentieth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ق and followed by ش.
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ===rabb===
   رب (rabb) {m}, ارباب (’arbāb) {p} :: master, lord, king, sovereign, potentate, gentleman
     الرب (ar-rább) :: God; Lord
@@ -4059,6 +4053,7 @@ Index: AR AR->EN
   رجل {{ar-noun|tr=rijl|g=f|pl=ارجل|pltr=ʾárjul}} :: {anatomy} leg, foot
   رجل {{ar-noun|tr=rijl|g=m|pl=ارجال|pltr=ʾarjāl}} :: swarm (especially, of locusts)
   رجل {{ar-noun|tr=rijl|g=m|pl=ارجال|pltr=ʾarjāl}} :: purslane (Portulaca oleracea L.)
+===رجلٍ===
   رب (rúbba) :: (with a following indefinite genitive) many
     رب رجلٍ (rúbba rájulin) :: many a man
     رب مرةٍ (rúbba márratin) :: many a time
@@ -4149,17 +4144,10 @@ Index: AR AR->EN
   س / س‍ / ‍س‍ / ‍س (sīn) :: The twelfth letter of the Arabic alphabet. It is preceded by ز and followed by ش.
   س / س‍ / ‍س‍ / ‍س (sīn) :: X, unknown variable.
   س / س‍ / ‍س‍ / ‍س (sīn) :: The fifteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ن and followed by ع.
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: name
-    شِسْمِكْ ؟ :: šismik
-    What's your name? :: --
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ***ص***
   ص / ص‍ / ‍ص‍ / ‍ص (ṣād) :: The fourteenth letter of the Arabic alphabet. It is preceded by ش and followed by ض.
   ص / ص‍ / ‍ص‍ / ‍ص (ṣād) :: Y, unknown variable.
   ص / ص‍ / ‍ص‍ / ‍ص (ṣād) :: The eighteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ف and followed by ق.
-  صفر صُفْر (Sufr) {p} :: yellow, pale, pallid, wan ({plural of|أَصْفَر})
 ===saa3a===
   (Egyptian Arabic) ساعة {f} (saa3a(t)) (noun) :: watch {l|gloss=portable or wearable timepiece}
   (Egyptian Arabic) ساعة {f} (saa3a(t)) (noun) :: time {l|gloss=time of day, as given by a clock}
@@ -4318,12 +4306,6 @@ Index: AR AR->EN
 ***ش***
   ش / ش‍ / ‍ش‍ / ‍ش (shiin) :: The thirteenth letter of the Arabic alphabet. It is preceded by س and followed by ص.
   ش / ش‍ / ‍ش‍ / ‍ش (shiin) :: The twenty-first letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ر and followed by ت.
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: name
-    شِسْمِكْ ؟ :: šismik
-    What's your name? :: --
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ===shaal===
   (Egyptian Arabic) شال (shaal) (verb), يشيل (yishiil) :: to carry {l|gloss=to transport by lifting}
 ***شاذ***
@@ -4489,6 +4471,10 @@ Index: AR AR->EN
   (Egyptian Arabic) شباك {m} (shibbaak) (noun), {p} شبابيك :: window
 ===shiffa===
   (Egyptian Arabic) شفة {f} (shiffa) (noun), شفايف (shafaayif) {p} :: {anatomy} lip
+===شِسْمِكْ===
+  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: name
+    شِسْمِكْ ؟ :: šismik
+    What's your name? :: --
 ***شجر***
   شجر {{ar-verb (old)|I|شَجَرَ|šájara}}{{ar-verb (old)|II|شَجّرَ|šájjara}}{{ar-verb (old)|III|شَاجَرَ|šājara|شاجر}}{{ar-verb (old)|V|تَشَجّرَ|tašájjara|تشجر}}{{ar-verb (old)|VI|تَشَاجَرَ|tašājara|تشاجر}}{{ar-verb (old)|VIII|اِشْتَجَرَ|ištájara|اشتجر}} :: to fight
   شجر {{ar-verb (old)|I|شَجَرَ|šájara}}{{ar-verb (old)|II|شَجّرَ|šájjara}}{{ar-verb (old)|III|شَاجَرَ|šājara|شاجر}}{{ar-verb (old)|V|تَشَجّرَ|tašájjara|تشجر}}{{ar-verb (old)|VI|تَشَاجَرَ|tašājara|تشاجر}}{{ar-verb (old)|VIII|اِشْتَجَرَ|ištájara|اشتجر}} :: to litigate
@@ -4637,7 +4623,7 @@ Index: AR AR->EN
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: senator
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: (title of professors and spiritual leaders) sheik, Dr., professor
   شيخ (šeykh) {m}, شيوخ (šuyūkh) {p}, اشياخ (ašyākh) {p}, مشيخة (mašyákha) {p}, مشايخ (mašāyikh) {p}, مشائخ (mašā’ikh) {p} :: (title of address) sir
-===شيئ===
+===شيئًا===
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
@@ -4952,14 +4938,6 @@ Index: AR AR->EN
   ت / ت‍ / ‍ت‍ / ‍ت (tā’) :: The third letter of the Arabic alphabet. Its name is تاء (tā’) and it has the sound of English t. It is preceded by ب and followed by ث.
   ت / ت‍ / ‍ت‍ / ‍ت (tā’) :: The twenty-second letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ش and followed by ث.
   م.ت.ف (m.t.f.) {f} (abbreviation of منظمة التحرير الفلسطينية) :: PLO, Palestine Liberation Organization
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
-===ة===
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ***ط***
   ط / ط‍ / ‍ط‍ / ‍ط (ṭā’) :: The sixteenth letter of the Arabic alphabet. It is preceded by ض and followed by ظ.
   ط / ط‍ / ‍ط‍ / ‍ط (ṭā’) :: The ninth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ح and followed by ى.
@@ -5200,9 +5178,6 @@ Index: AR AR->EN
   و {{ar-con|tr=wa-, u-}} :: and
   (Tunisian Arabic) و (u) (conjunction) :: and
     حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ===wa===
   البوسنة والهَرْسَك (al-buusna wa-al-harsak) (proper noun) :: Bosnia and Herzegovina
 ***واحد***
@@ -5240,7 +5215,7 @@ Index: AR AR->EN
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: front, façade
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: watch dial
   وجه {{ar-noun|head=وَجْه|tr=wajh|g=m|pl=وجوه|plhead=وُجوه}} :: outside, exterior, surface
-===وك===
+===وكَرّاسَة===
   (Tunisian Arabic) و (u) (conjunction) :: and
     حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
 ***ولا***
@@ -5326,11 +5301,6 @@ Index: AR AR->EN
   (Egyptian Arabic) ي (-ii) (pronoun) :: me, my (bound object pronoun)
     لي (liyya) :: to me
     كتابي (kitaabi) :: my book
-  (Tunisian Arabic) و (u) (conjunction) :: and
-    حَاجْتِي بْقْلَمْ وكَرّاسَة (ḥājtī bqlam u karrāsa) :: I need a pencil and a copy-book
-  (Tunisian Arabic) اِسْمْ {m} (ʾism) (noun) :: title
-    مَا خْتَارِشْ اِسْمْ بَاهِي لِكْتَابُو :: mā ḫtāriš ʾism bāhī liktābū
-    He didn't choose a good title for his book :: --
 ===yahūd===
   جمل جَمَل (jamal) {m}, جمال (jimāl) {p} :: chameleon
     جمل اليهود (jámal al-yahūd) :: chameleon
@@ -5356,6 +5326,7 @@ Index: AR AR->EN
 ***يوم***
   يوم يَوْم (yawm) {m}, أيام ('ayyaam) {p} :: day
   يوم يَوْم (yawm) {m}, أيام ('ayyaam) {p} :: age, era, time, period, epoch
+===يومًا===
   ف‍- (fa-) (prefix) :: then, and then
     يومًا فيومًا (yáuman fa-yáuman) :: day after day
     شيئًا فشيئًا (šái’an fa-šái’an) :: step by step
@@ -5760,17 +5731,27 @@ Index: EN EN->AR
   ٠ (ʂifr) :: 0 (zero)
 ===000===
   ٬ :: The Arabic thousands separator: ١٬٠٠٠٬٠٠٠٬٠٠٠ = 1,000,000,000
+===٠٠٠===
+  ٬ :: The Arabic thousands separator: ١٬٠٠٠٬٠٠٠٬٠٠٠ = 1,000,000,000
 ===1===
   ١ (wáħid) :: 1 (one)
   ٬ :: The Arabic thousands separator: ١٬٠٠٠٬٠٠٠٬٠٠٠ = 1,000,000,000
+===١===
+  ٬ :: The Arabic thousands separator: ١٬٠٠٠٬٠٠٠٬٠٠٠ = 1,000,000,000
 ===10===
   ١٠ (‘áshara) :: 10 (ten)
 ===100===
   ٪ :: The Arabic percent sign: ٪١٠٠ = 100%.
+===١٠٠===
+  ٪ :: The Arabic percent sign: ٪١٠٠ = 100%.
+===١١===
+  ١٠ (‘áshara) :: Next: ١١
 ===13th===
   عين (ʕayn) {f}, عَيْنَانِ (ʕeynāni, dual nom.), عَيْنَيْنِ (ʕeynéyni, dual acc./gen.), عُيُون (ʕuyūn, {p}) :: name of the 13th letter of the Arabic alphabet.
 ===14159265358===
   ٫ :: The Arabic decimal point: ٣٫١٤١٥٩٢٦٥٣٥٨ = 3.14159265358
+===١٤١٥٩٢٦٥٣٥٨===
+  ٫ :: The Arabic decimal point: ٣٫١٤١٥٩٢٦٥٣٥٨ = 3.14159265358
 ===1500===
   عندقت {{ar-proper noun|tr=ʕándqet}} :: Andket (a Maronite Christian village in northern Lebanon, over 1500 years old.)
 ===2===
@@ -5778,6 +5759,8 @@ Index: EN EN->AR
 ===3===
   ٣ (thalátha) :: 3 (three)
   ٫ :: The Arabic decimal point: ٣٫١٤١٥٩٢٦٥٣٥٨ = 3.14159265358
+===٣===
+  ٫ :: The Arabic decimal point: ٣٫١٤١٥٩٢٦٥٣٥٨ = 3.14159265358
 ===3andush===
   (Egyptian Arabic) عند (ʕand) (preposition) :: expresses possession, to have
     ماعندوش اصحاب. :: Ma 3andush asHaab.
@@ -5798,6 +5781,8 @@ Index: EN EN->AR
   مشغرة {{ar-proper noun|tr=mašğara|g=f}} :: The village of Mashghara (Machghara), a Lebanese village renowned for its abundance of water, located in the Beqaa region approximately 87 kilometers from Beirut.
 ===9===
   ٩ (tís‘a) :: 9 (nine)
+===٩===
+  ١٠ (‘áshara) :: Previous: ٩
 ===أ===
   ب ﺏ / ﺑ / ﺒ / ﺐ (bā’) :: The second letter of the Arabic alphabet. Its name is باء (bā’) and it has the sound of English b. It is preceded by أ and followed by ت.
   ب (number) :: The second letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by أ and followed by ج.
@@ -6904,9 +6889,6 @@ Index: EN EN->AR
   عرب {{ar-verb (old)|II|عَرّبَ|{LR}3arraba}}{{ar-verb (old)|IV|أعرب|'á3raba}}{{ar-verb (old)|V|تعرب|ta3árraba}}{{ar-verb (old)|X|استعرب|istá3raba}} :: to use desinential inflection (اعراب, iʕrāb).
 ===b===
   ب ﺏ / ﺑ / ﺒ / ﺐ (bā’) :: The second letter of the Arabic alphabet. Its name is باء (bā’) and it has the sound of English b. It is preceded by أ and followed by ت.
-===ב===
-  بن (bin, ibn) {m}, بنت (bint) {f}, ابناء (abnā’) {p}, بنون (banūn) {p} :: son, base form of ابن (ibn) (same as Hebrew בֵּן).
-    بني (bunáiya) — my little son :: --
 ===ب===
   ا / ‍ا (’álif)thumb :: Although usually considered to be the first letter of the Arabic alphabet, the small hamza (ء) that sits on top of أ is really the first letter of the Arabic alphabet, and the tall column is its bearer. This entry only deals with the lower part, the bearer, which is called الف (’álif) and, without the hamza, is used to lengthen a preceding vowel, often a. It is followed by ب.
   ت / ت‍ / ‍ت‍ / ‍ت (tā’) :: The third letter of the Arabic alphabet. Its name is تاء (tā’) and it has the sound of English t. It is preceded by ب and followed by ث.
@@ -7191,6 +7173,9 @@ Index: EN EN->AR
   منطقة {{ar-noun|tr=mintʿáqa|g=f|pl=مناطق|pltr=manātʿiq}} :: belt, girdle
 ===ben===
   بان بَان (bān) (collective) {m}, بَانَة (bāna) (singulative) {f} :: ben tree, horseradish tree (the Moringa oleifera of Arabia and India, which produces oil of ben)
+===בֵּן===
+  بن (bin, ibn) {m}, بنت (bint) {f}, ابناء (abnā’) {p}, بنون (banūn) {p} :: son, base form of ابن (ibn) (same as Hebrew בֵּן).
+    بني (bunáiya) — my little son :: --
 ===bench===
   تخت (taxt) {m}, تخوت (tuxūt) {p} :: bench
 ===bend===
@@ -14272,9 +14257,6 @@ Index: EN EN->AR
   زاهد {m} (zāhid) (noun), زهاد (zuhhād) {p} :: {{context|Sufism}} A popular title bestowed on disciples of Mystic Sufi orders upon their initiation. After initiation the title took the place of the new Spiritual Masters’ given names. A famous bearer of the title Zahed was Sheikh Zahed Gilani of Lahijan in Gilan province of northern Iran.
 ===mythical===
   رخ (raxx) {m} (collective), رخة (ráxxa) {f} (singulative)رخ{m}رخاخ{p}رخخة{p} :: roc (mythical bird)
-===ן===
-  بن (bin, ibn) {m}, بنت (bint) {f}, ابناء (abnā’) {p}, بنون (banūn) {p} :: son, base form of ابن (ibn) (same as Hebrew בֵּן).
-    بني (bunáiya) — my little son :: --
 ===ن===
   س / س‍ / ‍س‍ / ‍س (sīn) :: The fifteenth letter in traditional abjad order, which is used in place of numerals for list numbering (abjad numerals). It is preceded by ن and followed by ع.
   م / م‍ / ‍م‍ / ‍م (mīm) :: The twenty-fourth letter of the Arabic alphabet. It is preceded by ل and followed by ن.
@@ -19383,6 +19365,8 @@ Index: EN EN->AR
   اعراب (iʕrāb) {m}اعراب{p} :: manifestation, declaration, proclamation, pronouncement, utterance
 ===V===
   ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
+===Ⅴ===
+  ﻫ (initial form of ه) (hā’) :: Normally the twenty-sixth letter of the Arabic alphabet, when this letter is used in this initial form as an enumerator, it is interpreted as the fifth letter in traditional abjad order, equivalent to our Roman numeral V or Ⅴ (see abjad numerals). It is preceded by د and followed by و.
 ===vacant===
   صفر {{ar-verb (old)|I|صفِر|ṣáfira}}{{ar-verb (old)|II|صفّر|ṣáffara}}{{ar-verb (old)|IV|اصفر|’áṣfara}} :: to be empty, to be devoid, to be vacant
   خالٍ (xālin) :: open, vacant
diff --git a/testdata/goldens/wiktionary.th_th.quickdic.text b/testdata/goldens/wiktionary.th_th.quickdic.text
new file mode 100644 (file)
index 0000000..0b91744
--- /dev/null
@@ -0,0 +1,8287 @@
+dictInfo=SomeWikiData
+EntrySource: enwiktionary.thai 4911
+
+Index: TH TH->EN
+***ฯลฯ***
+  ฯลฯ (paiyanyai) (noun) :: abbreviation indicator.
+***๐***
+  ๐ (ศูนย์, súún) :: 0 (zero)
+***๑***
+  ๑ (หนึ่ง, nèung) :: 1 (one)
+***๑๐***
+  ๑๐ (สิบ, sìp) :: 10 (ten)
+***๒***
+  ๒ (สอง, sááwng) :: 2 (two)
+***๓***
+  ๓ (สาม, săam) :: 3 (three)
+***๔***
+  ๔ (สี่, sèe) :: 4 (four)
+***๕***
+  ๕ (ห้า, hâa) :: 5 (five)
+***555***
+  555 (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol
+  ๕๕๕ (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol (literally, 555)
+***๕๕๕***
+  ๕๕๕ (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol (literally, 555)
+***๖***
+  ๖ (หก, hòk) :: 6 (six)
+***๗***
+  ๗ (เจ็ด, jèt) :: 7 (seven)
+***๘***
+  ๘ (แปด, bpàet) :: 8 (eight)
+***๙***
+  ๙ (เก้า, kào) :: 9 (nine)
+===ā===
+  อากาศ (ā kād) (noun) :: air
+===aa===
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+  อาหาร (aa-hăan) (noun) :: food
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+===aab===
+  อบ (aab) (verb) :: to bake
+===aathít===
+  วันอาทิตย์ (wan aathít) (noun) :: Sunday
+===ààwtdraelia===
+  ออสเตรเลีย (ààwtdraelia) (adjective) :: Australian
+  ออสเตรเลีย (ààwtdraelia) (proper noun) :: Australia
+===ad===
+  อัด (ad) (verb) :: To hit.
+  อัด (ad) (verb) :: To record.
+===adiit===
+  อดีต (adiit) (noun) :: past
+===adsam===
+  ภาษาอัสสัม (paasăa adsam) (proper noun) :: The Assamese language.
+===āhān===
+  สารอาหาร (sān āhān) (noun) :: nutrient
+===ai===
+  ไอ (ai) (verb) :: To cough.
+===ailaen===
+  ประเทศไอร์แลนด์ (prathed ailaen) (proper noun) :: Ireland
+===akkhanii===
+  อัคนี (akkhanii) (proper noun) :: Agni
+  อัคนี (akkhanii) (proper noun) :: {{given name|male}}.
+  อัคนี (akkhanii) (noun) :: fire
+===am===
+  อำ (am) (verb) :: To possess.
+  อำนวย (am nuay) (verb) :: To give.
+===americaa===
+  สหรัฐอเมริกา (saharad americaa) (proper noun) :: The United States
+===ampʰawn===
+  อัมพร (ampʰawn) (proper noun) :: {{given name|female}}.
+  อัมพร (ampʰawn) (noun) :: sky
+===ān===
+  อ่าน (ān) (verb) :: To read.
+===anggrìt===
+  ภาษาอังกฤษ (paasăa anggrìt) (proper noun) :: English language
+===angkaan===
+  วันอังคาร (wan angkaan) (noun) :: Tuesday
+===angkrid===
+  ประเทศอังกฤษ (prathed angkrid) (proper noun) :: England
+===angkrit===
+  อังกฤษ (angkrit) (noun) :: England
+  อังกฤษ (angkrit) (noun) :: British
+  อังกฤษ (angkrit) (noun) :: English
+===antha===
+  อัณฑะ (antha) (noun) :: testicle
+===arun===
+  อรุณ (arun) (proper noun) :: {{given name|male}}.
+  อรุณ (arun) (noun) :: morning
+===asajan===
+  อัศจรรย์ (asajan) (adjective) :: marvelous
+===āud===
+  อวด (āud) (verb) :: to gloat
+===āw===
+  อ่าวไทย (āw tai) (proper noun) :: Gulf of Thailand
+===awk===
+  ออก (awk) (verb) :: To exit.
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+===ɑtʰɪbɑːj===
+  อธิบาย (/ɑtʰɪbɑːj/) (verb) :: To explain.
+***บ***
+  บ (b; baw bai máai) :: The 26th letter of the Thai alphabet.
+===บ้า===
+  บ้า,คลั่งใคล้ (adjective) :: crazy
+===baalii===
+  ภาษาบาลี (paasăa baalii) (proper noun) :: The Pali language.
+===baang===
+  บางกอก (baang-gòk) (proper noun) :: Bangkok
+===bàat===
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+===bad===
+  บัตร (bad) (noun) :: card
+***บ้าน***
+  บ้าน (bâan) :: house, home
+  บ้าน (bâan) :: habitation
+===bang===
+  บัง (bang) (verb) :: to conceal
+  บังคับ (bang kab) (verb) :: to force
+***บัง***
+  บัง (bang) (verb) :: to conceal
+***บังคับ***
+  บังคับ (bang kab) (verb) :: to force
+***บางกอก***
+  บางกอก (baang-gòk) (proper noun) :: Bangkok
+===barikan===
+  บริการ (barikan) (noun) :: service
+===bariwaan===
+  บริวาร (bariwaan) (noun) :: followers.
+***บาท***
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+***บัตร***
+  บัตร (bad) (noun) :: card
+===bēb===
+  บีบ (bēb) (verb) :: to squeeze
+===bengaalii===
+  ภาษาเบงกาลี (paasăa bengaalii) (proper noun) :: The Bengali language.
+***บีบ***
+  บีบ (bēb) (verb) :: to squeeze
+***บิดา***
+  บิดา (bidaa) (noun) :: father.
+===bidaa===
+  บิดา (bidaa) (noun) :: father.
+===bind===
+  รัด (bind) (verb) :: To bind.
+===ใบนั้นดื่มนม===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+***บน***
+  บน (bon) (preposition) :: on
+  บน (bon) (preposition) :: above
+***บ่น***
+  บ่น (bon) (verb) :: to nag
+===bok===
+  บอก (bok) (verb) :: to tell
+===bon===
+  บ่น (bon) (verb) :: to nag
+  บน (bon) (preposition) :: on
+  บน (bon) (preposition) :: above
+===bong===
+  บ้อง (bong) (noun) :: A bong.
+===boon===
+  นักบุญ (nag-boon) (noun) :: saint
+===boot===
+  บุตร (boot) (noun) :: A son.
+===bowling===
+  โบว์ลิ่ง (bowling) (noun) :: bowling
+***โบว์ลิ่ง***
+  โบว์ลิ่ง (bowling) (noun) :: bowling
+===bpang===
+  ขนมปัง (kànŏm bpang) (noun) :: bread
+===bpen===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===bpèt===
+  เป็ด (bpèt) (noun) :: duck, drake, duckling
+  เป็ด (bpèt) (noun) :: duck-shaped boat
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===bplay===
+  เปลญวน (bplay yuan) (noun) :: hammock
+===bpòon===
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+===bpràtêt===
+  ประเทศฝรั่งเศส (bpràtêt fàràngsèt) (proper noun) :: France
+===bprohdtòogèt===
+  ภาษาโปรตุเกส (paasăa bprohdtòogèt) (proper noun) :: The Portuguese language.
+***บริการ***
+  บริการ (barikan) (noun) :: service
+***บริวาร***
+  บริวาร (bariwaan) (noun) :: followers.
+***บรรทัด***
+  บรรทัด (bantát) :: straight line
+  บรรทัด (bantát) :: row
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===bū===
+  บูชา (bū chā) (verb) :: worship
+  บูชา (bū chā) (verb) :: respect
+***บูชา***
+  บูชา (bū chā) (verb) :: worship
+  บูชา (bū chā) (verb) :: respect
+===budsabā===
+  บุษบา (budsabā) (proper noun) :: {{given name|female}}.
+  บุษบา (budsabā) (noun) :: A flower
+***บุษบา***
+  บุษบา (budsabā) (proper noun) :: {{given name|female}}.
+  บุษบา (budsabā) (noun) :: A flower
+***บุตร***
+  บุตร (boot) (noun) :: A son.
+***บอก***
+  บอก (bok) (verb) :: to tell
+***บ้อง***
+  บ้อง (bong) (noun) :: A bong.
+***จ***
+  จ (j; jaw jād) :: The eighth letter of the Thai alphabet
+===cā===
+  คารวะ (cā ra wa) (noun) :: respect
+***จำ***
+  จำ (jam) (verb) :: To remember.
+***จับ***
+  จับ (jab) (verb) :: to grab
+***จัด***
+  จัด (jad) (verb) :: To arrange.
+***จักร***
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+  จักร (jak) (noun) :: gear
+  จักร (jak) (noun) :: chakra
+  จักร (jak) (noun) :: sovereign
+***จักรยาน***
+  จักรยาน (jakrayaan) (noun) :: bicycle
+***จักษุ***
+  จักษุ (jaksu) (noun) :: eye
+***จาม***
+  จาม (jām) (verb) :: to sneeze
+***จาน***
+  จาน (jaan) (noun) :: plate
+===จัง===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+***จันทร์***
+  จันทร์ (jan) (noun) :: Moon.
+===cao===
+  เคารพ (cao rob) (noun) :: respect
+***จบ***
+  จบ (job) (verb) :: To end.
+***จด***
+  จด (jod) (verb) :: To scribble.
+  จด (jod) (verb) :: To write.
+***จดจำ***
+  จดจำ (jod jam) (verb) :: To remember.
+***เจได***
+  เจได (jàydai) :: Jedi
+***เจดีย์***
+  เจดีย์ (jedi) (noun) :: chedi, stupa
+***เจอ***
+  เจอ (jer) (verb) :: To discover.
+***ฉ***
+  ฉ (ch; chaw ching) :: The ninth letter of the Thai alphabet
+***ช***
+  ช (ch, sh; chaw cháang) :: The tenth letter of the Thai alphabet.
+***ฌ***
+  ฌ (ch, sh; chaw kachoe) :: The 12th letter of the Thai alphabet.
+===cha===
+  ชา (cha) (noun) :: tea
+===chā===
+  บูชา (bū chā) (verb) :: worship
+  บูชา (bū chā) (verb) :: respect
+  อิจฉา (id chā) (verb) :: envy
+***ชา***
+  ชา (chaa) (adjective) :: numb
+  ชา (cha) (noun) :: tea
+===chaa===
+  ชา (chaa) (adjective) :: numb
+  ลือชา (lue chaa) (verb) :: To make one famous.
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+===chaai===
+  ชาย (chaai) (noun) :: male
+===cháang===
+  ช้าง (cháang) (noun) :: elephant
+===chaaonaa===
+  ชาวนา (chaaonaa) (noun) :: A farmer.
+===châat===
+  หญิงชาติชั่ว (yĭng châat chûa) (noun) :: {vulgar} slut
+===chada===
+  ชฎา (chada) (noun) :: headdress
+===chai===
+  ชัย (chai) (proper noun) :: {{given name|male}}.
+  ชัย (chai) (noun) :: triumph
+  ชัย (chai) (noun) :: victory
+  ใช่ (chai) (adverb) :: yes
+  ใช่ (chai) (interjection) :: yes
+  ใช่ (chai) (noun) :: yes
+  ใช้ (chai) (verb) :: to use
+  ใช้ (chai) (verb) :: to order
+  เพศชาย (ped-chai) (noun) :: male
+===châi===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===chaiyo===
+  ไชโย (chaiyo) (interjection) :: cheers!
+***ฉัน***
+  ฉัน :: I; me (for female speakers)
+===chana===
+  ชนะ (chana) (verb) :: To win.
+***ช้าง***
+  ช้าง (cháang) (noun) :: elephant
+===chao===
+  ชาว (chao) (noun) :: people, person
+  ชาวไทย (chao tai) (proper noun) :: a Thai person
+  ชาวไทย (chao tai) (proper noun) :: Thai people
+===chaoangkrit===
+  ชาวอังกฤษ (chaoangkrit) (noun) :: British people
+  ชาวอังกฤษ (chaoangkrit) (noun) :: English people
+===chāt===
+  ชาติ (chāt) (noun) :: life
+  ชาติ (chāt) (noun) :: family
+  ชาติ (chāt) (noun) :: nation
+***ชาติ***
+  ชาติ (chāt) (noun) :: life
+  ชาติ (chāt) (noun) :: family
+  ชาติ (chāt) (noun) :: nation
+***ชาว***
+  ชาว (chao) (noun) :: people, person
+===chawaa===
+  ภาษาชวา (paasăa chawaa) (proper noun) :: The Javanese language.
+***ชาวนา***
+  ชาวนา (chaaonaa) (noun) :: A farmer.
+***ชาวไทย***
+  ชาวไทย (chao tai) (proper noun) :: a Thai person
+  ชาวไทย (chao tai) (proper noun) :: Thai people
+***ชาวอังกฤษ***
+  ชาวอังกฤษ (chaoangkrit) (noun) :: British people
+  ชาวอังกฤษ (chaoangkrit) (noun) :: English people
+***ชัย***
+  ชัย (chai) (proper noun) :: {{given name|male}}.
+  ชัย (chai) (noun) :: triumph
+  ชัย (chai) (noun) :: victory
+***ชาย***
+  ชาย (chaai) (noun) :: male
+***ชฎา***
+  ชฎา (chada) (noun) :: headdress
+===chē===
+  ชีวิต (chē wit) (noun) :: life
+***เชิด***
+  เชิด (cherd) (verb) :: To lift.
+***เชิดชู***
+  เชิดชู (cherd choo) (verb) :: To praise.
+===cherd===
+  เชิด (cherd) (verb) :: To lift.
+  เชิดชู (cherd choo) (verb) :: To praise.
+***เชื่อ***
+  เชื่อ (chuea) (verb) :: To believe.
+***เชือก***
+  เชือก (chêuak) :: classifier for elephants
+  เชือก (chêuak) :: rope, string, cord, thread
+***เฌอ***
+  เฌอ (chəə) (noun) :: tree
+===chəə===
+  เฌอ (chəə) (noun) :: tree
+===chim===
+  ชิม (chim) (verb) :: To taste.
+***ชิม***
+  ชิม (chim) (verb) :: To taste.
+***ฉิ่ง***
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===ćhiw===
+  ชิวหา (ćhiw-hā) (noun) :: tongue
+***ชิวหา***
+  ชิวหา (ćhiw-hā) (noun) :: tongue
+***ชีวิต***
+  ชีวิต (chē wit) (noun) :: life
+***ไชโย***
+  ไชโย (chaiyo) (interjection) :: cheers!
+***ใช่***
+  ใช่ (chai) (adverb) :: yes
+  ใช่ (chai) (interjection) :: yes
+  ใช่ (chai) (noun) :: yes
+***ใช้***
+  ใช้ (chai) (verb) :: to use
+  ใช้ (chai) (verb) :: to order
+***ฉก***
+  ฉก (chok) (verb) :: to wrest
+***ชก***
+  ชก (chok) (verb) :: to punch
+***ชล***
+  ชล (chon) (noun) :: water
+***ชน***
+  ชน (chon) (noun) :: people
+  ชน (chon) (noun) :: person
+  ชน (chon) (verb) :: to collide with
+***ชนะ***
+  ชนะ (chana) (verb) :: To win.
+===chōb===
+  ชอบ (chōb) (verb) :: To like.
+===chok===
+  ฉก (chok) (verb) :: to wrest
+  ชก (chok) (verb) :: to punch
+===chókgohláet===
+  ช็อกโกแล็ต (chókgohláet) (noun) :: chocolate
+===chon===
+  ชน (chon) (noun) :: people
+  ชน (chon) (noun) :: person
+  ชน (chon) (verb) :: to collide with
+  ชล (chon) (noun) :: water
+===choo===
+  เชิดชู (cherd choo) (verb) :: To praise.
+***ชู***
+  ชู (shoo) (verb) :: To raise.
+===chûa===
+  หญิงชาติชั่ว (yĭng châat chûa) (noun) :: {vulgar} slut
+===chuea===
+  เชื่อ (chuea) (verb) :: To believe.
+===chuey===
+  ช่วย (chuey) (verb) :: to help
+***ชุมชน***
+  ชุมชน (noun) :: community
+***ชื่อ***
+  ชื่อ (chùu) :: name
+***ช่วย***
+  ช่วย (chuey) (verb) :: to help
+***ชอบ***
+  ชอบ (chōb) (verb) :: To like.
+***ช็อกโกแล็ต***
+  ช็อกโกแล็ต (chókgohláet) (noun) :: chocolate
+***จิก***
+  จิก (jik) (verb) :: To peck.
+***จิงโจ้***
+  จิงโจ้ (jing-jôh) (noun) :: kangaroo
+***จิ้งจอก***
+  จิ้งจอก (jîngjòk) (noun) :: fox
+***จินตนา***
+  จินตนา (jintana) (proper noun) :: {{given name|female}}.
+  จินตนา (jintana) (verb) :: To imagine.
+***ใจ***
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+***โจร***
+  โจร (jōn) (noun) :: thief
+***จริง***
+  จริง (jing) :: real, true, actual
+  จริง (jing) :: authentic, genuine
+  จริง (jing) :: really, truly, indeed
+***จูบ***
+  จูบ (jūb) (verb) :: To kiss.
+***ฎ***
+  ฎ (d; daw cha dā) :: The 14th letter of the Thai alphabet.
+***ด***
+  ด (d; daw dek) :: The 20th letter of theThai alphabet
+===da===
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+===dā===
+  สัปดาห์ (sap dā) (noun) :: week
+  มุกดา (muk dā) (noun) :: pearl
+===dàap===
+  ดาบ (dàap) (noun) :: sword
+===daaraa===
+  ดารา (daaraa) (noun) :: A celebrity.
+  ดารา (daaraa) (noun) :: A star.
+===dààwk===
+  ดอก (dààwk) (noun) :: flower
+***ดาบ***
+  ดาบ (dàap) (noun) :: sword
+===dad===
+  ภาษาดัตช์ (paasăa dad) (proper noun) :: The Dutch language.
+===dan===
+  ดัน (dan) (verb) :: to push
+***ดัน***
+  ดัน (dan) (verb) :: to push
+***ดารา***
+  ดารา (daaraa) (noun) :: A celebrity.
+  ดารา (daaraa) (noun) :: A star.
+***ด้าย***
+  ด้าย (dâai) :: thread, string, cord, yarn
+===dee===
+  ดี (dee) (adjective) :: good
+***เดิน***
+  เดิน (dern) (verb) :: to walk
+===dek===
+  เด็ก (dek) (noun) :: boy
+  เด็ก (dek) (noun) :: girl
+  เด็ก (dek) (noun) :: kid
+  เด็ก (dek) (noun) :: child
+  เด็ก (dek) (noun) :: children
+  เด็ก (dek) (noun) :: adolescent
+***เด็ก***
+  เด็ก (dek) (noun) :: boy
+  เด็ก (dek) (noun) :: girl
+  เด็ก (dek) (noun) :: kid
+  เด็ก (dek) (noun) :: child
+  เด็ก (dek) (noun) :: children
+  เด็ก (dek) (noun) :: adolescent
+===dern===
+  เดิน (dern) (verb) :: to walk
+===deuan===
+  เดือน (deuan) (noun) :: month.
+  เดือน (deuan) (noun) :: moon.
+***เดือน***
+  เดือน (deuan) (noun) :: month.
+  เดือน (deuan) (noun) :: moon.
+***ดี***
+  ดี (dee) (adjective) :: good
+===dichan===
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+***ดิฉัน***
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+===din===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+***ดม***
+  ดม (dom) (verb) :: To smell.
+===dōd===
+  กระโดด (kra dōd) (verb) :: to jump
+***โดโด้***
+  โดโด้ (doh-dôh) (noun) :: dodo
+===doh===
+  โดโด้ (doh-dôh) (noun) :: dodo
+===dôh===
+  โดโด้ (doh-dôh) (noun) :: dodo
+===dom===
+  ดม (dom) (verb) :: To smell.
+===dong===
+  พริกดอง (prík dong) (noun) :: pickled chilli
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===dtaa===
+  ขนตา (kŏn dtaa) (noun) :: eyelash
+===dtàgìap===
+  ตะเกียบ (dtàgìap) (noun) :: chopsticks
+===duangjai===
+  ดวงใจ (duangjai) (noun) :: heart.
+===duay===
+  ด้วยเหตุที่ (duay hēt thī) (conjunction) :: for
+  เห็นด้วย (hen duay) (verb) :: To agree with.
+===dūd===
+  ดูด (dūd) (verb) :: To suck.
+***ดูด***
+  ดูด (dūd) (verb) :: To suck.
+===dūem===
+  ดื่ม (dūem) (verb) :: To drink.
+===dueng===
+  ดึง (dueng) (verb) :: To pull.
+***ดื่ม***
+  ดื่ม (dūem) (verb) :: To drink.
+***ดึง***
+  ดึง (dueng) (verb) :: To pull.
+***ดวงใจ***
+  ดวงใจ (duangjai) (noun) :: heart.
+***ด้วยเหตุที่***
+  ด้วยเหตุที่ (duay hēt thī) (conjunction) :: for
+***ดอก***
+  ดอก (dààwk) (noun) :: flower
+===èek===
+  อีก (èek) (adverb) :: again
+===èt===
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+  สิบเอ็ด (sìp èt) (noun) :: eleven
+***ฝ***
+  ฝ (f; faw fā) :: The 29th letter of the Thai alphabet
+***ฟ***
+  ฟ (f; faw fan) :: The 31st letter of the Thai alphabet
+===fā===
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+***ฟ้า***
+  ฟ้า (fáa) (adjective) :: light blue, sky blue
+  ฟ้า (fáa) (noun) :: sky, firmament, heaven
+===fáa===
+  ฟ้า (fáa) (adjective) :: light blue, sky blue
+  ฟ้า (fáa) (noun) :: sky, firmament, heaven
+===fai===
+  ไฟ (fai) (noun) :: fire
+  ใฝ่ (fai) (verb) :: To aim for a goal.
+===fan===
+  ฟัน (fan) (noun) :: A tooth.
+  ฟัน (fan) (verb) :: To cut.
+===făn===
+  ฝันร้าย (făn ráai) (noun) :: nightmare
+***ฝัน***
+  ฝัน (fun) (verb) :: dream
+***ฟัน***
+  ฟัน (fan) (noun) :: A tooth.
+  ฟัน (fan) (verb) :: To cut.
+===fang===
+  ฟัง (fang) (verb) :: to listen
+  ฝัง (fang) (verb) :: to bury
+***ฝัง***
+  ฝัง (fang) (verb) :: to bury
+***ฟัง***
+  ฟัง (fang) (verb) :: to listen
+***ฝันร้าย***
+  ฝันร้าย (făn ráai) (noun) :: nightmare
+===fao===
+  เฝ้า (fao) (verb) :: To watch.
+===farang===
+  ฝรั่ง (farang) (noun) :: foreigner
+  ฝรั่งเศส (farang séd) (proper noun) :: France
+  ฝรั่งเศส (farang séd) (proper noun) :: French
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+===fàràngsèt===
+  ประเทศฝรั่งเศส (bpràtêt fàràngsèt) (proper noun) :: France
+===fawng===
+  ฟอง (fawng) (noun) :: {formal} egg
+***เฝ้า***
+  เฝ้า (fao) (verb) :: To watch.
+***ไฟ***
+  ไฟ (fai) (noun) :: fire
+***ใฝ่***
+  ใฝ่ (fai) (verb) :: To aim for a goal.
+===fongman===
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ฟองมัน (fongman) (noun) :: greasy egg
+***ฝรั่ง***
+  ฝรั่ง (farang) (noun) :: foreigner
+***ฝรั่งเศส***
+  ฝรั่งเศส (farang séd) (proper noun) :: France
+  ฝรั่งเศส (farang séd) (proper noun) :: French
+===fūen===
+  ฝืน (fūen) (verb) :: To disobey.
+===fun===
+  ฝัน (fun) (verb) :: dream
+***ฝืน***
+  ฝืน (fūen) (verb) :: To disobey.
+***ฟอง***
+  ฟอง (fawng) (noun) :: {formal} egg
+***ฟองมัน***
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ฟองมัน (fongman) (noun) :: greasy egg
+===gaan===
+  การเงิน (gaan ngern) (noun) :: finance
+  การเงิน (gaan ngern) (noun) :: monetary matters
+===gaanbâan===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===gaang===
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+  กงกาง (gong gaang) (noun) :: responsibility, duty
+===gâao===
+  ก้าว (gâao) (noun) :: To move forward
+===gaeng===
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+===gâew===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+  แก้ว (gâew) (noun) :: {entomology} variety of caterpillar
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  แก้ว (gâew) (adjective) :: brave, courageous
+  แก้ว (gâew) (adjective) :: bold
+  แก้ว (gâew) (adjective) :: {poetic} virtuous, sagacious
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===gampoochaa===
+  กัมพูชา (gampoochaa) (proper noun) :: Cambodia, Kampuchea
+===gɑ===
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+===gìaaw===
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+  เกี่ยว (gìaaw) (verb) :: to reap, to harvest, to mow
+  เกี่ยว (gìaaw) (adjective) :: (is) entangled with, (is) hugging, (is) embracing
+===glaang===
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+===gleun===
+  กลืน (gleun) (verb) :: To swallow.
+===gòk===
+  บางกอก (baang-gòk) (proper noun) :: Bangkok
+===gong===
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+  กงกาง (gong gaang) (noun) :: responsibility, duty
+===gòp===
+  กบ (gòp) (noun) :: frog
+  ลูกกบ (lôok gòp) (noun) :: tadpole
+===gòr===
+  เกาะ (gòr) (noun) :: island, isle
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===gɔd===
+  กอด (/gɔd/) (verb) :: To hug.
+  กอด (/gɔd/) (verb) :: To hold on to someone.
+===grèek===
+  ภาษากรีก (paasăa grèek) (proper noun) :: The Greek language.
+===grom===
+  พจนานุกรม (pótjànaanú grom) (noun) :: dictionary
+===groong===
+  กรุง (groong) (noun) :: city
+  กรุงเทพ (groong têp) (proper noun) :: Bangkok, Krungthep
+***ห***
+  ห (h; haw hēb) :: The 41st letter of the Thai alphabet
+***ฮ***
+  ฮ (h; haw nok hūk) :: The 44th letter of the Thai alphabet
+===hā===
+  หา (hā) (verb) :: To search.
+  ชิวหา (ćhiw-hā) (noun) :: tongue
+***หา***
+  หา (hā) (verb) :: To search.
+***ห้า***
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+  ห้า (hâa) (noun) :: five
+  ห้า (hâa) (adjective) :: five
+===hâa===
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+  ห้า (hâa) (noun) :: five
+  ห้า (hâa) (adjective) :: five
+===hăan===
+  อาหาร (aa-hăan) (noun) :: food
+===hāek===
+  แหก (hāek) (verb) :: To part.
+***แหก***
+  แหก (hāek) (verb) :: To part.
+===hai===
+  ให้ (hai) (verb) :: To give.
+  ให้ (hai) (verb) :: To allow.
+===hâi===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===hāi===
+  ร้องไห้ (rawng hāi) (verb) :: To cry.
+===hām===
+  ห้าม (hām) (verb) :: To stop.
+***ห้าม***
+  ห้าม (hām) (verb) :: To stop.
+===hāng===
+  หาง (hāng) (noun) :: A tail
+  หาง (hāng) (noun) :: An object's end
+  หางเสือเรือ (hāng sūe rūea) (noun) :: rudder
+  หางเสือเลี้ยว (hāng sūe liāw) (noun) :: rudder
+  หางเสือ (hāng sūe) (noun) :: rudder
+***หาง***
+  หาง (hāng) (noun) :: A tail
+  หาง (hāng) (noun) :: An object's end
+***หางเสือ***
+  หางเสือ (hāng sūe) (noun) :: rudder
+***หางเสือเลี้ยว***
+  หางเสือเลี้ยว (hāng sūe liāw) (noun) :: rudder
+***หางเสือเรือ***
+  หางเสือเรือ (hāng sūe rūea) (noun) :: rudder
+===hareuthai===
+  หฤทัย (hareuthai) (proper noun) :: {{given name|female}}, Hathai
+  หฤทัย (hareuthai) (noun) :: heart
+  หฤทัย (hareuthai) (noun) :: mind
+***หัวใจ***
+  หัวใจ (huajai) (noun) :: heart.
+===hāy===
+  หาย (hāy) (verb) :: to disappear
+  สหาย (sa hāy) (noun) :: friend
+  หายใจ (hāy jai) (verb) :: to breathe
+***หาย***
+  หาย (hāy) (verb) :: to disappear
+***หายใจ***
+  หายใจ (hāy jai) (verb) :: to breathe
+===hed===
+  เหตุ (hed) (noun) :: A reason.
+***เห็ด***
+  เห็ด (hèt) (noun) :: mushroom
+***เหลี่ยม***
+  เหลี่ยม (lìam) (noun) :: angle
+  เหลี่ยม (lìam) (noun) :: edge, side
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===hen===
+  เห็น (hen) (verb) :: To see.
+  เห็นด้วย (hen duay) (verb) :: To agree with.
+***เห็น***
+  เห็น (hen) (verb) :: To see.
+***เห็นด้วย***
+  เห็นด้วย (hen duay) (verb) :: To agree with.
+***เหงื่อ***
+  เหงื่อ (ngèua) (noun) :: A sweat.
+***เหนื่อย***
+  เหนื่อย (ngèuay) (adjective) :: weary.
+===hèt===
+  เห็ด (hèt) (noun) :: mushroom
+===hēt===
+  ด้วยเหตุที่ (duay hēt thī) (conjunction) :: for
+***เหตุ***
+  เหตุ (hed) (noun) :: A reason.
+===hib===
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+***ไหม***
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+  ไหม (mãi) (noun) :: silk
+===hima===
+  หิมะ (hima) (noun) :: snow.
+***หิมะ***
+  หิมะ (hima) (noun) :: snow.
+===hindee===
+  ภาษาฮินดี (phaasăa hindee) (proper noun) :: The Hindi language.
+***ให้***
+  ให้ (hai) (verb) :: To give.
+  ให้ (hai) (verb) :: To allow.
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+***ใหม่***
+  ใหม่ (mài) (adjective) :: new
+  ใหม่ (mài) :: again, once more
+  ใหม่ (mài) :: new, latest, recent
+  ใหม่ (mài) :: re-
+***ใหญ่***
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+  ใหญ่ (yài) (verb) :: to be major, to be extensive, to be sizeable
+***หก***
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+  หก (hòk) (noun) :: six
+  หก (hòk) (verb) :: to spill
+  หก (hòk) (verb) :: to fall
+  หก (hòk) (verb) :: to splatter
+***หลับ***
+  หลับ (lab) (verb) :: to sleep
+***หลัง***
+  หลัง (lăng) :: next, after, later, hind
+  หลัง (lăng) :: after, past
+  หลัง (lăng) :: behind, at the back
+  หลัง (lăng) :: {anatomy} back, back part
+  หลัง (lăng) :: back, rear
+***หลง***
+  หลง (long) (verb) :: To lose one's way.
+***หลวง***
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+  หลวง (lŭang) (adjective) :: royal, of the court, of the crown
+***หมา***
+  หมา (mǎa) (noun) :: dog
+***หมีแพนด้า***
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+***หมู***
+  หมู (mŏo) (noun) :: piglet
+***หมึก***
+  หมึก (mèuk) (noun) :: ink
+***หมื่น***
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+***หมุน***
+  หมุน (mun) (verb) :: To spin.
+***หมุนเวียน***
+  หมุนเวียน (mun wian) (verb) :: To circulate.
+***หมวก***
+  หมวก (muak) (noun) :: hat
+===หน้า===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===หนังใหญ่===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+***หงส์***
+  หงส์ (hong) (proper noun) :: {{given name|female}}.
+  หงส์ (hong) (noun) :: A swan.
+***หนี***
+  หนี (nī) (verb) :: To escape.
+***หนีบ***
+  หนีบ (neeb) (verb) :: To pinch.
+***หนู***
+  หนู (nŭu) (pronoun) :: I(child to adult)
+  หนู (nŭu) :: rat, mouse
+***หนึ่ง***
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+  หนึ่ง (nèung) (noun) :: one
+  หนึ่ง (nèung) (adjective) :: one
+===hok===
+  วิหก (wi hok) (noun) :: bird
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===hòk===
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+  หก (hòk) (noun) :: six
+  หก (hòk) (verb) :: to spill
+  หก (hòk) (verb) :: to fall
+  หก (hòk) (verb) :: to splatter
+===hong===
+  หงส์ (hong) (proper noun) :: {{given name|female}}.
+  หงส์ (hong) (noun) :: A swan.
+===hŏo===
+  หู (hŏo) (noun) :: An ear.
+===hòot===
+  หูด (hòot) (noun) :: wart
+***หรือ***
+  หรือ (rĕu) (conjunction) :: or
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+***หู***
+  หู (hŏo) (noun) :: An ear.
+===hŭa===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===huajai===
+  หัวใจ (huajai) (noun) :: heart.
+***หูด***
+  หูด (hòot) (noun) :: wart
+===hūng===
+  หุง (hūng) (verb) :: To cook.
+***หุง***
+  หุง (hūng) (verb) :: To cook.
+***หฤทัย***
+  หฤทัย (hareuthai) (proper noun) :: {{given name|female}}, Hathai
+  หฤทัย (hareuthai) (noun) :: heart
+  หฤทัย (hareuthai) (noun) :: mind
+***หวาน***
+  หวาน (wăan) :: sweet, sweet-tasting
+  หวาน (wăan) :: mellifluous
+  หวาน (wăan) :: luscious
+  หวาน (wăan) :: beautiful, cute
+  หวาน (wăan) :: as easy as pie
+  หวาน (wăan) :: effortlessly
+  หวาน (wăan) :: comfortably, pleasantly
+  หวาน (wăan) :: to keep turning
+***หวัง***
+  หวัง (wang) (verb) :: To hope.
+***หยิก***
+  หยิก (yik) (verb) :: to pinch
+  หยิก (yik) (adjective) :: curly
+***หญิง***
+  หญิง (ying) (noun) :: female
+***หญิงชาติชั่ว***
+  หญิงชาติชั่ว (yĭng châat chûa) (noun) :: {vulgar} slut
+***หยุด***
+  หยุด (yud) (verb) :: To stop.
+===iang===
+  เอียง (iang) (verb) :: to tilt
+===id===
+  อิจฉา (id chā) (verb) :: envy
+===ìm===
+  อิ่ม (ìm) (noun) :: full
+===jā===
+  วาจา (wā jā) (noun) :: word
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+===jaan===
+  จาน (jaan) (noun) :: plate
+===jâao===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===jab===
+  จับ (jab) (verb) :: to grab
+===jad===
+  จัด (jad) (verb) :: To arrange.
+===jai===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+  หายใจ (hāy jai) (verb) :: to breathe
+  เข้าใจ (khao jai) (verb) :: To perceive.
+  ใส่ใจ (sai jai) (verb) :: To care for.
+  สนใจ (sai jai) (verb) :: To care.
+  ไว้ใจ (wai jai) (verb) :: To trust.
+===jāi===
+  กระจาย (kra jāi) (verb) :: To spread.
+  กระจาย (kra jāi) (verb) :: To scatter.
+===jak===
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+  จักร (jak) (noun) :: gear
+  จักร (jak) (noun) :: chakra
+  จักร (jak) (noun) :: sovereign
+===jakrayaan===
+  จักรยาน (jakrayaan) (noun) :: bicycle
+===jaksu===
+  จักษุ (jaksu) (noun) :: eye
+===jam===
+  จำ (jam) (verb) :: To remember.
+  จดจำ (jod jam) (verb) :: To remember.
+===jām===
+  จาม (jām) (verb) :: to sneeze
+===jan===
+  จันทร์ (jan) (noun) :: Moon.
+  วันจันทร์ (wan jan) (noun) :: Monday
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+  พรหมจรรย์ (pom ma jan) (noun) :: Brahmacharya
+  พรหมจรรย์ (pom ma jan) (noun) :: virginity
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+===jang===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===jâo===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===jɑːg===
+  อยาก (/jɑːg/) (verb) :: To want.
+===jedi===
+  เจดีย์ (jedi) (noun) :: chedi, stupa
+===jeen===
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+===jer===
+  เจอ (jer) (verb) :: To discover.
+===jik===
+  จิก (jik) (verb) :: To peck.
+===jing===
+  จิงโจ้ (jing-jôh) (noun) :: kangaroo
+===jîngjòk===
+  จิ้งจอก (jîngjòk) (noun) :: fox
+===jintana===
+  จินตนา (jintana) (proper noun) :: {{given name|female}}.
+  จินตนา (jintana) (verb) :: To imagine.
+===job===
+  จบ (job) (verb) :: To end.
+===jod===
+  จด (jod) (verb) :: To scribble.
+  จด (jod) (verb) :: To write.
+  จดจำ (jod jam) (verb) :: To remember.
+===jôh===
+  จิงโจ้ (jing-jôh) (noun) :: kangaroo
+===jon===
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+===jōn===
+  โจร (jōn) (noun) :: thief
+===jūb===
+  จูบ (jūb) (verb) :: To kiss.
+***ก***
+  ก (k; gaw gai) :: The first letter of the Thai alphabet
+***ฅ***
+  ฅ (kh; kkaw kkon) :: {obsolete}The fifth letter of the Thai alphabet.
+***ฅํ่า***
+  ฅํ่า (kham) (noun) :: {obsolete}Alternative spelling of คํ่า.
+***แฅน***
+  แฅน (khaen) (noun) :: {obsolete}Alternative spelling of แคลน.
+***แฅ่ง***
+  แฅ่ง (khaeng) (noun) :: {obsolete}Alternative spelling of แข้ง.
+***แฅว***
+  แฅว (khaew) (noun) :: {obsolete}Alternative spelling of แคว.
+***ฅีน***
+  ฅีน (khued) (noun) :: {obsolete}Alternative spelling of คืน.
+***ฅน***
+  ฅน (khod) (noun) :: {obsolete}Alternative spelling of คน.
+***ฅุ๋ม***
+  ฅุ๋ม (khum) (noun) :: {obsolete}Alternative spelling of คุ้ม.
+***ฅวาม***
+  ฅวาม (khawm) (noun) :: {obsolete}Alternative spelling of ความ.
+***ฅวาง***
+  ฅวาง (khawng) (noun) :: {obsolete}Alternative spelling of คว้าง.
+***ฅอ***
+  ฅอ (khaw) (noun) :: {obsolete}Alternative spelling of คอ.
+***ฅ้อน***
+  ฅ้อน (khon) (noun) :: {obsolete}Alternative spelling of ค้อน.
+===ka===
+  กวี (ka wī) (noun) :: poem
+===kâ===
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+***กา***
+  กา (kaa) (noun) :: crow (bird)
+  กา (kaa) (noun) :: teapot
+***กำ***
+  กำ (kam) (verb) :: To grasp.
+===kaa===
+  กา (kaa) (noun) :: crow (bird)
+  กา (kaa) (noun) :: teapot
+===kâa===
+  ฆ่า (kâa) (verb) :: to kill
+===kab===
+  กับ (kab) (conjunction) :: and
+  กับ (kab) (preposition) :: with
+  บังคับ (bang kab) (verb) :: to force
+***กับ***
+  กับ (kab) (conjunction) :: and
+  กับ (kab) (preposition) :: with
+===kad===
+  กัด (kad) (verb) :: To bite.
+===kād===
+  อากาศ (ā kād) (noun) :: air
+  ประกาศ (pra kād) (verb) :: declare
+***กัด***
+  กัด (kad) (verb) :: To bite.
+===kadsamii===
+  ภาษากัศมีร์ (paasăa kadsamii) (proper noun) :: The Kashmiri language.
+===kae===
+  แกะ (kae) (noun) :: sheep
+  แกะ (kae) (verb) :: To remove.
+===kàe===
+  แก่ (kàe) (adjective) :: old
+***แก่***
+  แก่ (kàe) (adjective) :: old
+***แกะ***
+  แกะ (kae) (noun) :: sheep
+  แกะ (kae) (verb) :: To remove.
+***แกล้ง***
+  แกล้ง (klaeng) (verb) :: To pretend.
+  แกล้ง (klaeng) (verb) :: To tease.
+***แกง***
+  แกง (gaeng) :: curry
+  แกง (gaeng) :: soup, stew
+  แกง (gaeng) :: to make a curry
+***แกงเขียวหวาน***
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+***แกงเผ็ด***
+  แกงเผ็ด (gaeng pèt) :: red curry, hot curry
+***แก้ว***
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+  แก้ว (gâew) (noun) :: {entomology} variety of caterpillar
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  แก้ว (gâew) (adjective) :: brave, courageous
+  แก้ว (gâew) (adjective) :: bold
+  แก้ว (gâew) (adjective) :: {poetic} virtuous, sagacious
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===kài===
+  ไก่ (kài) (noun) :: chicken.
+===kāi===
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+***กาล***
+  กาล (kān) (noun) :: time, epoch, era
+  กาล (kān) (noun) :: {linguistics} verb tense
+  กาล (kān) (noun) :: death, doom
+  กาล (kān) (noun) :: black cobra
+  กาล (kān) (noun) :: the god Siva
+  กาล (kān) (noun) :: the color dark blue
+===kalayaanee===
+  กัลยาณี (kalayaanee) (proper noun) :: {{given name|female}}.
+  กัลยาณี (kalayaanee) (noun) :: A beautiful woman.
+***กัลยาณี***
+  กัลยาณี (kalayaanee) (proper noun) :: {{given name|female}}.
+  กัลยาณี (kalayaanee) (noun) :: A beautiful woman.
+===kam===
+  กำ (kam) (verb) :: To grasp.
+***กัมพูชา***
+  กัมพูชา (gampoochaa) (proper noun) :: Cambodia, Kampuchea
+===kan===
+  กันยา (kan yā) (noun) :: girl
+  กันย์ (kan yā) (noun) :: girl
+  ราศีกันย์ (rāsī kan) (proper noun) :: Virgo
+===kān===
+  กาล (kān) (noun) :: time, epoch, era
+  กาล (kān) (noun) :: {linguistics} verb tense
+  กาล (kān) (noun) :: death, doom
+  กาล (kān) (noun) :: black cobra
+  กาล (kān) (noun) :: the god Siva
+  กาล (kān) (noun) :: the color dark blue
+***กางเกง***
+  กางเกง (noun), :: A pair of pants.
+===กันมาก===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===kannatha===
+  ภาษากันนฑะ (paasăa kannatha) (proper noun) :: The Kannada language.
+===kànŏm===
+  ขนมปัง (kànŏm bpang) (noun) :: bread
+***กันย์***
+  กันย์ (kan yā) (noun) :: girl
+***กันยา***
+  กันยา (kan yā) (noun) :: girl
+***กันยายน***
+  กันยายน (kanyāyon) (proper noun) :: September
+===kanyāyon===
+  กันยายน (kanyāyon) (proper noun) :: September
+===kao===
+  เข้า (kao) (verb) :: To enter
+  เกา (kao) (verb) :: To scratch.
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+===kaolee===
+  ประเทศเกาหลี (prathed kaolee) (proper noun) :: Korea
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+===kaphoochaa===
+  ประเทศกัมพูชา (prathed kaphoochaa) (proper noun) :: Cambodia
+===karakadākhom===
+  กรกฎาคม (karakadākhom) (proper noun)Category:th:Animals :: July
+===karakod===
+  ราศีกรกฎ (rāsī karakod) (proper noun) :: Cancer
+===การบ้าน===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===karīyā===
+  กริยา (karīyā) (noun) :: verb
+  กริยา (karīyā) (noun) :: personality
+***การเงิน***
+  การเงิน (gaan ngern) (noun) :: finance
+  การเงิน (gaan ngern) (noun) :: monetary matters
+===kased===
+  เกษตร (kased) (noun) :: farmland
+===kau===
+  กรกฎ (kau ra kod) (noun)Category:th:Animals :: crab
+===kaw===
+  ขอ (kaw) (verb) :: To beg.
+  ก่อ (kaw) (verb) :: To build.
+  ก่อ (kaw) (verb) :: To ignite.
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+  ตะขอ (ta kaw) (noun) :: A hook.
+***ก้าว***
+  ก้าว (gâao) (noun) :: To move forward
+===kāy===
+  กาย (kāy) (noun) :: body
+***กาย***
+  กาย (kāy) (noun) :: body
+***กบ***
+  กบ (gòp) (noun) :: frog
+***กฎ***
+  กฎ (kod) (noun) :: rule
+***กด***
+  กด (kod) (verb) :: To press.
+***เกา***
+  เกา (kao) (verb) :: To scratch.
+***เกาะ***
+  เกาะ (gòr) (noun) :: island, isle
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===keb===
+  เก็บ (keb) (verb) :: To keep.
+***เก็บ***
+  เก็บ (keb) (verb) :: To keep.
+===këën===
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+***เกิด***
+  เกิด (verb), :: To bear
+***เกี่ยว***
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+  เกี่ยว (gìaaw) (verb) :: to reap, to harvest, to mow
+  เกี่ยว (gìaaw) (adjective) :: (is) entangled with, (is) hugging, (is) embracing
+***เกษตร***
+  เกษตร (kased) (noun) :: farmland
+***ข***
+  ข (kh; khaw khai) :: The second letter of the Thai alphabet.
+***ฃ***
+  ฃ (kh; khǎw khùad) :: {obsolete}The third letter of the Thai alphabet.
+***ค***
+  ค (kh; khaw khwaai) :: The fourth letter of the Thai alphabet
+***ฆ***
+  ฆ (kh; kaw ra kang) :: The sixth letter of the Thai alphabet.
+===kha===
+  ขยาย (kha yāi) (verb) :: To exaggerate.
+  เขย่า (kha yao) (verb) :: To shake.
+***ฃ๋า***
+  ฃ๋า (khaa) (verb) :: {obsolete}Alternative spelling of ฆ่า.
+***ฆ่า***
+  ฆ่า (kâa) (verb) :: to kill
+===khaa===
+  ฃ๋า (khaa) (verb) :: {obsolete}Alternative spelling of ฆ่า.
+===khaai===
+  ฃาย (khaai) (verb) :: {obsolete}Alternative spelling of ขาย.
+  ขาย (khaai) (verb) :: To sell.
+===khaam===
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+  มะขาม (ma khaam) (noun) :: A tamarind.
+===khâao===
+  ข้าว (khâao) (noun) :: rice
+===khab===
+  ขับรถ (khab rod) (verb) :: To drive.
+***ขับรถ***
+  ขับรถ (khab rod) (verb) :: To drive.
+===khad===
+  ขัด (khad) (verb) :: to scrub
+===khād===
+  คาด (khād) (verb) :: to gird
+***ขัด***
+  ขัด (khad) (verb) :: to scrub
+***คาด***
+  คาด (khād) (verb) :: to gird
+===khaechamiaa===
+  ภาษาแคชเมียร์ (paasăa khaechamiaa) (proper noun) :: The Kashmiri language.
+===khaen===
+  แฅน (khaen) (noun) :: {obsolete}Alternative spelling of แคลน.
+***แคน***
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===khaeng===
+  แฅ่ง (khaeng) (noun) :: {obsolete}Alternative spelling of แข้ง.
+  แข้ง (khaeng) (noun) :: A shin.
+***แข้ง***
+  แข้ง (khaeng) (noun) :: A shin.
+===khaew===
+  แฅว (khaew) (noun) :: {obsolete}Alternative spelling of แคว.
+***แขวน***
+  แขวน (kwaen) (verb) :: To drape.
+***แฃวน***
+  แฃวน (khwaen) (verb) :: {obsolete}Alternative spelling of แขวน.
+***แขวนบนเส้นด้าย***
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===khai===
+  ไข่ (khai) (noun) :: An egg.
+===khāi===
+  คาย (khāi) (verb) :: To emit.
+===kham===
+  ฅํ่า (kham) (noun) :: {obsolete}Alternative spelling of คํ่า.
+===khām===
+  ข้าม (khām) (verb) :: To skip.
+  ข้าม (khām) (verb) :: To cross.
+***ข้าม***
+  ข้าม (khām) (verb) :: To skip.
+  ข้าม (khām) (verb) :: To cross.
+===khamen===
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+===khamoi===
+  ขโมย (khamoi) (noun) :: A thief.
+  ขโมย (khamoi) (verb) :: To steal.
+===khan===
+  ฃัน (khan) (verb) :: {obsolete}Alternative spelling of ขัน.
+===khān===
+  คาน (khān) (verb) :: To crawl.
+***ฃัน***
+  ฃัน (khan) (verb) :: {obsolete}Alternative spelling of ขัน.
+***คาน***
+  คาน (khān) (verb) :: To crawl.
+===khao===
+  เฃ๋า (khao) (verb) :: {obsolete}Alternative spelling of เข้า.
+  เข๋า (khao) (noun) :: {obsolete} Alternative spelling of ข้าว.
+  เข้าใจ (khao jai) (verb) :: To perceive.
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+  ภูเขา (puu khao) (noun) :: A mountain.
+===kʰao===
+  เขา (kʰao) (pronoun) :: he, she
+  เขา (kʰao) (pronoun) :: they/them
+  เขา (kʰao) (noun) :: A mountain.
+***คารวะ***
+  คารวะ (cā ra wa) (noun) :: respect
+===khaw===
+  คอ (khaw) (noun) :: A neck.
+  ฅอ (khaw) (noun) :: {obsolete}Alternative spelling of คอ.
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+  ข้อความ (khaw khwaam) (noun) :: statement.
+***ข้าว***
+  ข้าว (khâao) (noun) :: rice
+===khawm===
+  ฅวาม (khawm) (noun) :: {obsolete}Alternative spelling of ความ.
+===khawng===
+  ของ (khawng) (preposition) :: of
+  ของ (khawng) (noun) :: A property.
+  ของ (khawng) (noun) :: A belongings.
+  ของ (khawng) (noun) :: stuff.
+  ฅวาง (khawng) (noun) :: {obsolete}Alternative spelling of คว้าง.
+  ฃอง (khawng) (noun) :: {obsolete}Alternative spelling of ของ.
+***ขาย***
+  ขาย (khaai) (verb) :: To sell.
+***ฃาย***
+  ฃาย (khaai) (verb) :: {obsolete}Alternative spelling of ขาย.
+***คาย***
+  คาย (khāi) (verb) :: To emit.
+===khayan===
+  ฃยัน (khayan) (adjective) :: {obsolete}Alternative spelling of ขยัน.
+***คชสาร***
+  คชสาร (khódchasǎan) (noun) :: elephant
+===khē===
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+***เขา***
+  เขา (kʰao) (pronoun) :: he, she
+  เขา (kʰao) (pronoun) :: they/them
+  เขา (kʰao) (noun) :: A mountain.
+***เข้า***
+  เข้า (kao) (verb) :: To enter
+***เข๋า***
+  เข๋า (khao) (noun) :: {obsolete} Alternative spelling of ข้าว.
+***เฃ๋า***
+  เฃ๋า (khao) (verb) :: {obsolete}Alternative spelling of เข้า.
+***เข้าใจ***
+  เข้าใจ (khao jai) (verb) :: To perceive.
+===เขากำลังใช้===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+***เคารพ***
+  เคารพ (cao rob) (noun) :: respect
+===khéd===
+  เฃตร (khéd) (noun) :: {obsolete}Alternative spelling of เขตต์.
+***เขียน***
+  เขียน (kian) (verb) :: To write.
+***เฃียน***
+  เฃียน (khian) (noun) :: {obsolete}Alternative spelling of เขียน.
+***เขียว***
+  เขียว (khĭeow) (noun) :: green
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+  เขียว (khĭeow) (adjective) :: green
+  เขียว (khĭeow) (adjective) :: bruised
+  เขียว (khĭeow) (adjective) :: angry
+***เขมร***
+  เขมร (khàmen) :: Khmer
+  เขมร (khàmen) :: {dialectal} Cambodia
+***เฃตร***
+  เฃตร (khéd) (noun) :: {obsolete}Alternative spelling of เขตต์.
+***เขย่า***
+  เขย่า (kha yao) (verb) :: To shake.
+***ไข่***
+  ไข่ (khai) (noun) :: An egg.
+===khian===
+  เฃียน (khian) (noun) :: {obsolete}Alternative spelling of เขียน.
+===khid===
+  คิด (khid) (verb) :: to think
+***คิด***
+  คิด (khid) (verb) :: to think
+===khĭeow===
+  เขียว (khĭeow) (noun) :: green
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+  เขียว (khĭeow) (adjective) :: green
+  เขียว (khĭeow) (adjective) :: bruised
+  เขียว (khĭeow) (adjective) :: angry
+===khit===
+  พรหมลิขิต (pom li khit) (noun) :: fate
+***ไขว้***
+  ไขว้ (kwai) (verb) :: To cross.
+===คลั่งใคล้===
+  บ้า,คลั่งใคล้ (adjective) :: crazy
+***คลื่นสึนามิ***
+  คลื่นสึนามิ (klêun sĕunăamí) :: tsunami
+===khméén===
+  ประเทศเขมร (prathed khméén) (proper noun) :: Cambodia
+***ขโมย***
+  ขโมย (khamoi) (noun) :: A thief.
+  ขโมย (khamoi) (verb) :: To steal.
+***คน***
+  คน (khon) (noun) :: people, person, guy, man, human being
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+  คน (khon) (prefix) :: (designating nationality or ethnicity) -an
+  คน (khon) (verb) :: to stir, to scramble, to mix
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+***ค้น***
+  ค้น (kon) (verb) :: To search.
+  ค้น (kon) (verb) :: To seek.
+  ค้น (kon) (verb) :: To scrutinize.
+***ขนมปัง***
+  ขนมปัง (kànŏm bpang) (noun) :: bread
+***ขนตา***
+  ขนตา (kŏn dtaa) (noun) :: eyelash
+***คนไทย***
+  คนไทย (khon thai) (noun) :: Thai person
+  คนไทย (khon thai) (noun) :: Thai people
+***คนอังกฤษ***
+  คนอังกฤษ (khonangkrit) (noun) :: British person or people.
+***คนญี่ปุ่น***
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+===khō===
+  โค (khō) (noun) :: a cow
+***โค***
+  โค (khō) (noun) :: a cow
+===khod===
+  ฅน (khod) (noun) :: {obsolete}Alternative spelling of คน.
+===khódchasǎan===
+  คชสาร (khódchasǎan) (noun) :: elephant
+===khom===
+  คอมพิวเตอร์ (khom piu toe) (noun) :: computer
+***โคมลอย***
+  โคมลอย (kohm loi) (noun) :: balloon
+***โคมูตร***
+  โคมูตร (koh môot) (noun) :: cow's urine.
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===khon===
+  คน (khon) (noun) :: people, person, guy, man, human being
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+  คน (khon) (prefix) :: (designating nationality or ethnicity) -an
+  คน (khon) (verb) :: to stir, to scramble, to mix
+  ฅ้อน (khon) (noun) :: {obsolete}Alternative spelling of ค้อน.
+  ค้อน (khon) (noun) :: A hammer.
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+  คนไทย (khon thai) (noun) :: Thai person
+  คนไทย (khon thai) (noun) :: Thai people
+===khonangkrit===
+  คนอังกฤษ (khonangkrit) (noun) :: British person or people.
+===khoo===
+  ขู่ (khoo) (verb) :: To intimidate.
+  ขู่ (khoo) (verb) :: To threat.
+===khoraad===
+  แมวโคราช (khoraad) (noun) :: A Korat cat.
+***โฆษะ***
+  โฆษะ (khosa) :: voice.
+***โฆษณา***
+  โฆษณา (khôdsanaa) :: advertisement
+  โฆษณา (khôdsanaa) :: classified
+  โฆษณา (khôdsanaa) :: commercial
+===khrom===
+  คร่อม (khrom) (verb) :: To bestride.
+***ครู***
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+***คร่อม***
+  คร่อม (khrom) (verb) :: To bestride.
+***ขู่***
+  ขู่ (khoo) (verb) :: To intimidate.
+  ขู่ (khoo) (verb) :: To threat.
+===khuad===
+  ฃวด (khuad) (noun) :: {obsolete} Alternative spelling of ขวด.
+  ขวด (khuad) (noun) :: A bottle.
+===khuay===
+  ควย (khuay) (noun) :: {{informal|vulgar}} penis
+===khūd===
+  ขูด (khūd) (verb) :: To scrape.
+***ขูด***
+  ขูด (khūd) (verb) :: To scrape.
+===khudcharaat===
+  ภาษาคุชราต (paasăa khudcharaat) (proper noun) :: The Gujarati language.
+===khued===
+  ฅีน (khued) (noun) :: {obsolete}Alternative spelling of คืน.
+===khuen===
+  ฃึ๋น (khuen) (verb) :: {obsolete}Alternative spelling of ขึ้น.
+===khum===
+  ฅุ๋ม (khum) (noun) :: {obsolete}Alternative spelling of คุ้ม.
+===khun===
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+  ฃุน (khun) (noun) :: {obsolete}Alternative spelling of ขุน.
+  ขุน (khun) (noun) :: A nobleman.
+  ขุน (khun) (noun) :: An aristocrat.
+***ขุน***
+  ขุน (khun) (noun) :: A nobleman.
+  ขุน (khun) (noun) :: An aristocrat.
+***ฃึ๋น***
+  ฃึ๋น (khuen) (verb) :: {obsolete}Alternative spelling of ขึ้น.
+***ฃุน***
+  ฃุน (khun) (noun) :: {obsolete}Alternative spelling of ขุน.
+***คุณ***
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+  คุณ :: You.
+===คุณเป็นนักท่องเที่ยวใช่ไหม===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+***คุณภาพ***
+  คุณภาพ (kun na pāb) (noun) :: quality
+***คุย***
+  คุย (kuy) (verb) :: To discuss.
+***ขวา***
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+***ฃวา***
+  ฃวา (khwaa) (noun) :: {obsolete}Alternative spelling of ขวา.
+***คว้า***
+  คว้า (kwāh) (verb) :: To seize.
+===khwaa===
+  ฃวา (khwaa) (noun) :: {obsolete}Alternative spelling of ขวา.
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+===khwaam===
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+  ข้อความ (khaw khwaam) (noun) :: statement.
+===khwaen===
+  แฃวน (khwaen) (verb) :: {obsolete}Alternative spelling of แขวน.
+***ความ***
+  ความ (kwām) (noun) :: case
+  ความ (kwām) (noun) :: content
+===khwamrak===
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+***ความรัก***
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+***ความสุข***
+  ความสุข (kwām suk) (noun) :: joy
+  ความสุข (kwām suk) (noun) :: delight
+***ความทุกข์***
+  ความทุกข์ (kwām thuk) (noun) :: sadness
+***ขว้าง***
+  ขว้าง (kwāng) (verb) :: to throw
+***ควาย***
+  ควาย (kwaai) (noun) :: A water buffalo.
+***ขวด***
+  ขวด (khuad) (noun) :: A bottle.
+***ฃวด***
+  ฃวด (khuad) (noun) :: {obsolete} Alternative spelling of ขวด.
+***ควย***
+  ควย (khuay) (noun) :: {{informal|vulgar}} penis
+***ขอ***
+  ขอ (kaw) (verb) :: To beg.
+***คอ***
+  คอ (khaw) (noun) :: A neck.
+***ข้อความ***
+  ข้อความ (khaw khwaam) (noun) :: statement.
+***ฃ้อความ***
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+***คอมพิวเตอร์***
+  คอมพิวเตอร์ (khom piu toe) (noun) :: computer
+***ค้อน***
+  ค้อน (khon) (noun) :: A hammer.
+***ของ***
+  ของ (khawng) (preposition) :: of
+  ของ (khawng) (noun) :: A property.
+  ของ (khawng) (noun) :: A belongings.
+  ของ (khawng) (noun) :: stuff.
+***ฃอง***
+  ฃอง (khawng) (noun) :: {obsolete}Alternative spelling of ของ.
+***ฆ้อง***
+  ฆ้อง (kóng) (noun) :: gong
+***ขอร้อง***
+  ขอร้อง (raw róng) (verb) :: To implore.
+***ฃยัน***
+  ฃยัน (khayan) (adjective) :: {obsolete}Alternative spelling of ขยัน.
+***ขยาย***
+  ขยาย (kha yāi) (verb) :: To exaggerate.
+***ไก่***
+  ไก่ (kài) (noun) :: chicken.
+===kian===
+  เขียน (kian) (verb) :: To write.
+***กิจการ***
+  กิจการ (kijakan) (noun) :: business
+===kĭeow===
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+===kijakan===
+  กิจการ (kijakan) (noun) :: business
+===kila===
+  กีฬา (kila) (noun) :: sport
+***กีฬา***
+  กีฬา (kila) (noun) :: sport
+===kin===
+  กิน (kin) (verb) :: To eat.
+***กิน***
+  กิน (kin) (verb) :: To eat.
+===klaeng===
+  แกล้ง (klaeng) (verb) :: To pretend.
+  แกล้ง (klaeng) (verb) :: To tease.
+===kleed===
+  กรีด (kleed) (verb) :: To scrape with a sharp object.
+===kluen===
+  โต้คลื่น (tō kluen) (verb) :: To surf.
+***กลืน***
+  กลืน (gleun) (verb) :: To swallow.
+***กงกาง***
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+  กงกาง (gong gaang) (noun) :: responsibility, duty
+===kō===
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===kod===
+  กด (kod) (verb) :: To press.
+  กฎ (kod) (noun) :: rule
+  กรกฎ (kau ra kod) (noun)Category:th:Animals :: crab
+  ปรากฏ (praa kod) (verb) :: To reveal.
+===koh===
+  โคมูตร (koh môot) (noun) :: cow's urine.
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+***โกหก***
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===kohm===
+  โคมลอย (kohm loi) (noun) :: balloon
+===kom===
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+  มีนาคม (/mɪː.nɑː.kom/) (proper noun) :: March.
+===kon===
+  ค้น (kon) (verb) :: To search.
+  ค้น (kon) (verb) :: To seek.
+  ค้น (kon) (verb) :: To scrutinize.
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===kŏn===
+  ขนตา (kŏn dtaa) (noun) :: eyelash
+===kōn===
+  ตะโกน (ta kōn) (verb) :: To yell.
+===kóng===
+  ฆ้อง (kóng) (noun) :: gong
+===koon===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===korn===
+  สุกร (su korn) (noun) :: pig
+===kra===
+  กระโดด (kra dōd) (verb) :: to jump
+  กระจาย (kra jāi) (verb) :: To spread.
+  กระจาย (kra jāi) (verb) :: To scatter.
+***กระจาย***
+  กระจาย (kra jāi) (verb) :: To spread.
+  กระจาย (kra jāi) (verb) :: To scatter.
+***กระโดด***
+  กระโดด (kra dōd) (verb) :: to jump
+***กระดอ***
+  กระดอ (noun) :: {{context|colloquial|vulgar}} penis
+===kráp===
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+***กระทรวง***
+  กระทรวง (gràsuang) :: ministry
+***กระทรวงศึกษาธิการ***
+  กระทรวงศึกษาธิการ (gràsuang sèuksăa-tígaan) :: Ministry of Education
+***กรีด***
+  กรีด (kleed) (verb) :: To scrape with a sharp object.
+***กริยา***
+  กริยา (karīyā) (noun) :: verb
+  กริยา (karīyā) (noun) :: personality
+***กรกฎ***
+  กรกฎ (kau ra kod) (noun)Category:th:Animals :: crab
+***กรกฎาคม***
+  กรกฎาคม (karakadākhom) (proper noun)Category:th:Animals :: July
+===kroo===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+***กรุง***
+  กรุง (groong) (noun) :: city
+***กรุงเทพ***
+  กรุงเทพ (groong têp) (proper noun) :: Bangkok, Krungthep
+***กู***
+  กู (kuu) (pronoun) :: {informal} I/me
+  กู (kuu) (pronoun) :: {archaic} I/me
+***กุหลาบ***
+  กุหลาบ (kulàab) (noun) :: rose
+===kulàab===
+  กุหลาบ (kulàab) (noun) :: rose
+===kum===
+  กุมภ์ (kum) (noun) :: A pitcher.
+  ราศีกุมภ์ (rāsī kum) (proper noun) :: Aquarius
+===kumān===
+  กุมาร (kumān) (noun) :: A son.
+***กุมาร***
+  กุมาร (kumān) (noun) :: A son.
+===kumārī===
+  กุมารี (kumārī) (noun) :: A daughter.
+***กุมารี***
+  กุมารี (kumārī) (noun) :: A daughter.
+***กุมภ์***
+  กุมภ์ (kum) (noun) :: A pitcher.
+===kumphāphan===
+  กุมภาพันธ์ (kumphāphan) (proper noun) :: February.
+***กุมภาพันธ์***
+  กุมภาพันธ์ (kumphāphan) (proper noun) :: February.
+===kun===
+  คุณภาพ (kun na pāb) (noun) :: quality
+  นามสกุล (nām sa kun) (noun) :: last name.
+***กุศล***
+  กุศล (kuson) (noun) :: merit
+===kuson===
+  กุศล (kuson) (noun) :: merit
+===kuu===
+  กู (kuu) (pronoun) :: {informal} I/me
+  กู (kuu) (pronoun) :: {archaic} I/me
+===kuy===
+  คุย (kuy) (verb) :: To discuss.
+===kwaai===
+  ควาย (kwaai) (noun) :: A water buffalo.
+===kwaangtung===
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+===kwād===
+  กวาด (kwād) (verb) :: To sweep.
+***กวาด***
+  กวาด (kwād) (verb) :: To sweep.
+===kwaen===
+  แขวน (kwaen) (verb) :: To drape.
+===kwāh===
+  คว้า (kwāh) (verb) :: To seize.
+===kwai===
+  ไขว้ (kwai) (verb) :: To cross.
+===kwām===
+  ความ (kwām) (noun) :: case
+  ความ (kwām) (noun) :: content
+  ความสุข (kwām suk) (noun) :: joy
+  ความสุข (kwām suk) (noun) :: delight
+  ความทุกข์ (kwām thuk) (noun) :: sadness
+===kwāng===
+  ขว้าง (kwāng) (verb) :: to throw
+***กวี***
+  กวี (ka wī) (noun) :: poem
+***ก่อ***
+  ก่อ (kaw) (verb) :: To build.
+  ก่อ (kaw) (verb) :: To ignite.
+***กอด***
+  กอด (/gɔd/) (verb) :: To hug.
+  กอด (/gɔd/) (verb) :: To hold on to someone.
+===ḹ===
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+***ล***
+  ล (l; law ling) :: The 36th letter of the Thai alphabet
+***ฬ***
+  ฬ (l; law ju lā) :: The 42nd letter of the Thai alphabet
+***ฦ***
+  ฦ (l; leu) :: {obsolete}A letter of the Thai alphabet.
+===la===
+  ศิลปะ (sin la pa) (noun) :: art
+===laao===
+  ภาษาลาว (phaasăa laao) (proper noun) :: The Lao language.
+  ประเทศลาว (prathed laao) (proper noun) :: Laos
+===lab===
+  หลับ (lab) (verb) :: to sleep
+===lae===
+  และ (lae) (conjunction) :: and
+***และ***
+  และ (lae) (conjunction) :: and
+===lágow===
+  มะละกอ (má-lágow) (noun) :: papaya
+===lak===
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+===lang===
+  ลังเล (lang lē) (verb) :: To hesitate.
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+***ลังเล***
+  ลังเล (lang lē) (verb) :: To hesitate.
+***ลาว***
+  ลาว (Lāw) :: Laos
+***ลบ***
+  ลบ (lob) (verb) :: To eschew.
+***ลด***
+  ลด (lod) (verb) :: To lower.
+  ลด (lod) (verb) :: To alleviate.
+===lē===
+  ลังเล (lang lē) (verb) :: To hesitate.
+===léd===
+  มาเลศ (maa léd) (noun) :: A Korat cat.
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+===lee===
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+***เลีย***
+  เลีย (liā) (verb) :: To lick.
+===lek===
+  เลข (lek) (noun) :: number.
+  เลข (lek) (noun) :: mathematics.
+***เลข***
+  เลข (lek) (noun) :: number.
+  เลข (lek) (noun) :: mathematics.
+===leu===
+  ฦๅ (leu) (verb) :: {obsolete} Alternative spelling of ลือ.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===leuad===
+  เลือด (leuad) (noun) :: blood.
+===leuu===
+  ลือ (leuu) (verb) :: To spread a rumor.
+***เลือด***
+  เลือด (leuad) (noun) :: blood.
+===li===
+  พรหมลิขิต (pom li khit) (noun) :: fate
+===liā===
+  เลีย (liā) (verb) :: To lick.
+===lìam===
+  เหลี่ยม (lìam) (noun) :: angle
+  เหลี่ยม (lìam) (noun) :: edge, side
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===liāw===
+  หางเสือเลี้ยว (hāng sūe liāw) (noun) :: rudder
+===likhit===
+  ลิขิต (likhit) (noun) :: document
+***ลิขิต***
+  ลิขิต (likhit) (noun) :: document
+===lín===
+  ลิ้น (lín) (noun) :: tongue, reed
+***ลิ้น***
+  ลิ้น (lín) (noun) :: tongue, reed
+***ลิง***
+  ลิง (ling) :: monkey
+***ฦๅ***
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฦๅ (leu) (verb) :: {obsolete} Alternative spelling of ลือ.
+***ฦๅชา***
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+***ฦก***
+  ฦก (lūek) (adjective) :: {obsolete}Alternative spelling of ลึก.
+***ลง***
+  ลง (long) (verb) :: To lower.
+  ลง (long) (verb) :: To come down.
+===lob===
+  ลบ (lob) (verb) :: To eschew.
+===lod===
+  ลด (lod) (verb) :: To lower.
+  ลด (lod) (verb) :: To alleviate.
+===loha===
+  โลหะ (loha) (noun) :: metal.
+  โลหะ (loha) (noun) :: iron.
+***โลหะ***
+  โลหะ (loha) (noun) :: metal.
+  โลหะ (loha) (noun) :: iron.
+===loi===
+  โคมลอย (kohm loi) (noun) :: balloon
+===lōk===
+  โลก (lōk) (noun) :: world
+  โลก (lōk) (noun) :: Earth
+***โลก***
+  โลก (lōk) (noun) :: world
+  โลก (lōk) (noun) :: Earth
+===loma===
+  โลมา (loma) (noun) :: dolphin
+  ปลาโลมา (pla loma) (noun) :: dolphin
+***โลมา***
+  โลมา (loma) (noun) :: dolphin
+===long===
+  หลง (long) (verb) :: To lose one's way.
+  ลง (long) (verb) :: To lower.
+  ลง (long) (verb) :: To come down.
+  ตกลง (thok long) (verb) :: To agree.
+===loob===
+  ลูบ (loob) (verb) :: To grope.
+===lôok===
+  ลูก (lôok) (noun) :: a child
+  ลูก (lôok) (noun) :: a son or daughter
+  ลูก (lôok) (noun) :: fruit, nut
+  ลูก (lôok) (noun) :: small ball
+  ลูกกบ (lôok gòp) (noun) :: tadpole
+===lŭang===
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+  หลวง (lŭang) (adjective) :: royal, of the court, of the crown
+***ลูบ***
+  ลูบ (loob) (verb) :: To grope.
+===lue===
+  ลือชา (lue chaa) (verb) :: To make one famous.
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+===lūek===
+  ฦก (lūek) (adjective) :: {obsolete}Alternative spelling of ลึก.
+  ลึก (lūek) (adjective) :: deep
+===lūem===
+  ลืม (lūem) (verb) :: To forget.
+===luenk===
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+***ลึก***
+  ลึก (lūek) (adjective) :: deep
+***ลูก***
+  ลูก (lôok) (noun) :: a child
+  ลูก (lôok) (noun) :: a son or daughter
+  ลูก (lôok) (noun) :: fruit, nut
+  ลูก (lôok) (noun) :: small ball
+***ลูกกบ***
+  ลูกกบ (lôok gòp) (noun) :: tadpole
+***ลืม***
+  ลืม (lūem) (verb) :: To forget.
+***ลึงค์***
+  ลึงค์ {{th-noun|tr=leung}} :: {anatomy} penis.
+***ลือ***
+  ลือ (leuu) (verb) :: To spread a rumor.
+***ลือชา***
+  ลือชา (lue chaa) (verb) :: To make one famous.
+***ม***
+  ม (m; maw mā) :: The 33rd letter of the Thai alphabet
+===ma===
+  มนุษย์ (ma nud) (noun) :: human being
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+  พรหมจรรย์ (pom ma jan) (noun) :: Brahmacharya
+  พรหมจรรย์ (pom ma jan) (noun) :: virginity
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+  มะขาม (ma khaam) (noun) :: A tamarind.
+===má===
+  มะละกอ (má-lágow) (noun) :: papaya
+===mā===
+  มา (mā) (verb) :: To come.
+***มา***
+  มา (mā) (verb) :: To come.
+***ม้า***
+  ม้า (máa) (noun) :: horse
+===maa===
+  มาเลศ (maa léd) (noun) :: A Korat cat.
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+===máa===
+  ม้า (máa) (noun) :: horse
+===mǎa===
+  หมา (mǎa) (noun) :: dog
+===maad===
+  วิเชียรมาศ (wichian maad) (noun) :: Siamese cat.
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+===mad===
+  มัด (mad) (verb) :: To tie.
+***มัด***
+  มัด (mad) (verb) :: To tie.
+===mâe===
+  แม่ (mâe) (noun) :: A mother.
+***แม่***
+  แม่ (mâe) (noun) :: A mother.
+***แม่น้ำ***
+  แม่น้ำ (maenam) (noun) :: river
+===maenam===
+  แม่น้ำ (maenam) (noun) :: river
+***แมนนาที***
+  แมนนาที (manatee) (noun) :: A manatee
+===maew===
+  แมว (maew) (noun) :: cat
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+===máew===
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+***แมว***
+  แมว (maew) (noun) :: cat
+***แม้ว***
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+***แมวโคราช***
+  แมวโคราช (khoraad) (noun) :: A Korat cat.
+***แมวมาเลศ***
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+***แมวน้ำ***
+  แมวน้ำ (maewnam) (noun) :: seal
+===maewnam===
+  แมวน้ำ (maewnam) (noun) :: seal
+***แมวสีสวาด***
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+***แมวศุภลักษณ์***
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+***แมววิเชียรมาศ***
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+===mahā===
+  มหาสมุทร (mahā samud) (noun) :: ocean.
+  มหาสมุทร (mahā samud) (noun) :: great ocean.
+===mai===
+  ไม่ (mai) (adverb) :: no
+  ไม่ (mai) (conjunction) :: nor
+  ไม่ (mai) (interjection) :: no
+  ไม่ (mai) (noun) :: no
+===mài===
+  ใหม่ (mài) (adjective) :: new
+===măi===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===mãi===
+  ไหม (mãi) (noun) :: silk
+***มะขาม***
+  มะขาม (ma khaam) (noun) :: A tamarind.
+***มะฃาม***
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+***มะละกอ***
+  มะละกอ (má-lágow) (noun) :: papaya
+***มาเลศ***
+  มาเลศ (maa léd) (noun) :: A Korat cat.
+===man===
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+  น้ำมัน (náam man) (noun) :: gasoline, fuel
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+===manatee===
+  แมนนาที (manatee) (noun) :: A manatee
+===mangkorn===
+  ราศีมังกร (rāsī mangkorn) (proper noun) :: Capricorn
+***มังกร***
+  มังกร (munggorn) (noun) :: dragon
+===mani===
+  มณี (mani) (proper noun) :: {{given name|female}}.
+  มณี (mani) (noun) :: A jewel.
+===maniipura===
+  ภาษามณีปุระ (paasăa maniipura) (proper noun) :: The Meitei language.
+===mao===
+  เมา (mao) (verb) :: To inebriate.
+===maraathii===
+  ภาษามราฐี (paasăa maraathii) (proper noun) :: The Marathi language.
+***มัสสุ***
+  มัสสุ (mátsòo) (noun) :: moustache, mustache
+===mátsòo===
+  มัสสุ (mátsòo) (noun) :: moustache, mustache
+===mawng===
+  มอง (mawng) (verb) :: To watch.
+  มอง (mawng) (verb) :: To look.
+  มอง (mawng) (verb) :: To stare.
+===mawrana===
+  มรณะ (mawrana) (noun) :: death
+***มด***
+  มด (mod) (noun) :: ant
+***เมา***
+  เมา (mao) (verb) :: To inebriate.
+===méd===
+  เมษ (méd) (noun) :: A ram.
+  ราศีเมษ (rāsī méd) (proper noun) :: Aries
+===még===
+  เมฆ (még) (noun) :: A cloud.
+***เมฆ***
+  เมฆ (még) (noun) :: A cloud.
+***เมษ***
+  เมษ (méd) (noun) :: A ram.
+***เมษายน***
+  เมษายน (mésāyon) (proper noun) :: April.
+===mésāyon===
+  เมษายน (mésāyon) (proper noun) :: April.
+===méthun===
+  เมถุน (méthun) (noun) :: A pair.
+  เมถุน (méthun) (noun) :: twins.
+  ราศีเมถุน (rāsī méthun) (proper noun) :: Gemini
+***เมถุน***
+  เมถุน (méthun) (noun) :: A pair.
+  เมถุน (méthun) (noun) :: twins.
+===mêua===
+  เมื่อ (mêua) (conjunction) :: when
+===meuang===
+  เมือง (meuang) (noun) :: city, town
+  เมือง (meuang) (noun) :: country
+  เมืองไทย (meuang thai) (proper noun) :: Thailand
+===mèuk===
+  หมึก (mèuk) (noun) :: ink
+===mèun===
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+***เมื่อ***
+  เมื่อ (mêua) (conjunction) :: when
+***เมือง***
+  เมือง (meuang) (noun) :: city, town
+  เมือง (meuang) (noun) :: country
+***เมืองไทย***
+  เมืองไทย (meuang thai) (proper noun) :: Thailand
+***มหาสมุทร***
+  มหาสมุทร (mahā samud) (noun) :: ocean.
+  มหาสมุทร (mahā samud) (noun) :: great ocean.
+===Mi===
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+===mī===
+  รัศมี (rad sa mī) (proper noun) :: {{given name|female}}.
+  รัศมี (rad sa mī) (noun) :: ray of light
+  รัศมี (rad sa mī) (noun) :: radius
+***มี***
+  มี {{th-verb|tr=mee}} :: to have, to own
+  มี {{th-verb|tr=mee}} :: to contain, to include
+  มี {{th-verb|tr=mee}} :: there is, there are
+    ฉันมีหมวกหนึ่งใบ :: --
+    I have a hat :: --
+***ไม่***
+  ไม่ (mai) (adverb) :: no
+  ไม่ (mai) (conjunction) :: nor
+  ไม่ (mai) (interjection) :: no
+  ไม่ (mai) (noun) :: no
+===mid===
+  มิตร (mid) (noun) :: friend
+  มิตร (mid) (noun) :: crony
+===mīn===
+  มีน (mīn) (noun) :: A fish.
+  ราศีมีน (rāsī mīn) (proper noun) :: Pisces
+***มีน***
+  มีน (mīn) (noun) :: A fish.
+***มีนาคม***
+  มีนาคม (/mɪː.nɑː.kom/) (proper noun) :: March.
+***มิถุนายน***
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+***มิตร***
+  มิตร (mid) (noun) :: friend
+  มิตร (mid) (noun) :: crony
+===mɪ===
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+===mɪː===
+  มีนาคม (/mɪː.nɑː.kom/) (proper noun) :: March.
+***มกราคม***
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+***ม้ง***
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+***มงคล***
+  มงคล (mongkhon) (adjective) :: auspicious
+***มณี***
+  มณี (mani) (proper noun) :: {{given name|female}}.
+  มณี (mani) (noun) :: A jewel.
+***มณโฑ***
+  มณโฑ (montho) (noun) :: dancer
+***มนุษย์***
+  มนุษย์ (ma nud) (noun) :: human being
+===mod===
+  มด (mod) (noun) :: ant
+===mog===
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+===mong===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===mongkhon===
+  มงคล (mongkhon) (adjective) :: auspicious
+===montho===
+  มณโฑ (montho) (noun) :: dancer
+===mŏo===
+  หมู (mŏo) (noun) :: piglet
+===môot===
+  โคมูตร (koh môot) (noun) :: cow's urine.
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+***มรณะ***
+  มรณะ (mawrana) (noun) :: death
+===muak===
+  หมวก (muak) (noun) :: hat
+===muan===
+  มวล (muan) (adjective) :: entire
+===muk===
+  มุกดา (muk dā) (noun) :: pearl
+***มุกดา***
+  มุกดา (muk dā) (noun) :: pearl
+===mun===
+  หมุน (mun) (verb) :: To spin.
+  หมุนเวียน (mun wian) (verb) :: To circulate.
+===munggorn===
+  มังกร (munggorn) (noun) :: dragon
+***มวล***
+  มวล (muan) (adjective) :: entire
+***มวยไทย***
+  มวยไทย (noun) :: Muay Thai (literally: Free Fight or Free Boxing)
+***มอง***
+  มอง (mawng) (verb) :: To watch.
+  มอง (mawng) (verb) :: To look.
+  มอง (mawng) (verb) :: To stare.
+***ณ***
+  ณ (n; naw nēn) :: The 19th letter of the Thai alphabet
+  ณ (nā) (preposition) :: at
+  ณ (nā) (preposition) :: on (a place or date)
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+***น***
+  น (n; naw nū) :: The 25th letter of the Thai alphabet
+===na===
+  คุณภาพ (kun na pāb) (noun) :: quality
+===nā===
+  ณ (nā) (preposition) :: at
+  ณ (nā) (preposition) :: on (a place or date)
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+***นา***
+  นา (naa) (noun) :: rice field.
+  นา (naa) (noun) :: farm.
+***นำ***
+  นำ (num) (verb) :: to lead.
+  นำ (num) (verb) :: to bring
+***น้ำ***
+  น้ำ (náam) :: water
+  น้ำ (náam) :: fluid, liquid
+===naa===
+  นา (naa) (noun) :: rice field.
+  นา (naa) (noun) :: farm.
+===nâa===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===naai===
+  นาย (naai) (noun) :: mister, Mr.
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===náam===
+  น้ำนม (náam nom) (noun) :: milk
+  น้ำพริก (náam prík) (noun) :: chilli sauce
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+  น้ำมัน (náam man) (noun) :: gasoline, fuel
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+===nab===
+  นับ (nab) (verb) :: To count.
+***นับ***
+  นับ (nab) (verb) :: To count.
+===nad===
+  นัด (nad) (verb) :: To assign an appointment.
+***นัด***
+  นัด (nad) (verb) :: To assign an appointment.
+===nag===
+  นักบุญ (nag-boon) (noun) :: saint
+***นักบุญ***
+  นักบุญ (nag-boon) (noun) :: saint
+===nakorn===
+  นคร (nakorn) (noun) :: city, town
+===náktôngtîeow===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===nām===
+  นาม (nām) (noun) :: name
+  นามสกุล (nām sa kun) (noun) :: last name.
+  ว่ายนํ้า (wāi nām) (verb) :: To swim.
+***นาม***
+  นาม (nām) (noun) :: name
+***น้ำมัน***
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+  น้ำมัน (náam man) (noun) :: gasoline, fuel
+***น้ำมันพริก***
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+***นามสกุล***
+  นามสกุล (nām sa kun) (noun) :: last name.
+===nan===
+  ถึงอย่างนั้น (thueng yāng nan) (conjunction) :: yet
+===nang===
+  นั่ง (nang) (verb) :: To sit.
+  นาง (nang) (noun) :: A woman
+===năng===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+***นั่ง***
+  นั่ง (nang) (verb) :: To sit.
+***นาง***
+  นาง (nang) (noun) :: A woman
+===nangngeuk===
+  นางเงือก (nangngeuk) (noun) :: mermaid
+***นางเงือก***
+  นางเงือก (nangngeuk) (noun) :: mermaid
+***น้ำนม***
+  น้ำนม (náam nom) (noun) :: milk
+===napā===
+  นภา (napā) (noun) :: sky
+***น้ำพริก***
+  น้ำพริก (náam prík) (noun) :: chilli sauce
+===narok===
+  นรก (narok) (noun) :: hell
+***น้ำส้มพริกดอง***
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===nathi===
+  นาที (nathi) (noun) :: minute
+***นาที***
+  นาที (nathi) (noun) :: minute
+===nawn===
+  นอน (nawn) (verb) :: to sleep
+  นอน (nawn) (verb) :: to lie down
+===nāy===
+  ทำนาย (thom nāy) (verb) :: To prognosticate.
+***นาย***
+  นาย (naai) (noun) :: mister, Mr.
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===nɑː===
+  มีนาคม (/mɪː.nɑː.kom/) (proper noun) :: March.
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+===ne===
+  เสน่ห์ (sa ne) (noun) :: charming
+===née===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===neeb===
+  หนีบ (neeb) (verb) :: To pinch.
+===neepaan===
+  ภาษาเนปาล (paasăa neepaan) (proper noun) :: The Nepali language.
+===nèung===
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+  หนึ่ง (nèung) (noun) :: one
+  หนึ่ง (nèung) (adjective) :: one
+***ง***
+  ง (ng; ngaw nguu) :: The seventh letter of the Thai alphabet.
+===ngaan===
+  งาน (ngaan) (noun) :: job.
+  งาน (ngaan) (noun) :: task.
+===ngad===
+  งัด (ngad) (verb) :: To pry open.
+***งัด***
+  งัด (ngad) (verb) :: To pry open.
+***งาน***
+  งาน (ngaan) (noun) :: job.
+  งาน (ngaan) (noun) :: task.
+===ngaw===
+  งอ (ngaw) (verb) :: to bend
+***เงิน***
+  เงิน (ngern) (noun) :: silver
+  เงิน (ngern) (noun) :: money
+===ngern===
+  เงิน (ngern) (noun) :: silver
+  เงิน (ngern) (noun) :: money
+  การเงิน (gaan ngern) (noun) :: finance
+  การเงิน (gaan ngern) (noun) :: monetary matters
+===ngèua===
+  เหงื่อ (ngèua) (noun) :: A sweat.
+===ngèuay===
+  เหนื่อย (ngèuay) (adjective) :: weary.
+===ngeuk===
+  เงือก (ngeuk) (noun) :: mermaid
+***เงือก***
+  เงือก (ngeuk) (noun) :: mermaid
+***งู***
+  งู (nguu) :: snake (reptile).
+***งอ***
+  งอ (ngaw) (verb) :: to bend
+===ni===
+  ตำหนิ (tam ni) (verb) :: To blame.
+===nī===
+  หนี (nī) (verb) :: To escape.
+***นี้***
+  นี้ (née) :: this
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===ñiipun===
+  ญี่ปุ่น (yii pun, ñiipun) (proper noun) :: Japan
+===níróoktì===
+  นิรุกติศาสตร์ (níróoktì sàat) (noun) :: etymology
+***นิรุกติ***
+  นิรุกติ (níróoktì) :: language
+  นิรุกติ (níróoktì) :: speech
+  นิรุกติ (níróoktì) :: words
+***นิรุกติศาสตร์***
+  นิรุกติศาสตร์ (níróoktì sàat) (noun) :: etymology
+***นิทรา***
+  นิทรา (nitra) (noun) :: unconsciousness
+===nitra===
+  นิทรา (nitra) (noun) :: unconsciousness
+***นีออน***
+  นีออน (nīon) :: neon
+***นก***
+  นก (nok) (noun) :: bird, fowl
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+***นคร***
+  นคร (nakorn) (noun) :: city, town
+***นกแก้ว***
+  นกแก้ว (nók gâew) :: parrot
+===nok===
+  นก (nok) (noun) :: bird, fowl
+===nom===
+  น้ำนม (náam nom) (noun) :: milk
+===nóng===
+  น้อง (nóng) (noun) :: younger brother
+  น้อง (nóng) (noun) :: younger sister
+***นภา***
+  นภา (napā) (noun) :: sky
+***นรก***
+  นรก (narok) (noun) :: hell
+===nū===
+  ธนู (tha nū) (noun) :: bow
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+===ñuan===
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+===nuay===
+  อำนวย (am nuay) (verb) :: To give.
+===nud===
+  มนุษย์ (ma nud) (noun) :: human being
+===nuek===
+  นึก (nuek) (verb) :: To think.
+***นึก***
+  นึก (nuek) (verb) :: To think.
+===num===
+  นำ (num) (verb) :: to lead.
+  นำ (num) (verb) :: to bring
+===nŭu===
+  หนู (nŭu) (pronoun) :: I(child to adult)
+***นอน***
+  นอน (nawn) (verb) :: to sleep
+  นอน (nawn) (verb) :: to lie down
+***น้อง***
+  น้อง (nóng) (noun) :: younger brother
+  น้อง (nóng) (noun) :: younger sister
+===od===
+  อด (od) (verb) :: To shun.
+===om===
+  อม (om) (verb) :: To hold something in one's mouth.
+===ōng===
+  โอ่ง (ōng) (noun) :: A water jar.
+  โอ่ง (ōng) (noun) :: A gigantic jar.
+===ooriyaa===
+  ภาษาโอริยา (paasăa ooriyaa) (proper noun) :: The Oriya language.
+***ป***
+  ป (p; paw plaa) :: The 27th letter of the Thai alphabet.
+===pa===
+  ศิลปะ (sin la pa) (noun) :: art
+  ผสม (pa som) (verb) :: To mix.
+===pā===
+  ภาษี (pā sī) (noun) :: tax
+===paasăa===
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+  ภาษารัสเซีย (paasăa rátsia) (proper noun) :: the Russian language
+  ภาษาโปรตุเกส (paasăa bprohdtòogèt) (proper noun) :: The Portuguese language.
+  ภาษากรีก (paasăa grèek) (proper noun) :: The Greek language.
+  ภาษาอังกฤษ (paasăa anggrìt) (proper noun) :: English language
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+  ภาษาดัตช์ (paasăa dad) (proper noun) :: The Dutch language.
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+  ภาษาเวียดนาม (paasăa wiaadnnaam) (proper noun) :: The Vietnamese language.
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+  ภาษาอูรดู (paasăa uuduu) (proper noun) :: The Urdu language.
+  ภาษามราฐี (paasăa maraathii) (proper noun) :: The Marathi language.
+  ภาษาอัสสัม (paasăa adsam) (proper noun) :: The Assamese language.
+  ภาษาเบงกาลี (paasăa bengaalii) (proper noun) :: The Bengali language.
+  ภาษาโฑครี (paasăa thookhrii) (proper noun) :: The Dogri language.
+  ภาษาคุชราต (paasăa khudcharaat) (proper noun) :: The Gujarati language.
+  ภาษากันนฑะ (paasăa kannatha) (proper noun) :: The Kannada language.
+  ภาษากัศมีร์ (paasăa kadsamii) (proper noun) :: The Kashmiri language.
+  ภาษาแคชเมียร์ (paasăa khaechamiaa) (proper noun) :: The Kashmiri language.
+  ภาษามณีปุระ (paasăa maniipura) (proper noun) :: The Meitei language.
+  ภาษาเนปาล (paasăa neepaan) (proper noun) :: The Nepali language.
+  ภาษาปัญจาบ (paasăa panjaab) (proper noun) :: The Punjabi language.
+  ภาษาโอริยา (paasăa ooriyaa) (proper noun) :: The Oriya language.
+  ภาษาสันสกฤต (paasăa sǎnsakrit) (proper noun) :: The Sanskrit language.
+  ภาษาสันตาลี (paasăa santaalii) (proper noun) :: The Santali language.
+  ภาษาสินธุ (paasăa sinthuu) (proper noun) :: The Sindhi language.
+  ภาษาสินธี (paasăa sinthii) (proper noun) :: The Sindhi language.
+  ภาษาทมิฬ (paasăa tamin) (proper noun) :: The Tamil language.
+  ภาษาเตลูกู (paasăa teeluuguu) (proper noun) :: The Telugu language.
+  ภาษาบาลี (paasăa baalii) (proper noun) :: The Pali language.
+  ภาษาชวา (paasăa chawaa) (proper noun) :: The Javanese language.
+  ภาษาสก็อต (paasăa sacot) (proper noun) :: The Scots language.
+===pāb===
+  คุณภาพ (kun na pāb) (noun) :: quality
+===pad===
+  ผัด (pad) (verb) :: To postpone
+  ผัด (pad) (verb) :: To stir-fry
+  ปัด (pad) (verb) :: To sweep.
+===Pad===
+  ผัดไทย (Pad Thai) (noun) :: pad thai
+===pād===
+  พาด (pād) (verb) :: To drape over.
+  พาด (pād) (verb) :: To lean.
+***ปัด***
+  ปัด (pad) (verb) :: To sweep.
+===padtʰamaa===
+  ปัทมา (padtʰamaa) (proper noun) :: {{given name|female}}.
+  ปัทมา (padtʰamaa) (noun) :: A lotus.
+===pāe===
+  แพ้ (pāe) (verb) :: to lose (to be defeated)
+===paed===
+  แพทย์ (paed) (noun) :: doctor
+===paedsaya===
+  แพศยา (paedsaya) (noun) :: prostitute
+***แปลง***
+  แปลง (plaeng) (verb) :: To transform.
+===pàen===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===pai===
+  ภัย (pai) (noun) :: danger
+  ไพศาล (pai sān) (adjective) :: Large.
+===paiyanyai===
+  ฯลฯ (paiyanyai) (noun) :: abbreviation indicator.
+===pak===
+  พัก (pak) (verb) :: To rest.
+===pāk===
+  ปาก (pāk) (adjective) :: A brim.
+  ปาก (pāk) (noun) :: A mouth.
+***ปาก***
+  ปาก (pāk) (adjective) :: A brim.
+  ปาก (pāk) (noun) :: A mouth.
+===pakistaan===
+  ประเทศปากีสถาน (prathed pakistaan) (proper noun) :: Pakistan
+===pámâa===
+  พม่า (pámâa) (proper noun) :: Myanmar, Burma
+===pámóo===
+  ภมุ (pámóo) (noun) :: eyebrow
+===pan===
+  พัน (pan) (verb) :: To bind.
+  ปั่น (pan) (verb) :: To blend something in a blender.
+  ปั่น (pan) (verb) :: To spin.
+  ปลุกปั่น (pluk pan) (verb) :: To agitate.
+===Pan===
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+===pān===
+  ผ่าน (pān) (verb) :: To pass.
+***ปั่น***
+  ปั่น (pan) (verb) :: To blend something in a blender.
+  ปั่น (pan) (verb) :: To spin.
+===panjaab===
+  ภาษาปัญจาบ (paasăa panjaab) (proper noun) :: The Punjabi language.
+===pao===
+  เผา (pao) (verb) :: To burn.
+  เป่า (pao) (verb) :: To blow.
+===paris===
+  ปารีส (paris) (proper noun) :: Paris .
+***ปารีส***
+  ปารีส (paris) (proper noun) :: Paris .
+===pasit===
+  ภาษิต (pasit) (noun) :: proverb
+===patak===
+  ปฏัก (patak) (noun) :: goad
+  ปฏัก (patak) (noun) :: spear
+***ปัทมา***
+  ปัทมา (padtʰamaa) (proper noun) :: {{given name|female}}.
+  ปัทมา (padtʰamaa) (noun) :: A lotus.
+===patibat===
+  ปฏิบัติ (patibat) (noun) :: behavior
+***เป่า***
+  เป่า (pao) (verb) :: To blow.
+===ped===
+  เพศชาย (ped-chai) (noun) :: male
+***เป็ด***
+  เป็ด (bpèt) (noun) :: duck, drake, duckling
+  เป็ด (bpèt) (noun) :: duck-shaped boat
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===pêe===
+  พี่ (pêe) (noun) :: elder brother
+  พี่ (pêe) (noun) :: elder sister
+===pěe===
+  ผีเสื้อ (pěe sêua) (noun) :: butterfly
+===peen===
+  ปีน (peen) (verb) :: To climb.
+***เปิด***
+  เปิด (/pɜːd/) (verb) :: To open.
+  เปิด (/pɜːd/) (verb) :: To turn on.
+***เปลญวน***
+  เปลญวน (bplay yuan) (noun) :: hammock
+***เปรียบเทียบ***
+  เปรียบเทียบ (piāb thiāb) (verb) :: To compare.
+===perm===
+  เพิ่ม (perm) (verb) :: To aggrandize.
+===pêut===
+  วัชพืช (wát-pêut) (noun) :: weed
+===pɜːd===
+  เปิด (/pɜːd/) (verb) :: To open.
+  เปิด (/pɜːd/) (verb) :: To turn on.
+***ผ***
+  ผ (p, ph; paw pueng) :: The 28th letter of the Thai alphabet
+***พ***
+  พ (ph; phaw phaan) :: The 30th letter of the Thai alphabet
+***ภ***
+  ภ (p, ph; paw sam pao) :: The 32nd letter of the Thai alphabet
+===pha===
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+***พา***
+  พา (phaa) (verb) :: To lead.
+===phaa===
+  พา (phaa) (verb) :: To lead.
+===phaasăa===
+  ภาษาไทย (phaasăa thai) (proper noun) :: the Thai language
+  ภาษาลาว (phaasăa laao) (proper noun) :: The Lao language.
+  ภาษาพม่า (phaasăa phamaa) (proper noun) :: The Burmese language.
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+  ภาษาฮินดี (phaasăa hindee) (proper noun) :: The Hindi language.
+  ภาษาสเปน (phaasăa sapén) (proper noun) :: The Spanish language.
+===phaayu===
+  พายุ (phaayu) (noun) :: A storm
+===phab===
+  ภาพ (phab) (noun) :: A painting.
+  ภาพ (phab) (noun) :: A picture.
+***ผัด***
+  ผัด (pad) (verb) :: To postpone
+  ผัด (pad) (verb) :: To stir-fry
+***พาด***
+  พาด (pād) (verb) :: To drape over.
+  พาด (pād) (verb) :: To lean.
+***ผัดไทย***
+  ผัดไทย (Pad Thai) (noun) :: pad thai
+***แพ้***
+  แพ้ (pāe) (verb) :: to lose (to be defeated)
+===แผ่นดินใหญ่===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+***แพรว***
+  แพรว (praew) (proper noun) :: {{given name|female}}.
+  แพรว (praew) (adjective) :: gleaming.
+***แพศยา***
+  แพศยา (paedsaya) (noun) :: prostitute
+***แพทย์***
+  แพทย์ (paed) (noun) :: doctor
+***พัก***
+  พัก (pak) (verb) :: To rest.
+===phala===
+  พละ (phala) (noun) :: A physical education.
+===phamaa===
+  ภาษาพม่า (phaasăa phamaa) (proper noun) :: The Burmese language.
+***ผ่าน***
+  ผ่าน (pān) (verb) :: To pass.
+***พัน***
+  พัน (pan) (verb) :: To bind.
+===phana===
+  พนา (phana) (noun) :: forest
+***ภาพ***
+  ภาพ (phab) (noun) :: A painting.
+  ภาพ (phab) (noun) :: A picture.
+***ภาษา***
+  ภาษา {{th-noun|tr=paasăa}} :: language
+  ภาษา {{th-noun|tr=paasăa}} :: speech
+  ภาษา {{th-noun|tr=paasăa}} :: words
+***ภาษาบาลี***
+  ภาษาบาลี (paasăa baalii) (proper noun) :: The Pali language.
+***ภาษาเบงกาลี***
+  ภาษาเบงกาลี (paasăa bengaalii) (proper noun) :: The Bengali language.
+***ภาษาชวา***
+  ภาษาชวา (paasăa chawaa) (proper noun) :: The Javanese language.
+***ภาษาจีนกลาง***
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+***ภาษาจีนกวางตุ้ง***
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+***ภาษาดัตช์***
+  ภาษาดัตช์ (paasăa dad) (proper noun) :: The Dutch language.
+***ภาษาฝรั่งเศส***
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+***ภาษาฮิบรู***
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+***ภาษาฮินดี***
+  ภาษาฮินดี (phaasăa hindee) (proper noun) :: The Hindi language.
+***ภาษาฮินดู***
+  ภาษาฮินดู (proper noun) :: The Hindi language.
+***ภาษากันนฑะ***
+  ภาษากันนฑะ (paasăa kannatha) (proper noun) :: The Kannada language.
+***ภาษากัศมีร์***
+  ภาษากัศมีร์ (paasăa kadsamii) (proper noun) :: The Kashmiri language.
+***ภาษาเกาหลี***
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+***ภาษาแคชเมียร์***
+  ภาษาแคชเมียร์ (paasăa khaechamiaa) (proper noun) :: The Kashmiri language.
+***ภาษาเขมร***
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+***ภาษาคุชราต***
+  ภาษาคุชราต (paasăa khudcharaat) (proper noun) :: The Gujarati language.
+***ภาษากรีก***
+  ภาษากรีก (paasăa grèek) (proper noun) :: The Greek language.
+***ภาษาลาว***
+  ภาษาลาว (phaasăa laao) (proper noun) :: The Lao language.
+***ภาษามณีปุระ***
+  ภาษามณีปุระ (paasăa maniipura) (proper noun) :: The Meitei language.
+***ภาษามราฐี***
+  ภาษามราฐี (paasăa maraathii) (proper noun) :: The Marathi language.
+***ภาษาเนปาล***
+  ภาษาเนปาล (paasăa neepaan) (proper noun) :: The Nepali language.
+***ภาษาปัญจาบ***
+  ภาษาปัญจาบ (paasăa panjaab) (proper noun) :: The Punjabi language.
+***ภาษาพม่า***
+  ภาษาพม่า (phaasăa phamaa) (proper noun) :: The Burmese language.
+***ภาษาโปรตุเกส***
+  ภาษาโปรตุเกส (paasăa bprohdtòogèt) (proper noun) :: The Portuguese language.
+***ภาษารัสเซีย***
+  ภาษารัสเซีย (paasăa rátsia) (proper noun) :: the Russian language
+***ภาษาสันสกฤต***
+  ภาษาสันสกฤต (paasăa sǎnsakrit) (proper noun) :: The Sanskrit language.
+***ภาษาสันตาลี***
+  ภาษาสันตาลี (paasăa santaalii) (proper noun) :: The Santali language.
+***ภาษาสินธี***
+  ภาษาสินธี (paasăa sinthii) (proper noun) :: The Sindhi language.
+***ภาษาสินธุ***
+  ภาษาสินธุ (paasăa sinthuu) (proper noun) :: The Sindhi language.
+***ภาษาสก็อต***
+  ภาษาสก็อต (paasăa sacot) (proper noun) :: The Scots language.
+***ภาษาสเปน***
+  ภาษาสเปน (phaasăa sapén) (proper noun) :: The Spanish language.
+***ภาษาเตลูกู***
+  ภาษาเตลูกู (paasăa teeluuguu) (proper noun) :: The Telugu language.
+***ภาษาไทย***
+  ภาษาไทย (phaasăa thai) (proper noun) :: the Thai language
+***ภาษาทมิฬ***
+  ภาษาทมิฬ (paasăa tamin) (proper noun) :: The Tamil language.
+***ภาษาโฑครี***
+  ภาษาโฑครี (paasăa thookhrii) (proper noun) :: The Dogri language.
+***ภาษาเวียดนาม***
+  ภาษาเวียดนาม (paasăa wiaadnnaam) (proper noun) :: The Vietnamese language.
+***ภาษาอาหรับ***
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+***ภาษาอังกฤษ***
+  ภาษาอังกฤษ (paasăa anggrìt) (proper noun) :: English language
+***ภาษาอัสสัม***
+  ภาษาอัสสัม (paasăa adsam) (proper noun) :: The Assamese language.
+***ภาษาโอริยา***
+  ภาษาโอริยา (paasăa ooriyaa) (proper noun) :: The Oriya language.
+***ภาษาอูรดู***
+  ภาษาอูรดู (paasăa uuduu) (proper noun) :: The Urdu language.
+***ภาษาญี่ปุ่น***
+  ภาษาญี่ปุ่น (proper noun) :: Japanese, the language spoken in Japan.
+***ภาษาญวน***
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+***ภาษี***
+  ภาษี (pā sī) (noun) :: tax
+***ภาษิต***
+  ภาษิต (pasit) (noun) :: proverb
+***ภัย***
+  ภัย (pai) (noun) :: danger
+***พายุ***
+  พายุ (phaayu) (noun) :: A storm
+===phayun===
+  พะยูน (phayun) (noun) :: dugong
+***พะยูน***
+  พะยูน (phayun) (noun) :: dugong
+***พบ***
+  พบ (pob) (verb) :: To meet.
+***พจนานุกรม***
+  พจนานุกรม (pótjànaanú grom) (noun) :: dictionary
+***เผา***
+  เผา (pao) (verb) :: To burn.
+***เผ็ด***
+  เผ็ด (pèt) :: spicy, hot, pungent, peppery
+  เผ็ด (pèt) :: to be spicy, to be hot, to be pungent, to be peppery
+===phĕe===
+  ผี (phĕe) (noun) :: ghost, spirit, demon
+  ผี (phĕe) (adjective) :: spiritual (in sorcery)
+***เพิ่ม***
+  เพิ่ม (perm) (verb) :: To aggrandize.
+***เพราะว่า***
+  เพราะว่า (pro wā) (conjunction) :: for
+***เพศชาย***
+  เพศชาย (ped-chai) (noun) :: male
+===phêuan===
+  เพื่อน (phêuan) (noun) :: A friend.
+***เพื่อน***
+  เพื่อน (phêuan) (noun) :: A friend.
+  เพื่อน (phuean) (pronoun) :: he, she, they
+***เพื่อว่า***
+  เพื่อว่า (puea wā) (conjunction) :: so
+***ผี***
+  ผี (phĕe) (noun) :: ghost, spirit, demon
+  ผี (phĕe) (adjective) :: spiritual (in sorcery)
+***พี่***
+  พี่ (pêe) (noun) :: elder brother
+  พี่ (pêe) (noun) :: elder sister
+***พิจิก***
+  พิจิก (pijik) (noun) :: A scorpion.
+===phid===
+  พิษ (phid) (noun) :: poison
+===phijik===
+  ราศีพิจิก (rāsī phijik) (proper noun) :: Scorpio
+***พิมพ์***
+  พิมพ์ (pim) (verb) :: To type.
+===phinthu===
+  พินทุ (phinthu) (noun) :: A dot.
+  พินทุ (phinthu) (noun) :: A bindi.
+***พินทุ***
+  พินทุ (phinthu) (noun) :: A dot.
+  พินทุ (phinthu) (noun) :: A bindi.
+***พิษ***
+  พิษ (phid) (noun) :: poison
+***ไพศาล***
+  ไพศาล (pai sān) (adjective) :: Large.
+***ผีเสื้อ***
+  ผีเสื้อ (pěe sêua) (noun) :: butterfly
+***ภิตติ***
+  ภิตติ (pid ti) (noun) :: wall
+***ผล***
+  ผล (pon) (noun) :: profit
+  ผล (pon) (noun) :: fruit
+***พล***
+  พล (pʰon) (proper noun) :: {{given name|male}}.
+  พล (pʰon) (noun) :: strength.
+***พละ***
+  พละ (phala) (noun) :: A physical education.
+***ผลาญ***
+  ผลาญ (plān) (verb) :: To waste.
+***ผม***
+  ผม :: I; me. For male speakers.
+  ผม (/pʰom˨˩˧/) (noun) :: hair
+***พม่า***
+  พม่า (pámâa) (proper noun) :: Myanmar, Burma
+===ผมจะไป===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+***ภมุ***
+  ภมุ (pámóo) (noun) :: eyebrow
+***พนา***
+  พนา (phana) (noun) :: forest
+***โภชนะ***
+  โภชนะ (pōchana) (noun) :: nutrition
+***โภชนา***
+  โภชนา (pōchanā) (noun) :: nutrition
+===pʰom===
+  ผม (/pʰom˨˩˧/) (noun) :: hair
+===pʰon===
+  พล (pʰon) (proper noun) :: {{given name|male}}.
+  พล (pʰon) (noun) :: strength.
+===pʰɔːn===
+  พร (/pʰɔːn/) (proper noun) :: {{given name|female}}.
+***พร***
+  พร (/pʰɔːn/) (proper noun) :: {{given name|female}}.
+  พร (porn) (noun) :: A blessing.
+***พระ***
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+  พระ (prá) (noun) :: Buddha image, god
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  พระ (prá) (noun) :: leading actor, star; hero
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+***พระบาทสมเด็จพระเจ้าอยู่หัว***
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===พระจันทร์===
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+***พรหม***
+  พรหม (pom) (noun) :: Brahma
+***พรหมจารี***
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+***พรหมจรรย์***
+  พรหมจรรย์ (pom ma jan) (noun) :: Brahmacharya
+  พรหมจรรย์ (pom ma jan) (noun) :: virginity
+***พรหมลิขิต***
+  พรหมลิขิต (pom li khit) (noun) :: fate
+***พริก***
+  พริก (prik) (noun) :: chilli
+***พริกชี้ฟ้า***
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+***พริกดอง***
+  พริกดอง (prík dong) (noun) :: pickled chilli
+***พริกหยวก***
+  พริกหยวก (prik yuak) (noun) :: bell pepper
+***พริกขี้หนู***
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+***พริกไทย***
+  พริกไทย (prik tai) (noun) :: pepper
+===พรุ่งนี้===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+***ผสม***
+  ผสม (pa som) (verb) :: To mix.
+***ผุ***
+  ผุ (pu) (verb) :: To decay.
+***พูด***
+  พูด (pôot) (verb) :: to speak
+===phuean===
+  เพื่อน (phuean) (pronoun) :: he, she, they
+***ผูก***
+  ผูก (pook) (verb) :: To tie.
+***ภูเขา***
+  ภูเขา (puu khao) (noun) :: A mountain.
+***ภูเฃา***
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+***ภูมิ***
+  ภูมิ (pʰūmi) (proper noun) :: {{given name|male}}.
+  ภูมิ (pʰūmi) (noun) :: land
+===pʰūmi===
+  ภูมิ (pʰūmi) (proper noun) :: {{given name|male}}.
+  ภูมิ (pʰūmi) (noun) :: land
+***ภูต***
+  ภูต (phuud) (noun) :: A ghost
+***ภูตผี***
+  ภูตผี (phuudphee) (noun) :: A ghost
+===phuud===
+  ภูต (phuud) (noun) :: A ghost
+===phuudphee===
+  ภูตผี (phuudphee) (noun) :: A ghost
+***พฤกษา***
+  พฤกษา (pruek sa) (noun) :: tree
+***พฤษภ***
+  พฤษภ (prued) (noun) :: A bull.
+***พฤษภาคม***
+  พฤษภาคม (prueksaphākhom) (proper noun) :: May.
+***พฤศจิกายน***
+  พฤศจิกายน (pruedsajikāyon) (proper noun) :: November.
+===พวกเขา===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+***พ่อ***
+  พ่อ (pòo) (noun) :: father
+***ไป***
+  ไป :: To go (move to another place).
+===piāb===
+  เปรียบเทียบ (piāb thiāb) (verb) :: To compare.
+===pid===
+  ปิด (pid) (verb) :: To close.
+  ปิด (pid) (verb) :: To turn off.
+  ภิตติ (pid ti) (noun) :: wall
+***ปิด***
+  ปิด (pid) (verb) :: To close.
+  ปิด (pid) (verb) :: To turn off.
+===pijik===
+  พิจิก (pijik) (noun) :: A scorpion.
+===pim===
+  พิมพ์ (pim) (verb) :: To type.
+***ปีน***
+  ปีน (peen) (verb) :: To climb.
+***ปีศาจ***
+  ปีศาจ (pīsād) (noun) :: ghost
+  ปีศาจ (pīsād) (noun) :: evil
+===pīsād===
+  ปีศาจ (pīsād) (noun) :: ghost
+  ปีศาจ (pīsād) (noun) :: evil
+===piu===
+  คอมพิวเตอร์ (khom piu toe) (noun) :: computer
+===pla===
+  ปลาโลมา (pla loma) (noun) :: dolphin
+  ปลาวาฬ (pla wan) (noun) :: whale
+***ปลา***
+  ปลา (bplaa) :: fish
+===plaeng===
+  แปลง (plaeng) (verb) :: To transform.
+***ปลาโลมา***
+  ปลาโลมา (pla loma) (noun) :: dolphin
+===plān===
+  ผลาญ (plān) (verb) :: To waste.
+===plapayun===
+  ปลาพะยูน (plapayun) (noun) :: dugong
+***ปลาพะยูน***
+  ปลาพะยูน (plapayun) (noun) :: dugong
+***ปลาวาฬ***
+  ปลาวาฬ (pla wan) (noun) :: whale
+***ปล้น***
+  ปล้น (plon) (verb) :: To rob.
+===plon===
+  ปล้น (plon) (verb) :: To rob.
+===pluk===
+  ปลุก (pluk) (verb) :: To wake.
+  ปลุกปั่น (pluk pan) (verb) :: To agitate.
+***ปลุก***
+  ปลุก (pluk) (verb) :: To wake.
+***ปลุกปั่น***
+  ปลุกปั่น (pluk pan) (verb) :: To agitate.
+===pob===
+  พบ (pob) (verb) :: To meet.
+===pōchana===
+  โภชนะ (pōchana) (noun) :: nutrition
+===pōchanā===
+  โภชนา (pōchanā) (noun) :: nutrition
+===pom===
+  พรหม (pom) (noun) :: Brahma
+  พรหมลิขิต (pom li khit) (noun) :: fate
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+  พรหมจรรย์ (pom ma jan) (noun) :: Brahmacharya
+  พรหมจรรย์ (pom ma jan) (noun) :: virginity
+===pon===
+  ผล (pon) (noun) :: profit
+  ผล (pon) (noun) :: fruit
+===pòo===
+  ปู่ (pòo) (noun) :: paternal grandfather
+  พ่อ (pòo) (noun) :: father
+===pook===
+  ผูก (pook) (verb) :: To tie.
+===pôot===
+  พูด (pôot) (verb) :: to speak
+===porn===
+  พร (porn) (noun) :: A blessing.
+===pótjànaanú===
+  พจนานุกรม (pótjànaanú grom) (noun) :: dictionary
+===pra===
+  ประกาศ (pra kād) (verb) :: declare
+===prá===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+  พระ (prá) (noun) :: Buddha image, god
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  พระ (prá) (noun) :: leading actor, star; hero
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===praa===
+  ปรากฏ (praa kod) (verb) :: To reveal.
+===prábàat===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===prachā===
+  ประชา (prachā) (noun) :: people
+***ประชา***
+  ประชา (prachā) (noun) :: people
+===praew===
+  แพรว (praew) (proper noun) :: {{given name|female}}.
+  แพรว (praew) (adjective) :: gleaming.
+===prakān===
+  ประการ (prakān) (noun) :: mode
+  ประการ (prakān) (noun) :: type
+  ประการ (prakān) (noun) :: variety
+***ประการ***
+  ประการ (prakān) (noun) :: mode
+  ประการ (prakān) (noun) :: type
+  ประการ (prakān) (noun) :: variety
+***ประกาศ***
+  ประกาศ (pra kād) (verb) :: declare
+***ปรากฏ***
+  ปรากฏ (praa kod) (verb) :: To reveal.
+===prasad===
+  ประสาท (prasad) (noun) :: nerve
+===prāsād===
+  ปราสาท (prāsād) (noun) :: castle
+***ประสาท***
+  ประสาท (prasad) (noun) :: nerve
+***ปราสาท***
+  ปราสาท (prāsād) (noun) :: castle
+===prasid===
+  ประสิทธิ์ (prasid) (proper noun) :: {{given name|male}}.
+  ประสิทธิ์ (prasid) (noun) :: success
+***ประสิทธิ์***
+  ประสิทธิ์ (prasid) (proper noun) :: {{given name|male}}.
+  ประสิทธิ์ (prasid) (noun) :: success
+===prathān===
+  ประธาน (prathān) (noun) :: subject
+  ประธาน (prathān) (noun) :: president
+  ประทาน (prathān) (noun) :: grant
+***ประทาน***
+  ประทาน (prathān) (noun) :: grant
+***ประธาน***
+  ประธาน (prathān) (noun) :: subject
+  ประธาน (prathān) (noun) :: president
+===prathed===
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Siam
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Thailand
+  ประเทศเกาหลี (prathed kaolee) (proper noun) :: Korea
+  ประเทศปากีสถาน (prathed pakistaan) (proper noun) :: Pakistan
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+  ประเทศสก็อตแลนด์ (prathed sacotlaen) (proper noun) :: Scotland
+  ประเทศไอร์แลนด์ (prathed ailaen) (proper noun) :: Ireland
+  ประเทศอังกฤษ (prathed angkrid) (proper noun) :: England
+  ประเทศกัมพูชา (prathed kaphoochaa) (proper noun) :: Cambodia
+  ประเทศเขมร (prathed khméén) (proper noun) :: Cambodia
+  ประเทศลาว (prathed laao) (proper noun) :: Laos
+***ประเทศ***
+  ประเทศ (prathet) (noun) :: country
+***ประเทศฝรั่งเศส***
+  ประเทศฝรั่งเศส (bpràtêt fàràngsèt) (proper noun) :: France
+***ประเทศกัมพูชา***
+  ประเทศกัมพูชา (prathed kaphoochaa) (proper noun) :: Cambodia
+***ประเทศเกาหลี***
+  ประเทศเกาหลี (prathed kaolee) (proper noun) :: Korea
+***ประเทศเกาหลีใต้***
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+***ประเทศเขมร***
+  ประเทศเขมร (prathed khméén) (proper noun) :: Cambodia
+***ประเทศลาว***
+  ประเทศลาว (prathed laao) (proper noun) :: Laos
+***ประเทศปากีสถาน***
+  ประเทศปากีสถาน (prathed pakistaan) (proper noun) :: Pakistan
+***ประเทศสก็อตแลนด์***
+  ประเทศสก็อตแลนด์ (prathed sacotlaen) (proper noun) :: Scotland
+***ประเทศสยาม***
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Siam
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Thailand
+***ประเทศไทย***
+  ประเทศไทย (Prathēt Thai) (proper noun) :: Kingdom of Thailand
+***ประเทศอังกฤษ***
+  ประเทศอังกฤษ (prathed angkrid) (proper noun) :: England
+***ประเทศไอร์แลนด์***
+  ประเทศไอร์แลนด์ (prathed ailaen) (proper noun) :: Ireland
+===prathet===
+  ประเทศ (prathet) (noun) :: country
+===Prathēt===
+  ประเทศไทย (Prathēt Thai) (proper noun) :: Kingdom of Thailand
+===práyaa===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===príhàt===
+  วันพฤหัส (wan príhàt) (noun) :: {informal} Thursday
+===príhàtbàdee===
+  วันพฤหัสบดี (wan príhàtbàdee) (noun) :: {formal} Thursday
+===prik===
+  พริก (prik) (noun) :: chilli
+  พริกไทย (prik tai) (noun) :: pepper
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+  พริกหยวก (prik yuak) (noun) :: bell pepper
+===prík===
+  พริกดอง (prík dong) (noun) :: pickled chilli
+  น้ำพริก (náam prík) (noun) :: chilli sauce
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+===pro===
+  เพราะว่า (pro wā) (conjunction) :: for
+===prued===
+  พฤษภ (prued) (noun) :: A bull.
+  ราศีพฤษภ (rāsī prued) (proper noun) :: Taurus
+===pruedsajikāyon===
+  พฤศจิกายน (pruedsajikāyon) (proper noun) :: November.
+===pruek===
+  พฤกษา (pruek sa) (noun) :: tree
+===prueksaphākhom===
+  พฤษภาคม (prueksaphākhom) (proper noun) :: May.
+***ปฏัก***
+  ปฏัก (patak) (noun) :: goad
+  ปฏัก (patak) (noun) :: spear
+***ปฏิบัติ***
+  ปฏิบัติ (patibat) (noun) :: behavior
+===pu===
+  ผุ (pu) (verb) :: To decay.
+***ปู่***
+  ปู่ (pòo) (noun) :: paternal grandfather
+===puea===
+  เพื่อว่า (puea wā) (conjunction) :: so
+===pun===
+  ญี่ปุ่น (yii pun, ñiipun) (proper noun) :: Japan
+===pút===
+  วันพุธ (wan pút) (noun) :: Wednesday
+===puu===
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+  ภูเขา (puu khao) (noun) :: A mountain.
+===ṝ===
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+***ร***
+  ร (r; raw ruea) :: The 35th letter of the Thai alphabet
+===ra===
+  คารวะ (cā ra wa) (noun) :: respect
+  กรกฎ (kau ra kod) (noun)Category:th:Animals :: crab
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+***รำ***
+  รำ (ram) (verb) :: to dance
+===raachaaanaajak===
+  สหราชอาณาจักร (saha raachaaanaajak) (proper noun) :: The United Kingdom.
+===ráai===
+  ฝันร้าย (făn ráai) (noun) :: nightmare
+===rab===
+  รับ (rab) (verb) :: To receive.
+  รับรู้ (rab rū) (verb) :: To perceive.
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+***รับ***
+  รับ (rab) (verb) :: To receive.
+***รับรู้***
+  รับรู้ (rab rū) (verb) :: To perceive.
+***ราชา***
+  ราชา {{th-noun|tr=raachaa}} :: king
+===rachakuman===
+  ราชกุมาร (rachakuman) (noun) :: A prince.
+===rachakumaree===
+  ราชกุมารี (rachakumaree) (noun) :: A princess.
+***ราชกุมาร***
+  ราชกุมาร (rachakuman) (noun) :: A prince.
+***ราชกุมารี***
+  ราชกุมารี (rachakumaree) (noun) :: A princess.
+===rad===
+  รัศมี (rad sa mī) (proper noun) :: {{given name|female}}.
+  รัศมี (rad sa mī) (noun) :: ray of light
+  รัศมี (rad sa mī) (noun) :: radius
+***รัด***
+  รัด (bind) (verb) :: To bind.
+===rak===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+***รัก***
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===rakhang===
+  ระฆัง (rakhang) (noun) :: bell
+***ระฆัง***
+  ระฆัง (rakhang) (noun) :: bell
+***รักษา***
+  รักษา (raksa) (verb) :: To heal
+  รักษา (raksa) (verb) :: To cure
+===raksa===
+  รักษา (raksa) (verb) :: To heal
+  รักษา (raksa) (verb) :: To cure
+===raleuk===
+  ระลึก (raleuk) (verb) :: recall
+***ระลึก***
+  ระลึก (raleuk) (verb) :: recall
+===ram===
+  รำ (ram) (verb) :: to dance
+  รำไทย (ram tai) (noun) :: Thai dance
+===rao===
+  เรา (rao) (pronoun) :: I, me(to equals)
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+  เรา (rao) (pronoun) :: {archaic} we/us (inclusive)
+===rāsī===
+  ราศี (rāsī) (noun) :: zodiac
+  ราศีธนู (rāsī thanū) (proper noun) :: Sagittarius
+  ราศีพิจิก (rāsī phijik) (proper noun) :: Scorpio
+  ราศีตุลย์ (rāsī tun) (proper noun) :: Libra
+  ราศีกันย์ (rāsī kan) (proper noun) :: Virgo
+  ราศีสิงห์ (rāsī sing) (proper noun) :: Leo
+  ราศีกรกฎ (rāsī karakod) (proper noun) :: Cancer
+  ราศีเมถุน (rāsī méthun) (proper noun) :: Gemini
+  ราศีพฤษภ (rāsī prued) (proper noun) :: Taurus
+  ราศีเมษ (rāsī méd) (proper noun) :: Aries
+  ราศีมีน (rāsī mīn) (proper noun) :: Pisces
+  ราศีกุมภ์ (rāsī kum) (proper noun) :: Aquarius
+  ราศีมังกร (rāsī mangkorn) (proper noun) :: Capricorn
+***ราศี***
+  ราศี (rāsī) (noun) :: zodiac
+***ราศีกันย์***
+  ราศีกันย์ (rāsī kan) (proper noun) :: Virgo
+***ราศีกรกฎ***
+  ราศีกรกฎ (rāsī karakod) (proper noun) :: Cancer
+***ราศีกุมภ์***
+  ราศีกุมภ์ (rāsī kum) (proper noun) :: Aquarius
+***ราศีมังกร***
+  ราศีมังกร (rāsī mangkorn) (proper noun) :: Capricorn
+***ราศีเมษ***
+  ราศีเมษ (rāsī méd) (proper noun) :: Aries
+***ราศีเมถุน***
+  ราศีเมถุน (rāsī méthun) (proper noun) :: Gemini
+***ราศีมีน***
+  ราศีมีน (rāsī mīn) (proper noun) :: Pisces
+***ราศีพิจิก***
+  ราศีพิจิก (rāsī phijik) (proper noun) :: Scorpio
+***ราศีพฤษภ***
+  ราศีพฤษภ (rāsī prued) (proper noun) :: Taurus
+***ราศีสิงห์***
+  ราศีสิงห์ (rāsī sing) (proper noun) :: Leo
+***ราศีธนู***
+  ราศีธนู (rāsī thanū) (proper noun) :: Sagittarius
+***ราศีตุลย์***
+  ราศีตุลย์ (rāsī tun) (proper noun) :: Libra
+***รัศมี***
+  รัศมี (rad sa mī) (proper noun) :: {{given name|female}}.
+  รัศมี (rad sa mī) (noun) :: ray of light
+  รัศมี (rad sa mī) (noun) :: radius
+***รัสเซีย***
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+  รัสเซีย (rátsia) (proper noun) :: Russia
+===rat===
+  รัฐ (rat) (noun) :: state
+***รัฐ***
+  รัฐ (rat) (noun) :: state
+***รำไทย***
+  รำไทย (ram tai) (noun) :: Thai dance
+***รัฐแทสเมเนีย***
+  รัฐแทสเมเนีย (rát tâetmaynia) :: Tasmania
+===rātrī===
+  ราตรี (rātrī) (proper noun) :: {{given name|female}}.
+  ราตรี (rātrī) (noun) :: night.
+***ราตรี***
+  ราตรี (rātrī) (proper noun) :: {{given name|female}}.
+  ราตรี (rātrī) (noun) :: night.
+===rátsia===
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+  รัสเซีย (rátsia) (proper noun) :: Russia
+  ภาษารัสเซีย (paasăa rátsia) (proper noun) :: the Russian language
+===raw===
+  ขอร้อง (raw róng) (verb) :: To implore.
+===rawng===
+  ร้อง (rawng) (verb) :: To sing.
+  ร้องไห้ (rawng hāi) (verb) :: To cry.
+===rɑː===
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+***เรา***
+  เรา (rao) (pronoun) :: I, me(to equals)
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+  เรา (rao) (pronoun) :: {archaic} we/us (inclusive)
+***เรียก***
+  เรียก (riak) (verb) :: To call.
+***เรียน***
+  เรียน (riān) (verb) :: To study.
+===reo===
+  เร็ว (reo) (adverb) Sc=Thai :: suddenly
+===rerk===
+  ฤกษ์ (rerk) (adjective) :: auspicious
+===reu===
+  ฤๅ (reu) (conjunction) :: or
+  ฤๅ (reu) (pronoun) :: {{context|interrogative}} what, which
+  ฤๅ (reu) (particle) :: {{context|formal|poetic|archaic}} not, no
+  ฤๅ (reu) (particle) :: question particle
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===rĕu===
+  หรือ (rĕu) (conjunction) :: or
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===reua===
+  เรือ (reua) (noun) :: boat
+===rêuat===
+  เรือด (rêuat) (noun) :: bedbug
+===reuthai===
+  ฤทัย (reuthai) (noun) :: A heart .
+***เรือ***
+  เรือ (reua) (noun) :: boat
+***เรือด***
+  เรือด (rêuat) (noun) :: bedbug
+***เร็ว***
+  เร็ว (reo) (adverb) Sc=Thai :: suddenly
+===rī===
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+===riak===
+  เรียก (riak) (verb) :: To call.
+===rian===
+  โรงเรียน (rohng rian) (noun) :: school
+===riān===
+  เรียน (riān) (verb) :: To study.
+===rid===
+  ฤทธิ์ (rid) (noun) :: power.
+***รฦก***
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+===rob===
+  เคารพ (cao rob) (noun) :: respect
+===rod===
+  รถ (rod) (noun) :: car.
+  ขับรถ (khab rod) (verb) :: To drive.
+===ród===
+  รส (ród) (noun) :: A taste.
+===ródyon===
+  รถยนต์ (ródyon) (noun) :: car
+===rohng===
+  โรงเรียน (rohng rian) (noun) :: school
+===rok===
+  โรค (rok) (noun) :: disease
+  โรค (rok) (noun) :: sickness
+***โรค***
+  โรค (rok) (noun) :: disease
+  โรค (rok) (noun) :: sickness
+===ron===
+  ร้อน (ron) (adjective) :: hot
+===róng===
+  ขอร้อง (raw róng) (verb) :: To implore.
+***โรงเรียน***
+  โรงเรียน (rohng rian) (noun) :: school
+===roy===
+  ร้อย (roy) (verb) :: To thread.
+===rɔ===
+  รอ (/rɔ/) (verb) :: To wait.
+***รส***
+  รส (ród) (noun) :: A taste.
+***รถ***
+  รถ (rod) (noun) :: car.
+***รถยนต์***
+  รถยนต์ (ródyon) (noun) :: car
+===rū===
+  รู้ (rū) (verb) :: To know.
+  รู้สึก (rū suek) (verb) :: To feel.
+  รับรู้ (rab rū) (verb) :: To perceive.
+***รู้***
+  รู้ (rū) (verb) :: To know.
+===rue===
+  ฤษี (rue sī) (noun) :: seer
+  ฤษี (rue sī) (noun) :: hermit
+  ฤๅษี (rue sī) (noun) :: seer
+  ฤๅษี (rue sī) (noun) :: hermit
+===rūea===
+  หางเสือเรือ (hāng sūe rūea) (noun) :: rudder
+***รู้สึก***
+  รู้สึก (rū suek) (verb) :: To feel.
+===ruu===
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+***รอ***
+  รอ (/rɔ/) (verb) :: To wait.
+***ร้อน***
+  ร้อน (ron) (adjective) :: hot
+***ร้อง***
+  ร้อง (rawng) (verb) :: To sing.
+***ร้องไห้***
+  ร้องไห้ (rawng hāi) (verb) :: To cry.
+***ร้อย***
+  ร้อย (roy) (verb) :: To thread.
+***ซ***
+  ซ (s; saw sō) :: The 11th letter of the Thai alphabet
+***ศ***
+  ศ (s; saw sālā) :: The 38th letter of the Thai alphabet
+***ส***
+  ส (s; saw suea) :: The 40th letter of the Thai alphabet
+***ษ***
+  ษ (s; saw rue sī) :: The 39th letter of the Thai alphabet
+===sa===
+  สวัสดิ์ (sa wad) (noun) :: blessing
+  เสน่ห์ (sa ne) (noun) :: charming
+  รัศมี (rad sa mī) (proper noun) :: {{given name|female}}.
+  รัศมี (rad sa mī) (noun) :: ray of light
+  รัศมี (rad sa mī) (noun) :: radius
+  สหาย (sa hāy) (noun) :: friend
+  พฤกษา (pruek sa) (noun) :: tree
+  นามสกุล (nām sa kun) (noun) :: last name.
+===sā===
+  ถือสา (thūe sā) (verb) :: To mind.
+===săam===
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+  สิบสาม (sìp săam) (noun) :: thirteen
+===sàat===
+  นิรุกติศาสตร์ (níróoktì sàat) (noun) :: etymology
+===sab===
+  สับ (sab) (verb) :: To chop.
+  ศัพท์ (sab) (noun) :: A word.
+  ทรัพย์ (sab) (noun) :: A property.
+  ทรัพย์ (sab) (noun) :: wealth.
+***สับ***
+  สับ (sab) (verb) :: To chop.
+===sabu===
+  สบู่ (sabu) (noun) :: soap
+===sacot===
+  ภาษาสก็อต (paasăa sacot) (proper noun) :: The Scots language.
+===sacotlaen===
+  ประเทศสก็อตแลนด์ (prathed sacotlaen) (proper noun) :: Scotland
+===sadtru===
+  ศัตรู (sadtru) (noun) :: enemy.
+===saek===
+  แทรก (saek) (verb) :: To insert.
+===saha===
+  สหราชอาณาจักร (saha raachaaanaajak) (proper noun) :: The United Kingdom.
+===saharad===
+  สหรัฐอเมริกา (saharad americaa) (proper noun) :: The United States
+===sai===
+  ใส่ใจ (sai jai) (verb) :: To care for.
+  สนใจ (sai jai) (verb) :: To care.
+  สงสัย (song sai) (verb) :: To wonder.
+===sài===
+  ใส่ (sài) (verb) :: To put something in.
+  ใส่ (sài) (verb) :: To don.
+===sak===
+  ศักดิ (sak) (noun) :: power
+  ศักดิ์ (sak) (proper noun) :: {{given name|male}}.
+  ศักดิ์ (sak) (noun) :: power
+***ศักดิ***
+  ศักดิ (sak) (noun) :: power
+***ศักดิ์***
+  ศักดิ์ (sak) (proper noun) :: {{given name|male}}.
+  ศักดิ์ (sak) (noun) :: power
+===samaathí===
+  สมาธิ (samaathí) (noun) :: concentration
+  สมาธิ (samaathí) (noun) :: meditation
+  สมาธิ (samaathí) (noun) :: samadhi
+===samad===
+  สามารถ (samad) (adjective) :: capable
+===samai===
+  สมัย (samai) (noun) :: time
+  สมัย (samai) (noun) :: era
+===samak===
+  สมัคร (samak) (verb) :: To apply for
+***สามารถ***
+  สามารถ (samad) (adjective) :: capable
+===samud===
+  มหาสมุทร (mahā samud) (noun) :: ocean.
+  มหาสมุทร (mahā samud) (noun) :: great ocean.
+===samunprai===
+  สมุนไพร (samunprai) (noun) :: herb
+===sān===
+  สารอาหาร (sān āhān) (noun) :: nutrient
+  ไพศาล (pai sān) (adjective) :: Large.
+===sanāmbin===
+  สนามบิน (sanāmbin) (noun) :: airport
+===sāng===
+  สร้าง (sāng) (verb) :: To build.
+===sanid===
+  สนิท (sanid) (adjective) :: close
+===sǎnsakrit===
+  ภาษาสันสกฤต (paasăa sǎnsakrit) (proper noun) :: The Sanskrit language.
+===santaalii===
+  ภาษาสันตาลี (paasăa santaalii) (proper noun) :: The Santali language.
+===săo===
+  วันเสาร์ (wan săo) (noun) :: Saturday
+===sap===
+  สัปดาห์ (sap dā) (noun) :: week
+***สัปดาห์***
+  สัปดาห์ (sap dā) (noun) :: week
+===sapén===
+  ภาษาสเปน (phaasăa sapén) (proper noun) :: The Spanish language.
+***ศัพท์***
+  ศัพท์ (sab) (noun) :: A word.
+***สารานุกรม***
+  สารานุกรม (săaraanúkrom) :: encyclopedia
+***สารอาหาร***
+  สารอาหาร (sān āhān) (noun) :: nutrient
+***ศาสดา***
+  ศาสดา (sàat-sa-da) :: prophet
+***ศาสนา***
+  ศาสนา {{th-noun|tr=sàat-sà-naa}} :: religion
+***ศาสตร์***
+  ศาสตร์ (sàat) :: science, -ology
+===satri===
+  สตรี (satri) (noun) :: woman
+***ศัตรู***
+  ศัตรู (sadtru) (noun) :: enemy.
+===sawaad===
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+===sawaamii===
+  สวามี (sawaamii) (noun) :: A husband.
+===sawan===
+  สวรรค์ (sawan) (noun) :: heaven
+===sàwàtdee===
+  สวัสดี (sàwàtdee) (noun) :: safety, security
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+===sawk===
+  ศอก (sawk) (verb) :: To elbow.
+===sawn===
+  ซ่อน (sawn) (verb) :: To hide.
+  สอน (sawn) (verb) :: To teach.
+===sayaam===
+  สยาม (sayaam) (proper noun) :: Siam
+  สยาม (sayaam) (proper noun) :: Thailand
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Siam
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Thailand
+***ซบ***
+  ซบ (sob) (verb) :: To nestle.
+***สบตา***
+  สบตา (sob tā) (verb) :: To make eye contact.
+***สบู่***
+  สบู่ (sabu) (noun) :: soap
+===séb===
+  เสพ (séb) (verb) :: To smoke.
+===séd===
+  เศษ (séd) (adjective) :: A remaining of something.
+  ฝรั่งเศส (farang séd) (proper noun) :: France
+  ฝรั่งเศส (farang séd) (proper noun) :: French
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+===sedthee===
+  เศรษฐี (sedthee) (noun) :: A millionaire.
+===sěe===
+  สี (sěe) (noun) :: A color.
+  สี (sěe) (adjective) :: color.
+  สี (sěe) (verb) :: To rub.
+***เสีย***
+  เสีย (siā) (verb) :: To lose something.
+***เสียบ***
+  เสียบ (siāb) (verb) :: To stab.
+  เสียบ (siāb) (verb) :: To plug.
+  เสียบ (siāb) (verb) :: To insert.
+***เสน่ห์***
+  เสน่ห์ (sa ne) (noun) :: charming
+***เสพ***
+  เสพ (séb) (verb) :: To smoke.
+***เศรษฐี***
+  เศรษฐี (sedthee) (noun) :: A millionaire.
+***เศรษฐกิจ***
+  เศรษฐกิจ (sethakid) (noun) :: business
+***เศษ***
+  เศษ (séd) (adjective) :: A remaining of something.
+===sethakid===
+  เศรษฐกิจ (sethakid) (noun) :: business
+===sĕua===
+  เสือ (sĕua) (noun) :: A tiger.
+===sêua===
+  ผีเสื้อ (pěe sêua) (noun) :: butterfly
+===seusat===
+  ซื่อสัตย์ (seusat) (noun) :: honesty
+***เสือ***
+  เสือ (sĕua) (noun) :: A tiger.
+***สหาย***
+  สหาย (sa hāy) (noun) :: friend
+===shē===
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+===shoo===
+  ชู (shoo) (verb) :: To raise.
+***สหราชอาณาจักร***
+  สหราชอาณาจักร (saha raachaaanaajak) (proper noun) :: The United Kingdom.
+***สหรัฐอเมริกา***
+  สหรัฐอเมริกา (saharad americaa) (proper noun) :: The United States
+===sī===
+  ฤษี (rue sī) (noun) :: seer
+  ฤษี (rue sī) (noun) :: hermit
+  ฤๅษี (rue sī) (noun) :: seer
+  ฤๅษี (rue sī) (noun) :: hermit
+  ภาษี (pā sī) (noun) :: tax
+***สี***
+  สี (sěe) (noun) :: A color.
+  สี (sěe) (adjective) :: color.
+  สี (sěe) (verb) :: To rub.
+===siā===
+  เสีย (siā) (verb) :: To lose something.
+===siāb===
+  เสียบ (siāb) (verb) :: To stab.
+  เสียบ (siāb) (verb) :: To plug.
+  เสียบ (siāb) (verb) :: To insert.
+***สิบสาม***
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+  สิบสาม (sìp săam) (noun) :: thirteen
+***สิบสอง***
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+  สิบสอง (sìp sŏng) (noun) :: twelve
+***สิบเอ็ด***
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+  สิบเอ็ด (sìp èt) (noun) :: eleven
+===sii===
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+***ศีล***
+  ศีล (sin) (noun) :: precept
+  ศีล (sin) (noun) :: morality
+===silā===
+  ศิลา (silā) (noun) :: rock
+  ศิลา (silā) (noun) :: stone
+***ศิลา***
+  ศิลา (silā) (noun) :: rock
+  ศิลา (silā) (noun) :: stone
+***ศิลป์***
+  ศิลป์ (sin) (noun) :: art
+***ศิลปะ***
+  ศิลปะ (sin la pa) (noun) :: art
+===sin===
+  ศิลป์ (sin) (noun) :: art
+  ศีล (sin) (noun) :: precept
+  ศีล (sin) (noun) :: morality
+  ศิลปะ (sin la pa) (noun) :: art
+===sing===
+  สิงห์ (sing) (proper noun) :: {{given name|male}}.
+  สิงห์ (sing) (noun) :: A lion.
+  สิงห์ (sing) (noun) :: A breast.
+  ราศีสิงห์ (rāsī sing) (proper noun) :: Leo
+***สิงห์***
+  สิงห์ (sing) (proper noun) :: {{given name|male}}.
+  สิงห์ (sing) (noun) :: A lion.
+  สิงห์ (sing) (noun) :: A breast.
+***สิงหาคม***
+  สิงหาคม (singhākhom) (proper noun) :: August.
+===singhākhom===
+  สิงหาคม (singhākhom) (proper noun) :: August.
+===singto===
+  สิงโต (singto) (noun) :: A lion
+***สิงโต***
+  สิงโต (singto) (noun) :: A lion
+===singtothalay===
+  สิงโตทะเล (singtothalay) (noun) :: A sealion
+***สิงโตทะเล***
+  สิงโตทะเล (singtothalay) (noun) :: A sealion
+===sinthii===
+  ภาษาสินธี (paasăa sinthii) (proper noun) :: The Sindhi language.
+===sinthuu===
+  ภาษาสินธุ (paasăa sinthuu) (proper noun) :: The Sindhi language.
+===sìp===
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+  สิบเอ็ด (sìp èt) (noun) :: eleven
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+  สิบสาม (sìp săam) (noun) :: thirteen
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+  สิบสอง (sìp sŏng) (noun) :: twelve
+***ใส่***
+  ใส่ (sài) (verb) :: To put something in.
+  ใส่ (sài) (verb) :: To don.
+***ใส่ใจ***
+  ใส่ใจ (sai jai) (verb) :: To care for.
+***สมัคร***
+  สมัคร (samak) (verb) :: To apply for
+***สมาธิ***
+  สมาธิ (samaathí) (noun) :: concentration
+  สมาธิ (samaathí) (noun) :: meditation
+  สมาธิ (samaathí) (noun) :: samadhi
+***สมัย***
+  สมัย (samai) (noun) :: time
+  สมัย (samai) (noun) :: era
+***สมเด็จเจ้าพระยา***
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+***สมุนไพร***
+  สมุนไพร (samunprai) (noun) :: herb
+***สน***
+  สน (son) (verb) :: To care.
+***สนามบิน***
+  สนามบิน (sanāmbin) (noun) :: airport
+***สนใจ***
+  สนใจ (sai jai) (verb) :: To care.
+***ส่ง***
+  ส่ง (song) (verb) :: To send.
+  ส่ง (song) (verb) :: To deliver.
+***สงสัย***
+  สงสัย (song sai) (verb) :: To wonder.
+***สนิท***
+  สนิท (sanid) (adjective) :: close
+===so===
+  โซ่ (so) (noun) :: chain
+***โซ่***
+  โซ่ (so) (noun) :: chain
+===sob===
+  ซบ (sob) (verb) :: To nestle.
+  ศพ (sob) (noun) :: A corpse.
+  สบตา (sob tā) (verb) :: To make eye contact.
+===som===
+  ผสม (pa som) (verb) :: To mix.
+===sôm===
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===sŏmdèt===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===son===
+  สน (son) (verb) :: To care.
+===song===
+  ส่ง (song) (verb) :: To send.
+  ส่ง (song) (verb) :: To deliver.
+  สงสัย (song sai) (verb) :: To wonder.
+===sŏng===
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+  สิบสอง (sìp sŏng) (noun) :: twelve
+===soob===
+  สูบ (soob) (verb) :: To suck.
+  สูบ (soob) (verb) :: To smoke.
+===sood===
+  สูด (sood) (verb) :: To snuff.
+===sopeni===
+  โสเภณี (sopeni) (noun) :: prostitute
+***โสเภณี***
+  โสเภณี (sopeni) (noun) :: prostitute
+***ศพ***
+  ศพ (sob) (noun) :: A corpse.
+***สร้าง***
+  สร้าง (sāng) (verb) :: To build.
+***สตรี***
+  สตรี (satri) (noun) :: woman
+===su===
+  สุกร (su korn) (noun) :: pig
+===suang===
+  ทรวง (suang) (noun) :: A chest
+===sùat===
+  สวด (sùat) (verb) :: to pray
+===sub===
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+***สูบ***
+  สูบ (soob) (verb) :: To suck.
+  สูบ (soob) (verb) :: To smoke.
+***สุจิตรา***
+  สุจิตรา (sujitra) (proper noun) :: {{given name|female}}.
+  สุจิตรา (sujitra) (noun) :: A good picture.
+***สูด***
+  สูด (sood) (verb) :: To snuff.
+===sūe===
+  หางเสือเรือ (hāng sūe rūea) (noun) :: rudder
+  หางเสือเลี้ยว (hāng sūe liāw) (noun) :: rudder
+  หางเสือ (hāng sūe) (noun) :: rudder
+===suek===
+  รู้สึก (rū suek) (verb) :: To feel.
+===sujitra===
+  สุจิตรา (sujitra) (proper noun) :: {{given name|female}}.
+  สุจิตรา (sujitra) (noun) :: A good picture.
+===suk===
+  สุข (suk) (noun) :: joy
+  สุข (suk) (noun) :: delight
+  ความสุข (kwām suk) (noun) :: joy
+  ความสุข (kwām suk) (noun) :: delight
+===sùk===
+  วันศุกร์ (wan sùk) (noun) :: Friday
+***สุข***
+  สุข (suk) (noun) :: joy
+  สุข (suk) (noun) :: delight
+***สุขสันต์วันเกิด***
+  สุขสันต์วันเกิด (sòok-săn wan gèrt) :: happy birthday
+***สุกร***
+  สุกร (su korn) (noun) :: pig
+***ศึกษา***
+  ศึกษา (sèuksăa) :: to study, to learn
+===sumitra===
+  สุมิตรา (sumitra) (proper noun) :: {{given name|female}}.
+  สุมิตรา (sumitra) (noun) :: An amicable person.
+***สุมิตรา***
+  สุมิตรา (sumitra) (proper noun) :: {{given name|female}}.
+  สุมิตรา (sumitra) (noun) :: An amicable person.
+===sūn===
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+  ศูนย์ (sūn) (noun) :: center
+  ศูนย์ (sūn) (noun) :: nothingness
+  ศูนย์ (sūn) (noun) :: zero
+  ศูนย์ (sūn) (adjective) :: zero
+===sùnák===
+  สุนัข (sùnák) (noun) :: dog
+***สุนัข***
+  สุนัข (sùnák) (noun) :: dog
+***ศูนย์***
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+  ศูนย์ (sūn) (noun) :: center
+  ศูนย์ (sūn) (noun) :: nothingness
+  ศูนย์ (sūn) (noun) :: zero
+  ศูนย์ (sūn) (adjective) :: zero
+===suphan===
+  สุพรรณ (suphan) (noun) :: gold.
+***ศุภลักษณ์***
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+***สุพรรณ***
+  สุพรรณ (suphan) (noun) :: gold.
+===sùsǎan===
+  สุสาน (sùsǎan) (noun) :: cemetery, graveyard
+***สุสาน***
+  สุสาน (sùsǎan) (noun) :: cemetery, graveyard
+***ซื่อสัตย์***
+  ซื่อสัตย์ (seusat) (noun) :: honesty
+***สวามี***
+  สวามี (sawaamii) (noun) :: A husband.
+***สวัสดิ์***
+  สวัสดิ์ (sa wad) (noun) :: blessing
+***สวัสดี***
+  สวัสดี (sàwàtdee) :: hello, hi
+  สวัสดี (sàwàtdee) :: good morning, good afternoon, good evening
+  สวัสดี (sàwàtdee) :: goodbye
+  สวัสดี (sàwàtdee) (noun) :: safety, security
+***สวัสดีค่ะ***
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+***สวัสดีครับ***
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+***สวด***
+  สวด (sùat) (verb) :: to pray
+***สวรรค์***
+  สวรรค์ (sawan) (noun) :: heaven
+***ศอก***
+  ศอก (sawk) (verb) :: To elbow.
+***ซ่อม***
+  ซ่อม (verb) :: To repair.
+  ซ่อม (noun) :: {{alternative spelling of|ส้อม}}
+***ส้อม***
+  ส้อม (noun) :: fork.
+***ซ่อน***
+  ซ่อน (sawn) (verb) :: To hide.
+***สอน***
+  สอน (sawn) (verb) :: To teach.
+***สยาม***
+  สยาม (sayaam) (proper noun) :: Siam
+  สยาม (sayaam) (proper noun) :: Thailand
+***ฏ***
+  ฏ (t; taw pa tak) :: The 15th letter of the Thai alphabet
+***ต***
+  ต (t; taw tào) :: The 21st letter of the Thai alphabet
+    (All words preceded by ต)ตาตี๋ตกต้นตาล ตอตาลตำตูด ตายใต้ต้นตาล :: --
+    tā tī tok ton tān taw tān tam tūd tāi tai ton tān :: --
+    A Chinese old man falls from a palm tree. A palm tree's stump stabs him. He dies under a palm tree. :: --
+***ฒ***
+  ฒ (th; thaw pū thao) :: The 18th letter of the Thai alphabet.
+===ta===
+  ตะโกน (ta kōn) (verb) :: To yell.
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+  ตะขอ (ta kaw) (noun) :: A hook.
+===tā===
+  สบตา (sob tā) (verb) :: To make eye contact.
+***ตา***
+  ตา (taa) :: maternal grandfather
+  ตา (taa) :: eye (organ)
+  ตา (taa) :: time, turn, moment
+***ตำ***
+  ตำ (tam) (verb) :: To sting.
+===tâa===
+  ถ้า (tâa) (conjunction) :: if
+===taagài===
+  ตาไก่ (taagài) (noun) :: chicken's eye
+  ตาไก่ (taagài) (noun) :: metal eyelet, grommet
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===taatìgà===
+  ทาฐิกะ (taatìgà) (noun) :: moustache, mustache
+===tad===
+  ตัด (tad) (verb) :: To cut.
+***ตัด***
+  ตัด (tad) (verb) :: To cut.
+===tae===
+  แต่ (tae) (conjunction) :: but
+***แต่***
+  แต่ (tae) (conjunction) :: but
+===taek===
+  แตก (taek) (verb) :: To break.
+***แตก***
+  แตก (taek) (verb) :: To break.
+***แตงโม***
+  แตงโม (dtaeng moh) :: watermelon
+***ตำหนิ***
+  ตำหนิ (tam ni) (verb) :: To blame.
+===tai===
+  ตาย (tai) (verb) :: to die
+  พริกไทย (prik tai) (noun) :: pepper
+  รำไทย (ram tai) (noun) :: Thai dance
+  อ่าวไทย (āw tai) (proper noun) :: Gulf of Thailand
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+  ชาวไทย (chao tai) (proper noun) :: a Thai person
+  ชาวไทย (chao tai) (proper noun) :: Thai people
+===Tai===
+  ไทย (Tai) (proper noun) :: Thailand
+  ไทย (Tai) (adjective) :: Thai
+===tāi===
+  ใต้ (tāi) (preposition) :: under
+===tāk===
+  ตาก (tāk) (verb) :: To dry.
+***ตาก***
+  ตาก (tāk) (verb) :: To dry.
+***ตะเกียบ***
+  ตะเกียบ (dtàgìap) (noun) :: chopsticks
+***ตะขอ***
+  ตะขอ (ta kaw) (noun) :: A hook.
+***ตะฃอ***
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+***ตาไก่***
+  ตาไก่ (taagài) (noun) :: chicken's eye
+  ตาไก่ (taagài) (noun) :: metal eyelet, grommet
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+***ตะโกน***
+  ตะโกน (ta kōn) (verb) :: To yell.
+***ตะกร้อ***
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+***ตาล***
+  ตาล (tān) (noun) :: A palm tree.
+===tam===
+  ตำ (tam) (verb) :: To sting.
+  ตำหนิ (tam ni) (verb) :: To blame.
+===tām===
+  ตาม (tām) (verb) :: To follow.
+  ถาม (tām) (verb) :: To ask.
+***ตาม***
+  ตาม (tām) (verb) :: To follow.
+===tamin===
+  ภาษาทมิฬ (paasăa tamin) (proper noun) :: The Tamil language.
+===tān===
+  ตาล (tān) (noun) :: A palm tree.
+  ต้นตาล (ton tān) (noun) :: A palm tree
+===tăng===
+  ถัง (tăng) (noun) :: bucket
+***ตั้งใจ***
+  ตั้งใจ (tangjai) (verb) :: To intend.
+===tangjai===
+  ตั้งใจ (tangjai) (verb) :: To intend.
+===tànŏn===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===taw===
+  ตอ (taw) (noun) :: A stump.
+===tawb===
+  ตอบ (tawb) (verb) :: To answer.
+===ตัวนี้พูดเก่ง===
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+===tawtawn===
+  ต่อต้าน (tawtawn) (verb) :: To resist
+***ตัวอักษร***
+  ตัวอักษร (dtua àksŏn) :: alphabet
+***ตาย***
+  ตาย (tai) (verb) :: to die
+***ตบ***
+  ตบ (tob) (verb) :: to slap
+***ตด***
+  ตด (tod) (verb) :: to fart
+===té===
+  เตะ (té) (verb) :: To kick.
+***เตะ***
+  เตะ (té) (verb) :: To kick.
+===teeluuguu===
+  ภาษาเตลูกู (paasăa teeluuguu) (proper noun) :: The Telugu language.
+===teewádaa===
+  เทวดา (teewádaa) (noun) :: deity, male angel
+===ten===
+  เต้น (ten) (verb) :: To dance.
+***เต้น***
+  เต้น (ten) (verb) :: To dance.
+===têp===
+  กรุงเทพ (groong têp) (proper noun) :: Bangkok, Krungthep
+***ฐ***
+  ฐ (th; thaw thān) :: The 16th letter of the Thai alphabet
+***ฑ***
+  ฑ (th; thaw mon thō) :: The 17th letter of the Thai alphabet.
+***ถ***
+  ถ (th; thaw thung) :: The 22nd letter of the Thai alphabet
+***ท***
+  ท (th; thaw tháhǎan) :: The 23rd letter of the Thai alphabet.
+***ธ***
+  ธ (th; thaw thong) :: The 24th letter of the Thai alphabet.
+  ธ (tha) (pronoun) :: {archaic} he, she
+===tha===
+  ธ (tha) (pronoun) :: {archaic} he, she
+  ธนู (tha nū) (noun) :: bow
+  ทวาร (tha wān) (noun) :: door
+***ถ้า***
+  ถ้า (tâa) (conjunction) :: if
+***ท้า***
+  ท้า (thaa) (verb) :: To defy
+***ทำ***
+  ทำ (tham) (verb) :: To make.
+  ทำ (tham) (verb) :: To observe.
+  ทำ (tham) (verb) :: To act.
+  ทำ (tham) (verb) :: To do.
+===thaa===
+  ท้า (thaa) (verb) :: To defy
+===thàak===
+  ทาก (thàak) (noun) :: leech
+===thaan===
+  ทาน (thaan) (verb) :: to eat
+  ทาน (thaan) (noun) :: donation
+===thǎan===
+  ฐาน (thǎan) (noun) :: a base
+===thāeng===
+  แทง (thāeng) (verb) :: To stab.
+***แทง***
+  แทง (thāeng) (verb) :: To stab.
+***แทรก***
+  แทรก (saek) (verb) :: To insert.
+===thahan===
+  ทหาร (thahan) (noun) :: soldier
+===ทำให้คนตาบอด===
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===thai===
+  ภาษาไทย (phaasăa thai) (proper noun) :: the Thai language
+  คนไทย (khon thai) (noun) :: Thai person
+  คนไทย (khon thai) (noun) :: Thai people
+  เมืองไทย (meuang thai) (proper noun) :: Thailand
+===Thai===
+  เร็ว (reo) (adverb) Sc=Thai :: suddenly
+  ประเทศไทย (Prathēt Thai) (proper noun) :: Kingdom of Thailand
+  ผัดไทย (Pad Thai) (noun) :: pad thai
+===thak===
+  ถัก (thak) (verb) :: To knit.
+===thāk===
+  ถาก (thāk) (verb) :: to scrape
+***ถัก***
+  ถัก (thak) (verb) :: To knit.
+***ถาก***
+  ถาก (thāk) (verb) :: to scrape
+***ทาก***
+  ทาก (thàak) (noun) :: leech
+***ทะเล***
+  ทะเล (tháleh) (noun) :: sea
+===tháleh===
+  ทะเล (tháleh) (noun) :: sea
+===tham===
+  ทำ (tham) (verb) :: To make.
+  ทำ (tham) (verb) :: To observe.
+  ทำ (tham) (verb) :: To act.
+  ทำ (tham) (verb) :: To do.
+***ถาม***
+  ถาม (tām) (verb) :: To ask.
+***ฐาน***
+  ฐาน (thǎan) (noun) :: a base
+***ทาน***
+  ทาน (thaan) (verb) :: to eat
+  ทาน (thaan) (noun) :: donation
+***ท่าน***
+  ท่าน :: You.
+===thanaakhaan===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+***ทำนาย***
+  ทำนาย (thom nāy) (verb) :: To prognosticate.
+***ถัง***
+  ถัง (tăng) (noun) :: bucket
+===thanū===
+  ราศีธนู (rāsī thanū) (proper noun) :: Sagittarius
+===thanwaakhom===
+  ธันวาคม (thanwaakhom) (proper noun) :: December
+***ธันวาคม***
+  ธันวาคม (thanwaakhom) (proper noun) :: December
+===thathaai===
+  ท้าทาย (thathaai) (verb) :: To defy
+***ท้าทาย***
+  ท้าทาย (thathaai) (verb) :: To defy
+***ทาฐิกะ***
+  ทาฐิกะ (taatìgà) (noun) :: moustache, mustache
+===thavad===
+  ธวัช (thavad) (noun) :: flag
+  ธวัช (thavad) (noun) :: sign
+===thawd===
+  ทอด (thawd) (verb) :: To fry.
+===thawng===
+  ท่อง (thawng) (verb) :: To recite.
+===thayad===
+  ทายาท (thayad) (noun) :: heir
+***ทายาท***
+  ทายาท (thayad) (noun) :: heir
+===thè===
+  เทวะ (thè wa) (noun) :: a deity
+***เทียน***
+  เทียน (tian) (noun) :: candle
+===thèp===
+  เทพ (thèp) (noun) :: a deity
+***เทพ***
+  เทพ (thèp) (noun) :: a deity
+***เทพี***
+  เทพี (thèpī) (noun) :: a female deity
+  เทพี (thèpī) (noun) :: a goddess
+===thèpī===
+  เทพี (thèpī) (noun) :: a female deity
+  เทพี (thèpī) (noun) :: a goddess
+===tʰer===
+  เธอ (tʰer) (pronoun) :: you
+  เธอ (tʰer) (pronoun) :: she
+***เทศนา***
+  เทศนา (têt-sà-naa) :: to preach
+  เทศนา (têt-sà-naa) :: to give a sermon
+***เทวะ***
+  เทวะ (thè wa) (noun) :: a deity
+***เทวดา***
+  เทวดา (teewádaa) (noun) :: deity, male angel
+===thèwī===
+  เทวี (thèwī) (noun) :: a female deity
+  เทวี (thèwī) (noun) :: a goddess
+***เทวี***
+  เทวี (thèwī) (noun) :: a female deity
+  เทวี (thèwī) (noun) :: a goddess
+***เธอ***
+  เธอ (tʰer) (pronoun) :: you
+  เธอ (tʰer) (pronoun) :: she
+***ทหาร***
+  ทหาร (thahan) (noun) :: soldier
+===thī===
+  ด้วยเหตุที่ (duay hēt thī) (conjunction) :: for
+===thiāb===
+  เปรียบเทียบ (piāb thiāb) (verb) :: To compare.
+===thing===
+  ทิ้ง (thing) (verb) :: to dispose
+  ทิ้ง (thing) (verb) :: to throw away
+***ทิ้ง***
+  ทิ้ง (thing) (verb) :: to dispose
+  ทิ้ง (thing) (verb) :: to throw away
+***ทิพย์***
+  ทิพย์ (tip) (noun) :: divine
+***ไทย***
+  ไทย (Tai) (proper noun) :: Thailand
+  ไทย (Tai) (adjective) :: Thai
+***ถ่ม***
+  ถ่ม (thom) (verb) :: to spit
+***ธนาคาร***
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+***ธง***
+  ธง (thong) (noun) :: flag
+===ถนนใหญ่===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+***ธนู***
+  ธนู (tha nū) (noun) :: bow
+===thō===
+  โทร (thō) (verb) :: To dial.
+===thōd===
+  ถอด (thōd) (verb) :: To doff.
+===thok===
+  ตกลง (thok long) (verb) :: To agree.
+===thom===
+  ถ่ม (thom) (verb) :: to spit
+  ทำนาย (thom nāy) (verb) :: To prognosticate.
+===thong===
+  ธง (thong) (noun) :: flag
+===thoo===
+  ถู (thoo) (verb) :: To mop.
+  ถู (thoo) (verb) :: To rub.
+===thookhrii===
+  ภาษาโฑครี (paasăa thookhrii) (proper noun) :: The Dogri language.
+***โทร***
+  โทร (thō) (verb) :: To dial.
+===thorāthāt===
+  โทรทัศน์ (thorāthāt) (noun) :: television (medium), TV
+***โทรทัศน์***
+  โทรทัศน์ (thorāthāt) (noun) :: television (medium), TV
+***โทษะ***
+  โทษะ (thosa) (noun) :: blame.
+  โทษะ (thosa) (noun) :: mistake.
+===thosa===
+  โทษะ (thosa) (noun) :: blame.
+  โทษะ (thosa) (noun) :: mistake.
+***ทรัพย์***
+  ทรัพย์ (sab) (noun) :: A property.
+  ทรัพย์ (sab) (noun) :: wealth.
+***ทรวง***
+  ทรวง (suang) (noun) :: A chest
+***ถู***
+  ถู (thoo) (verb) :: To mop.
+  ถู (thoo) (verb) :: To rub.
+===thūd===
+  ทูต (thūd) (noun) :: A messenger who is a deity.
+  ยมทูต (thūd) (noun) :: A messenger of death.
+===thūe===
+  ถือ (thūe) (verb) :: To hold.
+  ถือสา (thūe sā) (verb) :: To mind.
+===thueng===
+  ถึงอย่างนั้น (thueng yāng nan) (conjunction) :: yet
+===thuk===
+  ความทุกข์ (kwām thuk) (noun) :: sadness
+===thūk===
+  ถูก (thūk) (adjective) :: cheap
+  ถูก (thūk) (noun) :: correct
+  ถูก (thūk) (verb) :: to touch
+  ถูก (thūk) (verb) :: to agree
+  ถูก (thūk) (verb) :: (passive voice marker)
+***ถูก***
+  ถูก (thūk) (adjective) :: cheap
+  ถูก (thūk) (noun) :: correct
+  ถูก (thūk) (verb) :: to touch
+  ถูก (thūk) (verb) :: to agree
+  ถูก (thūk) (verb) :: (passive voice marker)
+***ทุกๆ***
+  ทุกๆ (tóok-tóok) :: every, each, each one, all.
+***ทุกทุก***
+  ทุกทุก (tóok-tóok) :: every, each, each one, all.
+***ถุง***
+  ถุง (tŏong) :: bag
+***ถึงอย่างนั้น***
+  ถึงอย่างนั้น (thueng yāng nan) (conjunction) :: yet
+***ถุงยาง***
+  ถุงยาง (tŏong yaang) :: condom
+===thurakid===
+  ธุรกิจ (thurakid) (noun) :: business
+***ธุรกิจ***
+  ธุรกิจ (thurakid) (noun) :: business
+***ทูต***
+  ทูต (thūd) (noun) :: A messenger who is a deity.
+***ถือ***
+  ถือ (thūe) (verb) :: To hold.
+***ถือสา***
+  ถือสา (thūe sā) (verb) :: To mind.
+===tʰʊ===
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+***ธวัช***
+  ธวัช (thavad) (noun) :: flag
+  ธวัช (thavad) (noun) :: sign
+***ทวาร***
+  ทวาร (tha wān) (noun) :: door
+***ถอด***
+  ถอด (thōd) (verb) :: To doff.
+***ทอด***
+  ทอด (thawd) (verb) :: To fry.
+***ท่อง***
+  ท่อง (thawng) (verb) :: To recite.
+***ทองคำ***
+  ทองคำ (tongkam) (noun) :: gold (element)
+===ti===
+  ภิตติ (pid ti) (noun) :: wall
+===tī===
+  ตี (tī) (verb) :: To hit.
+  ตี๋ (tī) (noun) :: A Chinese man.
+  ตี๋ (tī) (noun) :: A man.
+***ตี***
+  ตี (tī) (verb) :: To hit.
+***ตี๋***
+  ตี๋ (tī) (noun) :: A Chinese man.
+  ตี๋ (tī) (noun) :: A man.
+===tian===
+  เทียน (tian) (noun) :: candle
+===tip===
+  ทิพย์ (tip) (noun) :: divine
+***ใต้***
+  ใต้ (tāi) (preposition) :: under
+***ตก***
+  ตก (tok) (verb) :: To fall.
+***ตกลง***
+  ตกลง (thok long) (verb) :: To agree.
+***ต้ม***
+  ต้ม (tom) (verb) :: To boil.
+***ต้นไม้***
+  ต้นไม้ (tònmai) (noun) :: tree
+***ต้นตาล***
+  ต้นตาล (ton tān) (noun) :: A palm tree
+===tō===
+  โต้ (tō) (verb) :: To counter.
+  โต้ (tō) (verb) :: To respond.
+  โต้คลื่น (tō kluen) (verb) :: To surf.
+***โต้***
+  โต้ (tō) (verb) :: To counter.
+  โต้ (tō) (verb) :: To respond.
+===tob===
+  ตบ (tob) (verb) :: to slap
+===tod===
+  ตด (tod) (verb) :: to fart
+===toe===
+  คอมพิวเตอร์ (khom piu toe) (noun) :: computer
+===tok===
+  ตก (tok) (verb) :: To fall.
+***โต้คลื่น***
+  โต้คลื่น (tō kluen) (verb) :: To surf.
+===tom===
+  ต้ม (tom) (verb) :: To boil.
+===ton===
+  ต้นตาล (ton tān) (noun) :: A palm tree
+===tongkam===
+  ทองคำ (tongkam) (noun) :: gold (element)
+===tònmai===
+  ต้นไม้ (tònmai) (noun) :: tree
+===toy===
+  ต่อย (toy) (verb) :: To punch.
+===tūd===
+  ตูด (tūd) (noun) :: {{context|informal}} A butt.
+***ตูด***
+  ตูด (tūd) (noun) :: {{context|informal}} A butt.
+***ตุ๊กๆ***
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+***ตุ๊กตุ๊ก***
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+***ตุลาคม***
+  ตุลาคม (tulākhom) (proper noun) :: October.
+===tulākhom===
+  ตุลาคม (tulākhom) (proper noun) :: October.
+***ตุลย์***
+  ตุลย์ (tun) (noun) :: A balance.
+===tun===
+  ตุลย์ (tun) (noun) :: A balance.
+  ราศีตุลย์ (rāsī tun) (proper noun) :: Libra
+***ตอ***
+  ตอ (taw) (noun) :: A stump.
+***ตอบ***
+  ตอบ (tawb) (verb) :: To answer.
+***ต่อต้าน***
+  ต่อต้าน (tawtawn) (verb) :: To resist
+***ต่อย***
+  ต่อย (toy) (verb) :: To punch.
+===ura===
+  อุรา (ura) (noun) :: chest
+===uthai===
+  อุทัย (uthai) (proper noun) :: {{given name|male}}.
+  อุทัย (uthai) (proper noun) :: {{given name|female}}.
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+===uuduu===
+  ภาษาอูรดู (paasăa uuduu) (proper noun) :: The Urdu language.
+***ฤ***
+  ฤ (r; reu) :: A letter of the Thai alphabet.
+===vanorn===
+  วานร (vanorn) (noun) :: monkey
+***ฤดู***
+  ฤดู {{th-noun|tr=reudoo}} :: A season.
+===vet===
+  เวทย์ (vet) (noun) :: knowledge
+===vinathi===
+  วินาที (vinathi) (noun) :: second
+===vivaa===
+  วิวาห์ (vivaa) (noun) :: A wedding.
+  วิวาห์ (vivaa) (noun) :: marriage.
+***ฤๅ***
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฤๅ (reu) (conjunction) :: or
+  ฤๅ (reu) (pronoun) :: {{context|interrogative}} what, which
+  ฤๅ (reu) (particle) :: {{context|formal|poetic|archaic}} not, no
+  ฤๅ (reu) (particle) :: question particle
+***ฤๅษี***
+  ฤๅษี (rue sī) (noun) :: seer
+  ฤๅษี (rue sī) (noun) :: hermit
+***ฤกษ์***
+  ฤกษ์ (rerk) (adjective) :: auspicious
+***ฤษี***
+  ฤษี (rue sī) (noun) :: seer
+  ฤษี (rue sī) (noun) :: hermit
+***ฤทัย***
+  ฤทัย (reuthai) (noun) :: A heart .
+***ฤทธิ์***
+  ฤทธิ์ (rid) (noun) :: power.
+***ว***
+  ว (w, v; waw waen) :: The 37th letter of the Thai alphabet
+===wa===
+  คารวะ (cā ra wa) (noun) :: respect
+  เทวะ (thè wa) (noun) :: a deity
+===wā===
+  วาจา (wā jā) (noun) :: word
+  เพื่อว่า (puea wā) (conjunction) :: so
+  เพราะว่า (pro wā) (conjunction) :: for
+***วะ***
+  วะ (wá) :: ending particle (impolite)
+***ว่ะ***
+  ว่ะ (wâ) :: ending particle (impolite)
+===waala===
+  วาฬ (waan, waala) (noun) :: whale
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===waan===
+  วาฬ (waan, waala) (noun) :: whale
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===wăan===
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+***วาจา***
+  วาจา (wā jā) (noun) :: word
+***วัชพืช***
+  วัชพืช (wát-pêut) (noun) :: weed
+===wad===
+  สวัสดิ์ (sa wad) (noun) :: blessing
+***วัด***
+  วัด (wát) :: a wat: a type of buddhist temple
+  วัด (wát) (verb) :: to use
+  วัด (wát) (verb) :: to measure
+===wai===
+  ไวน์ (wai) (noun) :: wine
+  ไว้ใจ (wai jai) (verb) :: To trust.
+===wāi===
+  ว่าย (wāi) (verb) :: To swim.
+  ว่ายนํ้า (wāi nām) (verb) :: To swim.
+***วาฬ***
+  วาฬ (waan, waala) (noun) :: whale
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===wálee===
+  วลี (wálee) (proper noun) :: {{given name|female}}.
+  วลี (wálee) (noun) :: phrase
+===walrus===
+  วอลรัส (walrus) (noun) :: A walrus
+===wan===
+  วันพุธ (wan pút) (noun) :: Wednesday
+  วันอาทิตย์ (wan aathít) (noun) :: Sunday
+  วันจันทร์ (wan jan) (noun) :: Monday
+  วันอังคาร (wan angkaan) (noun) :: Tuesday
+  วันพฤหัสบดี (wan príhàtbàdee) (noun) :: {formal} Thursday
+  วันศุกร์ (wan sùk) (noun) :: Friday
+  วันเสาร์ (wan săo) (noun) :: Saturday
+  วันพฤหัส (wan príhàt) (noun) :: {informal} Thursday
+  ปลาวาฬ (pla wan) (noun) :: whale
+===wān===
+  ทวาร (tha wān) (noun) :: door
+***วัน***
+  วัน (wan) :: day
+  วัน (wan) :: daytime
+***วันจันทร์***
+  วันจันทร์ (wan jan) (noun) :: Monday
+===wang===
+  หวัง (wang) (verb) :: To hope.
+===wāng===
+  วาง (wāng) (verb) :: To lay something down.
+***วาง***
+  วาง (wāng) (verb) :: To lay something down.
+***วันพุธ***
+  วันพุธ (wan pút) (noun) :: Wednesday
+***วันพฤหัส***
+  วันพฤหัส (wan príhàt) (noun) :: {informal} Thursday
+***วันพฤหัสบดี***
+  วันพฤหัสบดี (wan príhàtbàdee) (noun) :: {formal} Thursday
+***วานร***
+  วานร (vanorn) (noun) :: monkey
+***วันเสาร์***
+  วันเสาร์ (wan săo) (noun) :: Saturday
+***วันศุกร์***
+  วันศุกร์ (wan sùk) (noun) :: Friday
+***วันอังคาร***
+  วันอังคาร (wan angkaan) (noun) :: Tuesday
+***วันอาทิตย์***
+  วันอาทิตย์ (wan aathít) (noun) :: Sunday
+===wát===
+  วัด (wát) (verb) :: to use
+  วัด (wát) (verb) :: to measure
+  วัชพืช (wát-pêut) (noun) :: weed
+***วัว***
+  วัว (wua) (noun) :: a cow
+***ว่าย***
+  ว่าย (wāi) (verb) :: To swim.
+***ว่ายนํ้า***
+  ว่ายนํ้า (wāi nām) (verb) :: To swim.
+===weél===
+  เวลส์ (weél) (proper noun) :: Wales
+***เวียงจันทน์***
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+===wela===
+  เวลา (wela) (noun) :: time
+***เวลา***
+  เวลา (wela) (noun) :: time
+***เวลส์***
+  เวลส์ (weél) (proper noun) :: Wales
+***เวทย์***
+  เวทย์ (vet) (noun) :: knowledge
+===wi===
+  วิหก (wi hok) (noun) :: bird
+===wī===
+  กวี (ka wī) (noun) :: poem
+===wiaadnnaam===
+  ภาษาเวียดนาม (paasăa wiaadnnaam) (proper noun) :: The Vietnamese language.
+===wian===
+  หมุนเวียน (mun wian) (verb) :: To circulate.
+===wiang===
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+***วิเชียรมาศ***
+  วิเชียรมาศ (wichian maad) (noun) :: Siamese cat.
+===wichian===
+  วิเชียรมาศ (wichian maad) (noun) :: Siamese cat.
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+***ไว้ใจ***
+  ไว้ใจ (wai jai) (verb) :: To trust.
+***วิหาร***
+  วิหาร (wíhăan) :: temple
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+***วิหก***
+  วิหก (wi hok) (noun) :: bird
+***วิหค***
+  วิหค (wihok) (noun) :: bird
+===wihok===
+  วิหค (wihok) (noun) :: bird
+***ไวน์***
+  ไวน์ (wai) (noun) :: wine
+===winaad===
+  วินาศ (winaad) (adjective) :: ruin.
+  วินาศ (winaad) (adjective) :: destroyed.
+***วินาศ***
+  วินาศ (winaad) (adjective) :: ruin.
+  วินาศ (winaad) (adjective) :: destroyed.
+***วินาที***
+  วินาที (vinathi) (noun) :: second
+===wîng===
+  วิ่ง (wîng) (verb) :: To run.
+***วิ่ง***
+  วิ่ง (wîng) (verb) :: To run.
+===wit===
+  ชีวิต (chē wit) (noun) :: life
+***วิวาห์***
+  วิวาห์ (vivaa) (noun) :: A wedding.
+  วิวาห์ (vivaa) (noun) :: marriage.
+***วลี***
+  วลี (wálee) (proper noun) :: {{given name|female}}.
+  วลี (wálee) (noun) :: phrase
+===wua===
+  วัว (wua) (noun) :: a cow
+  เยี่ยววัว (yîeow wua) (noun) :: cow's urine
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+***วอลรัส***
+  วอลรัส (walrus) (noun) :: A walrus
+***อ***
+  อ (a; āw āng) :: The 43rd letter of the Thai alphabet
+***อา***
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+***อำ***
+  อำ (am) (verb) :: To possess.
+***อาจารย์***
+  อาจารย์ (aajaan) :: teacher, schoolteacher, post-secondary teacher
+  อาจารย์ (aajaan) :: instructor, senior instructor
+  อาจารย์ (aajaan) :: tutor
+  อาจารย์ (aajaan) :: master
+  อาจารย์ (aajaan) :: pedagogue
+  อาจารย์ (aajaan) :: lecturer
+***อัด***
+  อัด (ad) (verb) :: To hit.
+  อัด (ad) (verb) :: To record.
+***อาหาร***
+  อาหาร (aa-hăan) (noun) :: food
+***อากาศ***
+  อากาศ (ā kād) (noun) :: air
+***อัคนี***
+  อัคนี (akkhanii) (proper noun) :: Agni
+  อัคนี (akkhanii) (proper noun) :: {{given name|male}}.
+  อัคนี (akkhanii) (noun) :: fire
+***อัมพร***
+  อัมพร (ampʰawn) (proper noun) :: {{given name|female}}.
+  อัมพร (ampʰawn) (noun) :: sky
+***อ่าน***
+  อ่าน (ān) (verb) :: To read.
+***อังกฤษ***
+  อังกฤษ (angkrit) (noun) :: England
+  อังกฤษ (angkrit) (noun) :: British
+  อังกฤษ (angkrit) (noun) :: English
+***อัณฑะ***
+  อัณฑะ (antha) (noun) :: testicle
+***อำนวย***
+  อำนวย (am nuay) (verb) :: To give.
+***อะไร***
+  อะไร (àrai) :: {interrogative} what?
+  อะไร (àrai) :: something, anything
+  อะไร (àrai) :: whatever
+***อะไรวะ***
+  อะไรวะ (àrai wá) :: what the heck? (impolite)
+***อัศจรรย์***
+  อัศจรรย์ (asajan) (adjective) :: marvelous
+***อ่าวไทย***
+  อ่าวไทย (āw tai) (proper noun) :: Gulf of Thailand
+***อบ***
+  อบ (aab) (verb) :: to bake
+***อด***
+  อด (od) (verb) :: To shun.
+***อดีต***
+  อดีต (adiit) (noun) :: past
+***เอียง***
+  เอียง (iang) (verb) :: to tilt
+***ไอ***
+  ไอ (ai) (verb) :: To cough.
+***อิจฉา***
+  อิจฉา (id chā) (verb) :: envy
+***อีก***
+  อีก (èek) (adverb) :: again
+***อิ่ม***
+  อิ่ม (ìm) (noun) :: full
+***อม***
+  อม (om) (verb) :: To hold something in one's mouth.
+***องค์จาตุคามรามเทพ***
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+***โอ่ง***
+  โอ่ง (ōng) (noun) :: A water jar.
+  โอ่ง (ōng) (noun) :: A gigantic jar.
+***อรุณ***
+  อรุณ (arun) (proper noun) :: {{given name|male}}.
+  อรุณ (arun) (noun) :: morning
+***อรุณสวัสดิ์***
+  อรุณสวัสดิ์ (àroon sàwàt) :: good morning
+***อธิบาย***
+  อธิบาย (/ɑtʰɪbɑːj/) (verb) :: To explain.
+***อุรา***
+  อุรา (ura) (noun) :: chest
+***อุทัย***
+  อุทัย (uthai) (proper noun) :: {{given name|male}}.
+  อุทัย (uthai) (proper noun) :: {{given name|female}}.
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+***อวด***
+  อวด (āud) (verb) :: to gloat
+***ออก***
+  ออก (awk) (verb) :: To exit.
+***ออกกำลังกาย***
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+***ออสเตรเลีย***
+  ออสเตรเลีย (ààwtdraelia) (adjective) :: Australian
+  ออสเตรเลีย (ààwtdraelia) (proper noun) :: Australia
+***อย่า***
+  อย่า (yàa) (contraction) :: don't
+  อย่า (yàa) (verb) :: To divorce.
+***อยาก***
+  อยาก (/jɑːg/) (verb) :: To want.
+***อยู่***
+  อยู่ (yū) (verb) :: To dwell.
+***ญ***
+  ญ (y, ñ; yaw ying) :: The 13th letter of the Thai alphabet
+***ย***
+  ย (y; yaw yak) :: The 34th letter of the Thai alphabet
+===yā===
+  กันยา (kan yā) (noun) :: girl
+  กันย์ (kan yā) (noun) :: girl
+***ย่า***
+  ย่า (yâa) (noun) :: paternal grandmother
+***ยำ***
+  ยำ (yam) (noun) :: Salad.
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+===yàa===
+  อย่า (yàa) (contraction) :: don't
+  อย่า (yàa) (verb) :: To divorce.
+===yâa===
+  ย่า (yâa) (noun) :: paternal grandmother
+===yaai===
+  ยาย (yaai) (noun) :: maternal grandmother
+===yaao===
+  ยาว (yaao) (adjective) :: long
+===yài===
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+  ใหญ่ (yài) (verb) :: to be major, to be extensive, to be sizeable
+===yāi===
+  ขยาย (kha yāi) (verb) :: To exaggerate.
+===yak===
+  ยักษ์ (yak) (noun) :: A giant
+  ยักษ์ (yak) (noun) :: An ogre
+***ยักษ์***
+  ยักษ์ (yak) (noun) :: A giant
+  ยักษ์ (yak) (noun) :: An ogre
+===yam===
+  ยำ (yam) (noun) :: Salad.
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+  ยาม (yam) (noun) :: time
+  ยาม (yam) (noun) :: security guard
+***ยาม***
+  ยาม (yam) (noun) :: time
+  ยาม (yam) (noun) :: security guard
+===yāng===
+  ย่าง (yāng) (verb) :: To barbecue.
+  ถึงอย่างนั้น (thueng yāng nan) (conjunction) :: yet
+***ยาง***
+  ยาง (yaang) :: egret, bittern
+  ยาง (yaang) :: resin
+  ยาง (yaang) :: tire, rubber
+***ย่าง***
+  ย่าง (yāng) (verb) :: To barbecue.
+===yao===
+  เขย่า (kha yao) (verb) :: To shake.
+===yāt===
+  ญาติ (yāt) (noun) :: relative
+***ญาติ***
+  ญาติ (yāt) (noun) :: relative
+***ยาว***
+  ยาว (yaao) (adjective) :: long
+===yawm===
+  ยอม (yawm) (verb) :: To surrender.
+***ยาย***
+  ยาย (yaai) (noun) :: maternal grandmother
+===yéd===
+  เย็ด (yéd) (verb) :: {vulgar} to fuck
+***เย็ด***
+  เย็ด (yéd) (verb) :: {vulgar} to fuck
+===yêe===
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+***เยี่ยววัว***
+  เยี่ยววัว (yîeow wua) (noun) :: cow's urine
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===yen===
+  เย็น (yen) (adjective) :: cold, cool
+  เย็น (yen) (noun) :: coolness
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+  เย็น (yen) (noun) :: dusk
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+  เย็น (yen) (verb) :: to relax
+***เย็น***
+  เย็น (yen) (adjective) :: cold, cool
+  เย็น (yen) (noun) :: coolness
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+  เย็น (yen) (noun) :: dusk
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+  เย็น (yen) (verb) :: to relax
+===เยอะ===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===yîeow===
+  เยี่ยววัว (yîeow wua) (noun) :: cow's urine
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===yii===
+  ญี่ปุ่น (yii pun, ñiipun) (proper noun) :: Japan
+===yik===
+  หยิก (yik) (verb) :: to pinch
+  หยิก (yik) (adjective) :: curly
+***ยิ้ม***
+  ยิ้ม {{th-verb|tr=yim}} :: to smile
+===ying===
+  หญิง (ying) (noun) :: female
+===yĭng===
+  หญิงชาติชั่ว (yĭng châat chûa) (noun) :: {vulgar} slut
+***ญี่ปุ่น***
+  ญี่ปุ่น (yii pun, ñiipun) (proper noun) :: Japan
+***ยมทูต***
+  ยมทูต (thūd) (noun) :: A messenger of death.
+===yù===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===yū===
+  อยู่ (yū) (verb) :: To dwell.
+===yuak===
+  พริกหยวก (prik yuak) (noun) :: bell pepper
+===yuan===
+  เปลญวน (bplay yuan) (noun) :: hammock
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+===yud===
+  หยุด (yud) (verb) :: To stop.
+===yūen===
+  ยืน (yūen) (verb) :: To stand.
+===yúh===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===yuk===
+  ยุค (yuk) (noun) :: age
+***ยุค***
+  ยุค (yuk) (noun) :: age
+***ยืน***
+  ยืน (yūen) (verb) :: To stand.
+***ญวน***
+  ญวน (proper noun), yuan, ñuan :: Vietnam
+***ยอม***
+  ยอม (yawm) (verb) :: To surrender.
+
+Index: EN EN->TH
+===0===
+  ๐ (ศูนย์, súún) :: 0 (zero)
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+===๐===
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+===00===
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===1===
+  ๑ (หนึ่ง, nèung) :: 1 (one)
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+===๑===
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+===10===
+  ๑๐ (สิบ, sìp) :: 10 (ten)
+===๑๐๐๐๐===
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+===11===
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+===๑๑===
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+===11th===
+  ซ (s; saw sō) :: The 11th letter of the Thai alphabet
+===12===
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+===๑๒===
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+===12th===
+  ฌ (ch, sh; chaw kachoe) :: The 12th letter of the Thai alphabet.
+===13===
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+===๑๓===
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+===13th===
+  ญ (y, ñ; yaw ying) :: The 13th letter of the Thai alphabet
+===14th===
+  ฎ (d; daw cha dā) :: The 14th letter of the Thai alphabet.
+===15th===
+  ฏ (t; taw pa tak) :: The 15th letter of the Thai alphabet
+===16th===
+  ฐ (th; thaw thān) :: The 16th letter of the Thai alphabet
+===17th===
+  ฑ (th; thaw mon thō) :: The 17th letter of the Thai alphabet.
+===18th===
+  ฒ (th; thaw pū thao) :: The 18th letter of the Thai alphabet.
+===19th===
+  ณ (n; naw nēn) :: The 19th letter of the Thai alphabet
+===2===
+  ๒ (สอง, sááwng) :: 2 (two)
+===20th===
+  ด (d; daw dek) :: The 20th letter of theThai alphabet
+===21st===
+  ต (t; taw tào) :: The 21st letter of the Thai alphabet
+    (All words preceded by ต)ตาตี๋ตกต้นตาล ตอตาลตำตูด ตายใต้ต้นตาล :: --
+    tā tī tok ton tān taw tān tam tūd tāi tai ton tān :: --
+    A Chinese old man falls from a palm tree. A palm tree's stump stabs him. He dies under a palm tree. :: --
+===22nd===
+  ถ (th; thaw thung) :: The 22nd letter of the Thai alphabet
+===23rd===
+  ท (th; thaw tháhǎan) :: The 23rd letter of the Thai alphabet.
+===24th===
+  ธ (th; thaw thong) :: The 24th letter of the Thai alphabet.
+===25th===
+  น (n; naw nū) :: The 25th letter of the Thai alphabet
+===26th===
+  บ (b; baw bai máai) :: The 26th letter of the Thai alphabet.
+===27th===
+  ป (p; paw plaa) :: The 27th letter of the Thai alphabet.
+===28th===
+  ผ (p, ph; paw pueng) :: The 28th letter of the Thai alphabet
+===29th===
+  ฝ (f; faw fā) :: The 29th letter of the Thai alphabet
+===3===
+  ๓ (สาม, săam) :: 3 (three)
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===30th===
+  พ (ph; phaw phaan) :: The 30th letter of the Thai alphabet
+===31st===
+  ฟ (f; faw fan) :: The 31st letter of the Thai alphabet
+===32nd===
+  ภ (p, ph; paw sam pao) :: The 32nd letter of the Thai alphabet
+===33rd===
+  ม (m; maw mā) :: The 33rd letter of the Thai alphabet
+===34th===
+  ย (y; yaw yak) :: The 34th letter of the Thai alphabet
+===35th===
+  ร (r; raw ruea) :: The 35th letter of the Thai alphabet
+===36th===
+  ล (l; law ling) :: The 36th letter of the Thai alphabet
+===37th===
+  ว (w, v; waw waen) :: The 37th letter of the Thai alphabet
+===38th===
+  ศ (s; saw sālā) :: The 38th letter of the Thai alphabet
+===39th===
+  ษ (s; saw rue sī) :: The 39th letter of the Thai alphabet
+===4===
+  ๔ (สี่, sèe) :: 4 (four)
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===40th===
+  ส (s; saw suea) :: The 40th letter of the Thai alphabet
+===41st===
+  ห (h; haw hēb) :: The 41st letter of the Thai alphabet
+===42nd===
+  ฬ (l; law ju lā) :: The 42nd letter of the Thai alphabet
+===43rd===
+  อ (a; āw āng) :: The 43rd letter of the Thai alphabet
+===44th===
+  ฮ (h; haw nok hūk) :: The 44th letter of the Thai alphabet
+===5===
+  ๕ (ห้า, hâa) :: 5 (five)
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+===๕===
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+===6===
+  ๖ (หก, hòk) :: 6 (six)
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===๖===
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+===7===
+  ๗ (เจ็ด, jèt) :: 7 (seven)
+===8===
+  ๘ (แปด, bpàet) :: 8 (eight)
+===9===
+  ๙ (เก้า, kào) :: 9 (nine)
+===abbot===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+===abbreviation===
+  ฯลฯ (paiyanyai) (noun) :: abbreviation indicator.
+===about===
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+===above===
+  บน (bon) (preposition) :: above
+===act===
+  ทำ (tham) (verb) :: To act.
+===actor===
+  พระ (prá) (noun) :: leading actor, star; hero
+===actual===
+  จริง (jing) :: real, true, actual
+===adhere===
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+===adolescent===
+  เด็ก (dek) (noun) :: adolescent
+===adult===
+  หนู (nŭu) (pronoun) :: I(child to adult)
+===advertisement===
+  โฆษณา (khôdsanaa) :: advertisement
+===affair===
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+===after===
+  หลัง (lăng) :: next, after, later, hind
+  หลัง (lăng) :: after, past
+===afternoon===
+  สวัสดี (sàwàtdee) :: good morning, good afternoon, good evening
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===again===
+  ใหม่ (mài) :: again, once more
+  อีก (èek) (adverb) :: again
+===age===
+  ยุค (yuk) (noun) :: age
+===agent===
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+===aggrandize===
+  เพิ่ม (perm) (verb) :: To aggrandize.
+===agitate===
+  ปลุกปั่น (pluk pan) (verb) :: To agitate.
+===Agni===
+  อัคนี (akkhanii) (proper noun) :: Agni
+===agree===
+  ตกลง (thok long) (verb) :: To agree.
+  ถูก (thūk) (verb) :: to agree
+  เห็นด้วย (hen duay) (verb) :: To agree with.
+===aim===
+  ใฝ่ (fai) (verb) :: To aim for a goal.
+===air===
+  อากาศ (ā kād) (noun) :: air
+===airport===
+  สนามบิน (sanāmbin) (noun) :: airport
+===alleviate===
+  ลด (lod) (verb) :: To alleviate.
+===allow===
+  ให้ (hai) (verb) :: To allow.
+===alphabet===
+  ตัวอักษร (dtua àksŏn) :: alphabet
+  ณ (n; naw nēn) :: The 19th letter of the Thai alphabet
+  ด (d; daw dek) :: The 20th letter of theThai alphabet
+  ก (k; gaw gai) :: The first letter of the Thai alphabet
+  ข (kh; khaw khai) :: The second letter of the Thai alphabet.
+  ค (kh; khaw khwaai) :: The fourth letter of the Thai alphabet
+  ฃ (kh; khǎw khùad) :: {obsolete}The third letter of the Thai alphabet.
+  ฅ (kh; kkaw kkon) :: {obsolete}The fifth letter of the Thai alphabet.
+  ฆ (kh; kaw ra kang) :: The sixth letter of the Thai alphabet.
+  ง (ng; ngaw nguu) :: The seventh letter of the Thai alphabet.
+  จ (j; jaw jād) :: The eighth letter of the Thai alphabet
+  ฉ (ch; chaw ching) :: The ninth letter of the Thai alphabet
+  ช (ch, sh; chaw cháang) :: The tenth letter of the Thai alphabet.
+  ซ (s; saw sō) :: The 11th letter of the Thai alphabet
+  ฌ (ch, sh; chaw kachoe) :: The 12th letter of the Thai alphabet.
+  ญ (y, ñ; yaw ying) :: The 13th letter of the Thai alphabet
+  ฎ (d; daw cha dā) :: The 14th letter of the Thai alphabet.
+  ฏ (t; taw pa tak) :: The 15th letter of the Thai alphabet
+  ฐ (th; thaw thān) :: The 16th letter of the Thai alphabet
+  ฑ (th; thaw mon thō) :: The 17th letter of the Thai alphabet.
+  ฒ (th; thaw pū thao) :: The 18th letter of the Thai alphabet.
+  ต (t; taw tào) :: The 21st letter of the Thai alphabet
+    (All words preceded by ต)ตาตี๋ตกต้นตาล ตอตาลตำตูด ตายใต้ต้นตาล :: --
+    tā tī tok ton tān taw tān tam tūd tāi tai ton tān :: --
+    A Chinese old man falls from a palm tree. A palm tree's stump stabs him. He dies under a palm tree. :: --
+  ถ (th; thaw thung) :: The 22nd letter of the Thai alphabet
+  ท (th; thaw tháhǎan) :: The 23rd letter of the Thai alphabet.
+  ธ (th; thaw thong) :: The 24th letter of the Thai alphabet.
+  น (n; naw nū) :: The 25th letter of the Thai alphabet
+  บ (b; baw bai máai) :: The 26th letter of the Thai alphabet.
+  ป (p; paw plaa) :: The 27th letter of the Thai alphabet.
+  ผ (p, ph; paw pueng) :: The 28th letter of the Thai alphabet
+  ฝ (f; faw fā) :: The 29th letter of the Thai alphabet
+  พ (ph; phaw phaan) :: The 30th letter of the Thai alphabet
+  ฟ (f; faw fan) :: The 31st letter of the Thai alphabet
+  ภ (p, ph; paw sam pao) :: The 32nd letter of the Thai alphabet
+  ม (m; maw mā) :: The 33rd letter of the Thai alphabet
+  ย (y; yaw yak) :: The 34th letter of the Thai alphabet
+  ร (r; raw ruea) :: The 35th letter of the Thai alphabet
+  ล (l; law ling) :: The 36th letter of the Thai alphabet
+  ว (w, v; waw waen) :: The 37th letter of the Thai alphabet
+  ศ (s; saw sālā) :: The 38th letter of the Thai alphabet
+  ษ (s; saw rue sī) :: The 39th letter of the Thai alphabet
+  ส (s; saw suea) :: The 40th letter of the Thai alphabet
+  ห (h; haw hēb) :: The 41st letter of the Thai alphabet
+  ฬ (l; law ju lā) :: The 42nd letter of the Thai alphabet
+  อ (a; āw āng) :: The 43rd letter of the Thai alphabet
+  ฮ (h; haw nok hūk) :: The 44th letter of the Thai alphabet
+  ฤ (r; reu) :: A letter of the Thai alphabet.
+  ฦ (l; leu) :: {obsolete}A letter of the Thai alphabet.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===Alternanthera===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===Alternative===
+  ฦๅ (leu) (verb) :: {obsolete} Alternative spelling of ลือ.
+  ฃวด (khuad) (noun) :: {obsolete} Alternative spelling of ขวด.
+  ฅน (khod) (noun) :: {obsolete}Alternative spelling of คน.
+  ฅอ (khaw) (noun) :: {obsolete}Alternative spelling of คอ.
+  ฅวาม (khawm) (noun) :: {obsolete}Alternative spelling of ความ.
+  แฅว (khaew) (noun) :: {obsolete}Alternative spelling of แคว.
+  ฅุ๋ม (khum) (noun) :: {obsolete}Alternative spelling of คุ้ม.
+  ฅ้อน (khon) (noun) :: {obsolete}Alternative spelling of ค้อน.
+  ฅีน (khued) (noun) :: {obsolete}Alternative spelling of คืน.
+  แฅน (khaen) (noun) :: {obsolete}Alternative spelling of แคลน.
+  แฅ่ง (khaeng) (noun) :: {obsolete}Alternative spelling of แข้ง.
+  ฅวาง (khawng) (noun) :: {obsolete}Alternative spelling of คว้าง.
+  ฅํ่า (kham) (noun) :: {obsolete}Alternative spelling of คํ่า.
+  ฃ๋า (khaa) (verb) :: {obsolete}Alternative spelling of ฆ่า.
+  ฃาย (khaai) (verb) :: {obsolete}Alternative spelling of ขาย.
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+  เฃ๋า (khao) (verb) :: {obsolete}Alternative spelling of เข้า.
+  เข๋า (khao) (noun) :: {obsolete} Alternative spelling of ข้าว.
+  ฃึ๋น (khuen) (verb) :: {obsolete}Alternative spelling of ขึ้น.
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+  ฃุน (khun) (noun) :: {obsolete}Alternative spelling of ขุน.
+  ฃวา (khwaa) (noun) :: {obsolete}Alternative spelling of ขวา.
+  แฃวน (khwaen) (verb) :: {obsolete}Alternative spelling of แขวน.
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+  ฃัน (khan) (verb) :: {obsolete}Alternative spelling of ขัน.
+  ฃอง (khawng) (noun) :: {obsolete}Alternative spelling of ของ.
+  เฃียน (khian) (noun) :: {obsolete}Alternative spelling of เขียน.
+  เฃตร (khéd) (noun) :: {obsolete}Alternative spelling of เขตต์.
+  ฃยัน (khayan) (adjective) :: {obsolete}Alternative spelling of ขยัน.
+  ฦก (lūek) (adjective) :: {obsolete}Alternative spelling of ลึก.
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+===amicable===
+  สุมิตรา (sumitra) (noun) :: An amicable person.
+===amoena===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===amulet===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===An===
+  ไข่ (khai) (noun) :: An egg.
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+  ขุน (khun) (noun) :: An aristocrat.
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+  หู (hŏo) (noun) :: An ear.
+  สุมิตรา (sumitra) (noun) :: An amicable person.
+  หาง (hāng) (noun) :: An object's end
+  ยักษ์ (yak) (noun) :: An ogre
+===angel===
+  เทวดา (teewádaa) (noun) :: deity, male angel
+===angle===
+  เหลี่ยม (lìam) (noun) :: angle
+===angled===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===angry===
+  เขียว (khĭeow) (adjective) :: angry
+===angular===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===animal===
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===another===
+  ไป :: To go (move to another place).
+===answer===
+  ตอบ (tawb) (verb) :: To answer.
+===ant===
+  มด (mod) (noun) :: ant
+===anything===
+  อะไร (àrai) :: something, anything
+===appearance===
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+===apply===
+  สมัคร (samak) (verb) :: To apply for
+===appointment===
+  นัด (nad) (verb) :: To assign an appointment.
+===April===
+  เมษายน (mésāyon) (proper noun) :: April.
+===Aquarius===
+  ราศีกุมภ์ (rāsī kum) (proper noun) :: Aquarius
+===Arabic===
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+===are===
+  มี {{th-verb|tr=mee}} :: there is, there are
+    ฉันมีหมวกหนึ่งใบ :: --
+    I have a hat :: --
+===Aries===
+  ราศีเมษ (rāsī méd) (proper noun) :: Aries
+===aristocrat===
+  ขุน (khun) (noun) :: An aristocrat.
+===around===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===arrange===
+  จัด (jad) (verb) :: To arrange.
+===arrest===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===art===
+  ศิลปะ (sin la pa) (noun) :: art
+  ศิลป์ (sin) (noun) :: art
+===Asian===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===ask===
+  ถาม (tām) (verb) :: To ask.
+===Assamese===
+  ภาษาอัสสัม (paasăa adsam) (proper noun) :: The Assamese language.
+===assign===
+  นัด (nad) (verb) :: To assign an appointment.
+===attach===
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+===August===
+  สิงหาคม (singhākhom) (proper noun) :: August.
+===aunt===
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+===auspicious===
+  ฤกษ์ (rerk) (adjective) :: auspicious
+  ศุภลักษณ์ (sub pha lak) (noun) :: An auspicious appearance.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: An auspicious appearance.
+  มงคล (mongkhon) (adjective) :: auspicious
+===Australia===
+  ออสเตรเลีย (ààwtdraelia) (proper noun) :: Australia
+===Australian===
+  ออสเตรเลีย (ààwtdraelia) (adjective) :: Australian
+===authentic===
+  จริง (jing) :: authentic, genuine
+===away===
+  ทิ้ง (thing) (verb) :: to throw away
+===back===
+  หลัง (lăng) :: behind, at the back
+  หลัง (lăng) :: {anatomy} back, back part
+  หลัง (lăng) :: back, rear
+===bad===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+===bag===
+  ถุง (tŏong) :: bag
+===Baht===
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+===bake===
+  อบ (aab) (verb) :: to bake
+===balance===
+  ตุลย์ (tun) (noun) :: A balance.
+===ball===
+  ลูก (lôok) (noun) :: small ball
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+===balloon===
+  โคมลอย (kohm loi) (noun) :: balloon
+===Bangkok===
+  บางกอก (baang-gòk) (proper noun) :: Bangkok
+  กรุงเทพ (groong têp) (proper noun) :: Bangkok, Krungthep
+===bank===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+===barbecue===
+  ย่าง (yāng) (verb) :: To barbecue.
+===base===
+  ฐาน (thǎan) (noun) :: a base
+===bear===
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+  เกิด (verb), :: To bear
+===bearer===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===beautiful===
+  หวาน (wăan) :: beautiful, cute
+  กัลยาณี (kalayaanee) (noun) :: A beautiful woman.
+===bedbug===
+  เรือด (rêuat) (noun) :: bedbug
+===beg===
+  ขอ (kaw) (verb) :: To beg.
+===beginning===
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===behavior===
+  ปฏิบัติ (patibat) (noun) :: behavior
+===behind===
+  หลัง (lăng) :: behind, at the back
+===believe===
+  เชื่อ (chuea) (verb) :: To believe.
+===bell===
+  พริกหยวก (prik yuak) (noun) :: bell pepper
+  ระฆัง (rakhang) (noun) :: bell
+===belongings===
+  ของ (khawng) (noun) :: A belongings.
+===beloved===
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===bend===
+  งอ (ngaw) (verb) :: to bend
+===Bengali===
+  ภาษาเบงกาลี (paasăa bengaalii) (proper noun) :: The Bengali language.
+===bestride===
+  คร่อม (khrom) (verb) :: To bestride.
+===bicycle===
+  จักรยาน (jakrayaan) (noun) :: bicycle
+===big===
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+===bind===
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+  รัด (bind) (verb) :: To bind.
+  พัน (pan) (verb) :: To bind.
+===bindi===
+  พินทุ (phinthu) (noun) :: A bindi.
+===bird===
+  นก (nok) (noun) :: bird, fowl
+  วิหก (wi hok) (noun) :: bird
+  วิหค (wihok) (noun) :: bird
+  กา (kaa) (noun) :: crow (bird)
+===birthday===
+  สุขสันต์วันเกิด (sòok-săn wan gèrt) :: happy birthday
+===bite===
+  กัด (kad) (verb) :: To bite.
+===bittern===
+  ยาง (yaang) :: egret, bittern
+===black===
+  กาล (kān) (noun) :: black cobra
+===blame===
+  ตำหนิ (tam ni) (verb) :: To blame.
+  โทษะ (thosa) (noun) :: blame.
+===blend===
+  ปั่น (pan) (verb) :: To blend something in a blender.
+===blender===
+  ปั่น (pan) (verb) :: To blend something in a blender.
+===blessing===
+  สวัสดิ์ (sa wad) (noun) :: blessing
+  พร (porn) (noun) :: A blessing.
+===blind===
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===blood===
+  เลือด (leuad) (noun) :: blood.
+===blow===
+  เป่า (pao) (verb) :: To blow.
+===blue===
+  กาล (kān) (noun) :: the color dark blue
+  ฟ้า (fáa) (adjective) :: light blue, sky blue
+===boat===
+  เป็ด (bpèt) (noun) :: duck-shaped boat
+  เรือ (reua) (noun) :: boat
+===body===
+  กาย (kāy) (noun) :: body
+===boil===
+  ต้ม (tom) (verb) :: To boil.
+===bold===
+  แก้ว (gâew) (adjective) :: bold
+===bong===
+  บ้อง (bong) (noun) :: A bong.
+===boss===
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===bottle===
+  ขวด (khuad) (noun) :: A bottle.
+===boulevard===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===bow===
+  ธนู (tha nū) (noun) :: bow
+===bowling===
+  โบว์ลิ่ง (bowling) (noun) :: bowling
+===boy===
+  เด็ก (dek) (noun) :: boy
+===Brahma===
+  พรหม (pom) (noun) :: Brahma
+===Brahmacharya===
+  พรหมจารี (pom ma jā rī) (noun) :: Brahmacharya
+  พรหมจรรย์ (pom ma jan) (noun) :: Brahmacharya
+===brave===
+  แก้ว (gâew) (adjective) :: brave, courageous
+===bread===
+  ขนมปัง (kànŏm bpang) (noun) :: bread
+===break===
+  แตก (taek) (verb) :: To break.
+===breast===
+  สิงห์ (sing) (noun) :: A breast.
+===breathe===
+  หายใจ (hāy jai) (verb) :: to breathe
+===brim===
+  ปาก (pāk) (adjective) :: A brim.
+===bring===
+  นำ (num) (verb) :: to bring
+===British===
+  อังกฤษ (angkrit) (noun) :: British
+  ชาวอังกฤษ (chaoangkrit) (noun) :: British people
+  คนอังกฤษ (khonangkrit) (noun) :: British person or people.
+===brother===
+  พี่ (pêe) (noun) :: elder brother
+  น้อง (nóng) (noun) :: younger brother
+===bruised===
+  เขียว (khĭeow) (adjective) :: bruised
+===bucket===
+  ถัง (tăng) (noun) :: bucket
+===Buddha===
+  พระ (prá) (noun) :: Buddha image, god
+===buddhist===
+  วัด (wát) :: a wat: a type of buddhist temple
+===Buddhist===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===buffalo===
+  ควาย (kwaai) (noun) :: A water buffalo.
+===build===
+  สร้าง (sāng) (verb) :: To build.
+  ก่อ (kaw) (verb) :: To build.
+===bull===
+  พฤษภ (prued) (noun) :: A bull.
+===Burma===
+  พม่า (pámâa) (proper noun) :: Myanmar, Burma
+===Burmese===
+  ภาษาพม่า (phaasăa phamaa) (proper noun) :: The Burmese language.
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+===burn===
+  เผา (pao) (verb) :: To burn.
+===bury===
+  ฝัง (fang) (verb) :: to bury
+===business===
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+  ธุรกิจ (thurakid) (noun) :: business
+  กิจการ (kijakan) (noun) :: business
+  เศรษฐกิจ (sethakid) (noun) :: business
+===but===
+  แต่ (tae) (conjunction) :: but
+===butt===
+  ตูด (tūd) (noun) :: {{context|informal}} A butt.
+===butterfly===
+  ผีเสื้อ (pěe sêua) (noun) :: butterfly
+===call===
+  เรียก (riak) (verb) :: To call.
+===calling===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===Cambodia===
+  กัมพูชา (gampoochaa) (proper noun) :: Cambodia, Kampuchea
+  เขมร (khàmen) :: {dialectal} Cambodia
+  ประเทศกัมพูชา (prathed kaphoochaa) (proper noun) :: Cambodia
+  ประเทศเขมร (prathed khméén) (proper noun) :: Cambodia
+===Cambodian===
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+===can===
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===Cancer===
+  ราศีกรกฎ (rāsī karakod) (proper noun) :: Cancer
+===candle===
+  เทียน (tian) (noun) :: candle
+===Cantonese===
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+===capable===
+  สามารถ (samad) (adjective) :: capable
+===capital===
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+===Capricorn===
+  ราศีมังกร (rāsī mangkorn) (proper noun) :: Capricorn
+===car===
+  รถยนต์ (ródyon) (noun) :: car
+  รถ (rod) (noun) :: car.
+===card===
+  บัตร (bad) (noun) :: card
+===care===
+  ใส่ใจ (sai jai) (verb) :: To care for.
+  สน (son) (verb) :: To care.
+  สนใจ (sai jai) (verb) :: To care.
+===case===
+  ความ (kwām) (noun) :: case
+===castle===
+  ปราสาท (prāsād) (noun) :: castle
+===cat===
+  แมว (maew) (noun) :: cat
+  วิเชียรมาศ (wichian maad) (noun) :: Siamese cat.
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+  ศุภลักษณ์ (sub pha lak) (noun) :: A Burmese cat.
+  แมวศุภลักษณ์ (maew sub pha lak) (noun) :: A Burmese cat.
+  มาเลศ (maa léd) (noun) :: A Korat cat.
+  แมวโคราช (khoraad) (noun) :: A Korat cat.
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+===catch===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===caterpillar===
+  แก้ว (gâew) (noun) :: {entomology} variety of caterpillar
+===caution===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===celebrity===
+  ดารา (daaraa) (noun) :: A celebrity.
+===cemetery===
+  สุสาน (sùsǎan) (noun) :: cemetery, graveyard
+===center===
+  ศูนย์ (sūn) (noun) :: center
+===chain===
+  โซ่ (so) (noun) :: chain
+===chakra===
+  จักร (jak) (noun) :: chakra
+===Chao===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===charming===
+  เสน่ห์ (sa ne) (noun) :: charming
+===cheap===
+  ถูก (thūk) (adjective) :: cheap
+===chedi===
+  เจดีย์ (jedi) (noun) :: chedi, stupa
+===cheers===
+  ไชโย (chaiyo) (interjection) :: cheers!
+===cherished===
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===chest===
+  ทรวง (suang) (noun) :: A chest
+  อุรา (ura) (noun) :: chest
+===chicken===
+  ตาไก่ (taagài) (noun) :: chicken's eye
+  ไก่ (kài) (noun) :: chicken.
+===chief===
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===child===
+  ลูก (lôok) (noun) :: a child
+  เด็ก (dek) (noun) :: child
+  หนู (nŭu) (pronoun) :: I(child to adult)
+===children===
+  เด็ก (dek) (noun) :: children
+===chili===
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+===chill===
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+===chilli===
+  พริก (prik) (noun) :: chilli
+  พริกดอง (prík dong) (noun) :: pickled chilli
+  น้ำพริก (náam prík) (noun) :: chilli sauce
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===China===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===Chinese===
+  ตี๋ (tī) (noun) :: A Chinese man.
+===chocolate===
+  ช็อกโกแล็ต (chókgohláet) (noun) :: chocolate
+===chop===
+  สับ (sab) (verb) :: To chop.
+===chopstick===
+  ตะเกียบ (dtàgìap) (noun) :: chopsticks
+===circle===
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+===circulate===
+  หมุนเวียน (mun wian) (verb) :: To circulate.
+===city===
+  เมือง (meuang) (noun) :: city, town
+  นคร (nakorn) (noun) :: city, town
+  กรุง (groong) (noun) :: city
+===classical===
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===classified===
+  โฆษณา (khôdsanaa) :: classified
+===classifier===
+  เชือก (chêuak) :: classifier for elephants
+===cleric===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+===climb===
+  ปีน (peen) (verb) :: To climb.
+===cling===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===close===
+  ปิด (pid) (verb) :: To close.
+  สนิท (sanid) (adjective) :: close
+===cloud===
+  เมฆ (még) (noun) :: A cloud.
+===coat===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===cobra===
+  กาล (kān) (noun) :: black cobra
+===cold===
+  เย็น (yen) (adjective) :: cold, cool
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+===collide===
+  ชน (chon) (verb) :: to collide with
+===color===
+  สี (sěe) (noun) :: A color.
+  สี (sěe) (adjective) :: color.
+  กาล (kān) (noun) :: the color dark blue
+===combination===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===come===
+  มา (mā) (verb) :: To come.
+  ลง (long) (verb) :: To come down.
+===comestible===
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+===comfortably===
+  หวาน (wăan) :: comfortably, pleasantly
+===commander===
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===commercial===
+  โฆษณา (khôdsanaa) :: commercial
+===common===
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===Commonly===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===community===
+  ชุมชน (noun) :: community
+===compare===
+  เปรียบเทียบ (piāb thiāb) (verb) :: To compare.
+===computer===
+  คอมพิวเตอร์ (khom piu toe) (noun) :: computer
+===conceal===
+  บัง (bang) (verb) :: to conceal
+===concentration===
+  สมาธิ (samaathí) (noun) :: concentration
+===concern===
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+===concerned===
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+===condom===
+  ถุงยาง (tŏong yaang) :: condom
+===considered===
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===contact===
+  สบตา (sob tā) (verb) :: To make eye contact.
+===contain===
+  มี {{th-verb|tr=mee}} :: to contain, to include
+===containing===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===content===
+  ความ (kwām) (noun) :: content
+===cook===
+  หุง (hūng) (verb) :: To cook.
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+===cool===
+  เย็น (yen) (adjective) :: cold, cool
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+===coolness===
+  เย็น (yen) (noun) :: coolness
+===cord===
+  เชือก (chêuak) :: rope, string, cord, thread
+  ด้าย (dâai) :: thread, string, cord, yarn
+===corpse===
+  ศพ (sob) (noun) :: A corpse.
+===correct===
+  ถูก (thūk) (noun) :: correct
+===cough===
+  ไอ (ai) (verb) :: To cough.
+===count===
+  นับ (nab) (verb) :: To count.
+===counter===
+  โต้ (tō) (verb) :: To counter.
+===country===
+  เมือง (meuang) (noun) :: country
+  ประเทศ (prathet) (noun) :: country
+===courageous===
+  แก้ว (gâew) (adjective) :: brave, courageous
+===court===
+  หลวง (lŭang) (adjective) :: royal, of the court, of the crown
+===cow===
+  โค (khō) (noun) :: a cow
+  โคมูตร (koh môot) (noun) :: cow's urine.
+  เยี่ยววัว (yîeow wua) (noun) :: cow's urine
+  วัว (wua) (noun) :: a cow
+===crab===
+  กรกฎ (kau ra kod) (noun)Category:th:Animals :: crab
+===crawl===
+  คาน (khān) (verb) :: To crawl.
+===crazy===
+  บ้า,คลั่งใคล้ (adjective) :: crazy
+===crony===
+  มิตร (mid) (noun) :: crony
+===cross===
+  ข้าม (khām) (verb) :: To cross.
+  ไขว้ (kwai) (verb) :: To cross.
+===crow===
+  กา (kaa) (noun) :: crow (bird)
+===crown===
+  หลวง (lŭang) (adjective) :: royal, of the court, of the crown
+===cry===
+  ร้องไห้ (rawng hāi) (verb) :: To cry.
+===crystal===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===cup===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===cure===
+  รักษา (raksa) (verb) :: To cure
+===curly===
+  หยิก (yik) (adjective) :: curly
+===currency===
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+===curry===
+  แกงเผ็ด (gaeng pèt) :: red curry, hot curry
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+  แกง (gaeng) :: curry
+  แกง (gaeng) :: to make a curry
+===cut===
+  ตัด (tad) (verb) :: To cut.
+  ฟัน (fan) (verb) :: To cut.
+===cute===
+  หวาน (wăan) :: beautiful, cute
+===cymbals===
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===dance===
+  รำไทย (ram tai) (noun) :: Thai dance
+  รำ (ram) (verb) :: to dance
+  เต้น (ten) (verb) :: To dance.
+===dancer===
+  มณโฑ (montho) (noun) :: dancer
+===danger===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+  ภัย (pai) (noun) :: danger
+===dark===
+  กาล (kān) (noun) :: the color dark blue
+===darling===
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===date===
+  ณ (nā) (preposition) :: on (a place or date)
+===daughter===
+  ลูก (lôok) (noun) :: a son or daughter
+  กุมารี (kumārī) (noun) :: A daughter.
+===day===
+  วัน (wan) :: day
+===daytime===
+  วัน (wan) :: daytime
+===death===
+  กาล (kān) (noun) :: death, doom
+  มรณะ (mawrana) (noun) :: death
+  ยมทูต (thūd) (noun) :: A messenger of death.
+===decay===
+  ผุ (pu) (verb) :: To decay.
+===December===
+  ธันวาคม (thanwaakhom) (proper noun) :: December
+===declare===
+  ประกาศ (pra kād) (verb) :: declare
+===deep===
+  ลึก (lūek) (adjective) :: deep
+===defeat===
+  แพ้ (pāe) (verb) :: to lose (to be defeated)
+===defy===
+  ท้าทาย (thathaai) (verb) :: To defy
+  ท้า (thaa) (verb) :: To defy
+===deity===
+  เทพ (thèp) (noun) :: a deity
+  เทวดา (teewádaa) (noun) :: deity, male angel
+  เทวะ (thè wa) (noun) :: a deity
+  เทวี (thèwī) (noun) :: a female deity
+  เทพี (thèpī) (noun) :: a female deity
+  ทูต (thūd) (noun) :: A messenger who is a deity.
+===delight===
+  ความสุข (kwām suk) (noun) :: delight
+  สุข (suk) (noun) :: delight
+===deliver===
+  ส่ง (song) (verb) :: To deliver.
+===demon===
+  ผี (phĕe) (noun) :: ghost, spirit, demon
+===designating===
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+  คน (khon) (prefix) :: (designating nationality or ethnicity) -an
+===destroyed===
+  วินาศ (winaad) (adjective) :: destroyed.
+===dial===
+  โทร (thō) (verb) :: To dial.
+===dictionary===
+  พจนานุกรม (pótjànaanú grom) (noun) :: dictionary
+===die===
+  ตาย (tai) (verb) :: to die
+===disappear===
+  หาย (hāy) (verb) :: to disappear
+===discover===
+  เจอ (jer) (verb) :: To discover.
+===discus===
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+===discuss===
+  คุย (kuy) (verb) :: To discuss.
+===disease===
+  โรค (rok) (noun) :: disease
+===disk===
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+===disobey===
+  ฝืน (fūen) (verb) :: To disobey.
+===dispose===
+  ทิ้ง (thing) (verb) :: to dispose
+===divine===
+  ทิพย์ (tip) (noun) :: divine
+===divorce===
+  อย่า (yàa) (verb) :: To divorce.
+===do===
+  ทำ (tham) (verb) :: To do.
+===doctor===
+  แพทย์ (paed) (noun) :: doctor
+===document===
+  ลิขิต (likhit) (noun) :: document
+===dodo===
+  โดโด้ (doh-dôh) (noun) :: dodo
+===doff===
+  ถอด (thōd) (verb) :: To doff.
+===dog===
+  หมา (mǎa) (noun) :: dog
+  สุนัข (sùnák) (noun) :: dog
+===Dogri===
+  ภาษาโฑครี (paasăa thookhrii) (proper noun) :: The Dogri language.
+===dolphin===
+  ปลาโลมา (pla loma) (noun) :: dolphin
+  โลมา (loma) (noun) :: dolphin
+===don===
+  ใส่ (sài) (verb) :: To don.
+  อย่า (yàa) (contraction) :: don't
+===donation===
+  ทาน (thaan) (noun) :: donation
+===doom===
+  กาล (kān) (noun) :: death, doom
+===door===
+  ทวาร (tha wān) (noun) :: door
+===dot===
+  พินทุ (phinthu) (noun) :: A dot.
+===down===
+  วาง (wāng) (verb) :: To lay something down.
+  ลง (long) (verb) :: To come down.
+  นอน (nawn) (verb) :: to lie down
+===dragon===
+  มังกร (munggorn) (noun) :: dragon
+===drake===
+  เป็ด (bpèt) (noun) :: duck, drake, duckling
+===drape===
+  แขวน (kwaen) (verb) :: To drape.
+  พาด (pād) (verb) :: To drape over.
+===drawing===
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===dream===
+  ฝัน (fun) (verb) :: dream
+===drink===
+  ดื่ม (dūem) (verb) :: To drink.
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===drinking===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===drive===
+  ขับรถ (khab rod) (verb) :: To drive.
+===dry===
+  ตาก (tāk) (verb) :: To dry.
+===duck===
+  เป็ด (bpèt) (noun) :: duck, drake, duckling
+  เป็ด (bpèt) (noun) :: duck-shaped boat
+===duckling===
+  เป็ด (bpèt) (noun) :: duck, drake, duckling
+===dugong===
+  พะยูน (phayun) (noun) :: dugong
+  ปลาพะยูน (plapayun) (noun) :: dugong
+===dusk===
+  เย็น (yen) (noun) :: dusk
+===Dutch===
+  ภาษาดัตช์ (paasăa dad) (proper noun) :: The Dutch language.
+===duty===
+  กงกาง (gong gaang) (noun) :: responsibility, duty
+===dwell===
+  อยู่ (yū) (verb) :: To dwell.
+===each===
+  ทุกๆ (tóok-tóok) :: every, each, each one, all.
+  ทุกทุก (tóok-tóok) :: every, each, each one, all.
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===ear===
+  หู (hŏo) (noun) :: An ear.
+===early===
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===Earth===
+  โลก (lōk) (noun) :: Earth
+===easy===
+  หวาน (wăan) :: as easy as pie
+===eat===
+  กิน (kin) (verb) :: To eat.
+  ทาน (thaan) (verb) :: to eat
+===ed===
+  แพ้ (pāe) (verb) :: to lose (to be defeated)
+===edge===
+  เหลี่ยม (lìam) (noun) :: edge, side
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===edged===
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===education===
+  พละ (phala) (noun) :: A physical education.
+===Education===
+  กระทรวงศึกษาธิการ (gràsuang sèuksăa-tígaan) :: Ministry of Education
+===effortless===
+  หวาน (wăan) :: effortlessly
+===egg===
+  ฟอง (fawng) (noun) :: {formal} egg
+  ไข่ (khai) (noun) :: An egg.
+  ฟองมัน (fongman) (noun) :: greasy egg
+===egret===
+  ยาง (yaang) :: egret, bittern
+===eight===
+  ๘ (แปด, bpàet) :: 8 (eight)
+===eighth===
+  จ (j; jaw jād) :: The eighth letter of the Thai alphabet
+===elbow===
+  ศอก (sawk) (verb) :: To elbow.
+===elder===
+  พี่ (pêe) (noun) :: elder brother
+  พี่ (pêe) (noun) :: elder sister
+===element===
+  ทองคำ (tongkam) (noun) :: gold (element)
+===elephant===
+  คชสาร (khódchasǎan) (noun) :: elephant
+  ช้าง (cháang) (noun) :: elephant
+===elephants===
+  เชือก (chêuak) :: classifier for elephants
+===eleven===
+  สิบเอ็ด (sìp èt) (noun) :: eleven
+===embracing===
+  เกี่ยว (gìaaw) (adjective) :: (is) entangled with, (is) hugging, (is) embracing
+===emit===
+  คาย (khāi) (verb) :: To emit.
+===encyclopedia===
+  สารานุกรม (săaraanúkrom) :: encyclopedia
+===end===
+  จบ (job) (verb) :: To end.
+  หาง (hāng) (noun) :: An object's end
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===ending===
+  วะ (wá) :: ending particle (impolite)
+  ว่ะ (wâ) :: ending particle (impolite)
+===enemy===
+  ศัตรู (sadtru) (noun) :: enemy.
+===England===
+  ประเทศอังกฤษ (prathed angkrid) (proper noun) :: England
+  อังกฤษ (angkrit) (noun) :: England
+===English===
+  ภาษาอังกฤษ (paasăa anggrìt) (proper noun) :: English language
+  อังกฤษ (angkrit) (noun) :: English
+  ชาวอังกฤษ (chaoangkrit) (noun) :: English people
+===enormous===
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+===entangled===
+  เกี่ยว (gìaaw) (adjective) :: (is) entangled with, (is) hugging, (is) embracing
+===enter===
+  เข้า (kao) (verb) :: To enter
+===entire===
+  มวล (muan) (adjective) :: entire
+===envy===
+  อิจฉา (id chā) (verb) :: envy
+===epoch===
+  กาล (kān) (noun) :: time, epoch, era
+===equals===
+  เรา (rao) (pronoun) :: I, me(to equals)
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+===er===
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+===era===
+  กาล (kān) (noun) :: time, epoch, era
+  สมัย (samai) (noun) :: era
+===escape===
+  หนี (nī) (verb) :: To escape.
+===eschew===
+  ลบ (lob) (verb) :: To eschew.
+===ethnic===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===ethnicity===
+  คน (khon) (prefix) :: (designating nationality or ethnicity) -an
+===etymology===
+  นิรุกติศาสตร์ (níróoktì sàat) (noun) :: etymology
+===evening===
+  สวัสดี (sàwàtdee) :: good morning, good afternoon, good evening
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===every===
+  ทุกๆ (tóok-tóok) :: every, each, each one, all.
+  ทุกทุก (tóok-tóok) :: every, each, each one, all.
+===evil===
+  ปีศาจ (pīsād) (noun) :: evil
+===exaggerate===
+  ขยาย (kha yāi) (verb) :: To exaggerate.
+===exercise===
+  ออกกำลังกาย (awk kom lang kāi) (verb) :: To exercise.
+===exit===
+  ออก (awk) (verb) :: To exit.
+===explain===
+  อธิบาย (/ɑtʰɪbɑːj/) (verb) :: To explain.
+===extensive===
+  ใหญ่ (yài) (verb) :: to be major, to be extensive, to be sizeable
+===eye===
+  ตา (taa) :: eye (organ)
+  สบตา (sob tā) (verb) :: To make eye contact.
+  ตาไก่ (taagài) (noun) :: chicken's eye
+  จักษุ (jaksu) (noun) :: eye
+===eyebrow===
+  ภมุ (pámóo) (noun) :: eyebrow
+===eyelash===
+  ขนตา (kŏn dtaa) (noun) :: eyelash
+===eyelet===
+  ตาไก่ (taagài) (noun) :: metal eyelet, grommet
+===face===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===fall===
+  ตก (tok) (verb) :: To fall.
+  หก (hòk) (verb) :: to fall
+===false===
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===family===
+  ชาติ (chāt) (noun) :: family
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+===famous===
+  ลือชา (lue chaa) (verb) :: To make one famous.
+===farm===
+  นา (naa) (noun) :: farm.
+===farmer===
+  ชาวนา (chaaonaa) (noun) :: A farmer.
+===farmland===
+  เกษตร (kased) (noun) :: farmland
+===fart===
+  ตด (tod) (verb) :: to fart
+===fate===
+  พรหมลิขิต (pom li khit) (noun) :: fate
+===father===
+  พ่อ (pòo) (noun) :: father
+  บิดา (bidaa) (noun) :: father.
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+===February===
+  กุมภาพันธ์ (kumphāphan) (proper noun) :: February.
+===feel===
+  รู้สึก (rū suek) (verb) :: To feel.
+===female===
+  เทวี (thèwī) (noun) :: a female deity
+  เทพี (thèpī) (noun) :: a female deity
+  หญิง (ying) (noun) :: female
+  ฉัน :: I; me (for female speakers)
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+===females===
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+===field===
+  นา (naa) (noun) :: rice field.
+===fifth===
+  ฅ (kh; kkaw kkon) :: {obsolete}The fifth letter of the Thai alphabet.
+===final===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===finance===
+  การเงิน (gaan ngern) (noun) :: finance
+===fire===
+  ไฟ (fai) (noun) :: fire
+  อัคนี (akkhanii) (noun) :: fire
+===firmament===
+  ฟ้า (fáa) (noun) :: sky, firmament, heaven
+===first===
+  ก (k; gaw gai) :: The first letter of the Thai alphabet
+===fish===
+  ปลา (bplaa) :: fish
+  มีน (mīn) (noun) :: A fish.
+===five===
+  ๕ (ห้า, hâa) :: 5 (five)
+  ห้า (hâa) (noun) :: five
+  ห้า (hâa) (adjective) :: five
+===flag===
+  ธวัช (thavad) (noun) :: flag
+  ธง (thong) (noun) :: flag
+===flower===
+  ดอก (dààwk) (noun) :: flower
+  บุษบา (budsabā) (noun) :: A flower
+===fluid===
+  น้ำ (náam) :: fluid, liquid
+===folk===
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===follow===
+  ตาม (tām) (verb) :: To follow.
+===followers===
+  บริวาร (bariwaan) (noun) :: followers.
+===food===
+  อาหาร (aa-hăan) (noun) :: food
+===For===
+  ผม :: I; me. For male speakers.
+===force===
+  บังคับ (bang kab) (verb) :: to force
+===foreigner===
+  ฝรั่ง (farang) (noun) :: foreigner
+===forest===
+  พนา (phana) (noun) :: forest
+===forget===
+  ลืม (lūem) (verb) :: To forget.
+===fork===
+  ส้อม (noun) :: fork.
+===formalize===
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+===fortune===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===forward===
+  ก้าว (gâao) (noun) :: To move forward
+===four===
+  ๔ (สี่, sèe) :: 4 (four)
+===fourth===
+  ค (kh; khaw khwaai) :: The fourth letter of the Thai alphabet
+===fowl===
+  นก (nok) (noun) :: bird, fowl
+===fox===
+  จิ้งจอก (jîngjòk) (noun) :: fox
+===France===
+  ประเทศฝรั่งเศส (bpràtêt fàràngsèt) (proper noun) :: France
+  ฝรั่งเศส (farang séd) (proper noun) :: France
+===free===
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===French===
+  ฝรั่งเศส (farang séd) (proper noun) :: French
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+===Friday===
+  วันศุกร์ (wan sùk) (noun) :: Friday
+===friend===
+  สหาย (sa hāy) (noun) :: friend
+  มิตร (mid) (noun) :: friend
+  เพื่อน (phêuan) (noun) :: A friend.
+===frog===
+  กบ (gòp) (noun) :: frog
+===fruit===
+  ลูก (lôok) (noun) :: fruit, nut
+  ผล (pon) (noun) :: fruit
+===fry===
+  ผัด (pad) (verb) :: To stir-fry
+  ทอด (thawd) (verb) :: To fry.
+===fuck===
+  เย็ด (yéd) (verb) :: {vulgar} to fuck
+===fuel===
+  น้ำมัน (náam man) (noun) :: gasoline, fuel
+===full===
+  อิ่ม (ìm) (noun) :: full
+===gasoline===
+  น้ำมัน (náam man) (noun) :: gasoline, fuel
+===gear===
+  จักร (jak) (noun) :: gear
+===Gemini===
+  ราศีเมถุน (rāsī méthun) (proper noun) :: Gemini
+===genuine===
+  จริง (jing) :: authentic, genuine
+===ghost===
+  ปีศาจ (pīsād) (noun) :: ghost
+  ผี (phĕe) (noun) :: ghost, spirit, demon
+  ภูต (phuud) (noun) :: A ghost
+  ภูตผี (phuudphee) (noun) :: A ghost
+===giant===
+  ยักษ์ (yak) (noun) :: A giant
+===gigantic===
+  โอ่ง (ōng) (noun) :: A gigantic jar.
+===gird===
+  คาด (khād) (verb) :: to gird
+===girl===
+  กันยา (kan yā) (noun) :: girl
+  เด็ก (dek) (noun) :: girl
+  กันย์ (kan yā) (noun) :: girl
+===give===
+  ให้ (hai) (verb) :: To give.
+  อำนวย (am nuay) (verb) :: To give.
+  เทศนา (têt-sà-naa) :: to give a sermon
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===gives===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===glass===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===gleaming===
+  แพรว (praew) (adjective) :: gleaming.
+===gloat===
+  อวด (āud) (verb) :: to gloat
+===go===
+  ไป :: To go (move to another place).
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+===goad===
+  ปฏัก (patak) (noun) :: goad
+===goal===
+  ใฝ่ (fai) (verb) :: To aim for a goal.
+===goat===
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+===god===
+  พระ (prá) (noun) :: Buddha image, god
+  กาล (kān) (noun) :: the god Siva
+===goddess===
+  เทวี (thèwī) (noun) :: a goddess
+  เทพี (thèpī) (noun) :: a goddess
+===gold===
+  ทองคำ (tongkam) (noun) :: gold (element)
+  สุพรรณ (suphan) (noun) :: gold.
+===gong===
+  ฆ้อง (kóng) (noun) :: gong
+===good===
+  สวัสดี (sàwàtdee) :: good morning, good afternoon, good evening
+  อรุณสวัสดิ์ (àroon sàwàt) :: good morning
+  ดี (dee) (adjective) :: good
+  สุจิตรา (sujitra) (noun) :: A good picture.
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===goodbye===
+  สวัสดี (sàwàtdee) :: goodbye
+===grab===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+  จับ (jab) (verb) :: to grab
+===grand===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===grandfather===
+  ตา (taa) :: maternal grandfather
+  ปู่ (pòo) (noun) :: paternal grandfather
+===grandmother===
+  ย่า (yâa) (noun) :: paternal grandmother
+  ยาย (yaai) (noun) :: maternal grandmother
+===grant===
+  ประทาน (prathān) (noun) :: grant
+===grasp===
+  กำ (kam) (verb) :: To grasp.
+===graveyard===
+  สุสาน (sùsǎan) (noun) :: cemetery, graveyard
+===greasy===
+  ฟองมัน (fongman) (noun) :: greasy egg
+===great===
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+  มหาสมุทร (mahā samud) (noun) :: great ocean.
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+===Greek===
+  ภาษากรีก (paasăa grèek) (proper noun) :: The Greek language.
+===green===
+  แกงเขียวหวาน (gaeng kĭeow wăan) (noun) :: green curry
+  เขียว (khĭeow) (noun) :: green
+  เขียว (khĭeow) (adjective) :: green
+===grommet===
+  ตาไก่ (taagài) (noun) :: metal eyelet, grommet
+===grope===
+  ลูบ (loob) (verb) :: To grope.
+===group===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===guard===
+  ยาม (yam) (noun) :: security guard
+===guinea===
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+===Guizhou===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===Gujarati===
+  ภาษาคุชราต (paasăa khudcharaat) (proper noun) :: The Gujarati language.
+===Gulf===
+  อ่าวไทย (āw tai) (proper noun) :: Gulf of Thailand
+===guy===
+  คน (khon) (noun) :: people, person, guy, man, human being
+===habitation===
+  บ้าน (bâan) :: habitation
+===hair===
+  ผม (/pʰom˨˩˧/) (noun) :: hair
+===hammer===
+  ค้อน (khon) (noun) :: A hammer.
+===hammock===
+  เปลญวน (bplay yuan) (noun) :: hammock
+===hang===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===happy===
+  สุขสันต์วันเกิด (sòok-săn wan gèrt) :: happy birthday
+===harvest===
+  เกี่ยว (gìaaw) (verb) :: to reap, to harvest, to mow
+===hat===
+  หมวก (muak) (noun) :: hat
+===Hathai===
+  หฤทัย (hareuthai) (proper noun) :: {{given name|female}}, Hathai
+===have===
+  มี {{th-verb|tr=mee}} :: to have, to own
+===he===
+  ธ (tha) (pronoun) :: {archaic} he, she
+  เพื่อน (phuean) (pronoun) :: he, she, they
+  เขา (kʰao) (pronoun) :: he, she
+===head===
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===headdress===
+  ชฎา (chada) (noun) :: headdress
+===heal===
+  รักษา (raksa) (verb) :: To heal
+===heart===
+  หฤทัย (hareuthai) (noun) :: heart
+  หัวใจ (huajai) (noun) :: heart.
+  ดวงใจ (duangjai) (noun) :: heart.
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+  ฤทัย (reuthai) (noun) :: A heart .
+===heaven===
+  สวรรค์ (sawan) (noun) :: heaven
+  ฟ้า (fáa) (noun) :: sky, firmament, heaven
+===Hebrew===
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+===heck===
+  อะไรวะ (àrai wá) :: what the heck? (impolite)
+===heir===
+  ทายาท (thayad) (noun) :: heir
+===held===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===hell===
+  นรก (narok) (noun) :: hell
+===hello===
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+  สวัสดี (sàwàtdee) :: hello, hi
+===help===
+  ช่วย (chuey) (verb) :: to help
+===herb===
+  สมุนไพร (samunprai) (noun) :: herb
+===hermit===
+  ฤษี (rue sī) (noun) :: hermit
+  ฤๅษี (rue sī) (noun) :: hermit
+===hero===
+  พระ (prá) (noun) :: leading actor, star; hero
+===hesitate===
+  ลังเล (lang lē) (verb) :: To hesitate.
+===hi===
+  สวัสดี (sàwàtdee) :: hello, hi
+===hide===
+  ซ่อน (sawn) (verb) :: To hide.
+===hind===
+  หลัง (lăng) :: next, after, later, hind
+===Hindi===
+  ภาษาฮินดู (proper noun) :: The Hindi language.
+  ภาษาฮินดี (phaasăa hindee) (proper noun) :: The Hindi language.
+===hit===
+  ตี (tī) (verb) :: To hit.
+  อัด (ad) (verb) :: To hit.
+===hitch===
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+===Hmong===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===hold===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+  กอด (/gɔd/) (verb) :: To hold on to someone.
+  อม (om) (verb) :: To hold something in one's mouth.
+  ถือ (thūe) (verb) :: To hold.
+===home===
+  บ้าน (bâan) :: house, home
+===homeland===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===homework===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===honesty===
+  ซื่อสัตย์ (seusat) (noun) :: honesty
+===hook===
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+  ตะขอ (ta kaw) (noun) :: A hook.
+===hope===
+  หวัง (wang) (verb) :: To hope.
+===horse===
+  ม้า (máa) (noun) :: horse
+===hot===
+  เผ็ด (pèt) :: spicy, hot, pungent, peppery
+  เผ็ด (pèt) :: to be spicy, to be hot, to be pungent, to be peppery
+  ร้อน (ron) (adjective) :: hot
+  แกงเผ็ด (gaeng pèt) :: red curry, hot curry
+===house===
+  บ้าน (bâan) :: house, home
+===Hua===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===hug===
+  กอด (/gɔd/) (verb) :: To hug.
+===huge===
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+===hugging===
+  เกี่ยว (gìaaw) (adjective) :: (is) entangled with, (is) hugging, (is) embracing
+===human===
+  คน (khon) (noun) :: people, person, guy, man, human being
+  มนุษย์ (ma nud) (noun) :: human being
+===husband===
+  สวามี (sawaamii) (noun) :: A husband.
+===if===
+  ถ้า (tâa) (conjunction) :: if
+===ignite===
+  ก่อ (kaw) (verb) :: To ignite.
+===image===
+  พระ (prá) (noun) :: Buddha image, god
+===images===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===imagine===
+  จินตนา (jintana) (verb) :: To imagine.
+===implore===
+  ขอร้อง (raw róng) (verb) :: To implore.
+===impolite===
+  อะไรวะ (àrai wá) :: what the heck? (impolite)
+  วะ (wá) :: ending particle (impolite)
+  ว่ะ (wâ) :: ending particle (impolite)
+===important===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===include===
+  มี {{th-verb|tr=mee}} :: to contain, to include
+===inclusive===
+  เรา (rao) (pronoun) :: {archaic} we/us (inclusive)
+===indeed===
+  จริง (jing) :: really, truly, indeed
+===indicate===
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+===indicator===
+  ฯลฯ (paiyanyai) (noun) :: abbreviation indicator.
+===inebriate===
+  เมา (mao) (verb) :: To inebriate.
+===information===
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===ink===
+  หมึก (mèuk) (noun) :: ink
+===insert===
+  เสียบ (siāb) (verb) :: To insert.
+  แทรก (saek) (verb) :: To insert.
+===instructor===
+  อาจารย์ (aajaan) :: instructor, senior instructor
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===intend===
+  ตั้งใจ (tangjai) (verb) :: To intend.
+===intentionally===
+  โกหก (kō hok) (verb) :: To give false information intentionally.
+===interrogative===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===intimidate===
+  ขู่ (khoo) (verb) :: To intimidate.
+===Ireland===
+  ประเทศไอร์แลนด์ (prathed ailaen) (proper noun) :: Ireland
+===iron===
+  โลหะ (loha) (noun) :: iron.
+===island===
+  เกาะ (gòr) (noun) :: island, isle
+===isle===
+  เกาะ (gòr) (noun) :: island, isle
+===January===
+  มกราคม (/mog.gɑ.rɑː.kom/) (proper noun) :: January
+===Japan===
+  ภาษาญี่ปุ่น (proper noun) :: Japanese, the language spoken in Japan.
+  ญี่ปุ่น (yii pun, ñiipun) (proper noun) :: Japan
+===Japanese===
+  ภาษาญี่ปุ่น (proper noun) :: Japanese, the language spoken in Japan.
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+===jar===
+  โอ่ง (ōng) (noun) :: A water jar.
+  โอ่ง (ōng) (noun) :: A gigantic jar.
+===Jatukham===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===Javanese===
+  ภาษาชวา (paasăa chawaa) (proper noun) :: The Javanese language.
+===Jedi===
+  เจได (jàydai) :: Jedi
+===jewel===
+  มณี (mani) (noun) :: A jewel.
+===job===
+  งาน (ngaan) (noun) :: job.
+===Joseph===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===joy===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+  ความสุข (kwām suk) (noun) :: joy
+  สุข (suk) (noun) :: joy
+===July===
+  กรกฎาคม (karakadākhom) (proper noun)Category:th:Animals :: July
+===jump===
+  กระโดด (kra dōd) (verb) :: to jump
+===June===
+  มิถุนายน (/mɪ.tʰʊ.nɑː.jon/) (proper noun) :: June.
+===junior===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===Kampuchea===
+  กัมพูชา (gampoochaa) (proper noun) :: Cambodia, Kampuchea
+===kangaroo===
+  จิงโจ้ (jing-jôh) (noun) :: kangaroo
+===Kannada===
+  ภาษากันนฑะ (paasăa kannatha) (proper noun) :: The Kannada language.
+===Kashmiri===
+  ภาษากัศมีร์ (paasăa kadsamii) (proper noun) :: The Kashmiri language.
+  ภาษาแคชเมียร์ (paasăa khaechamiaa) (proper noun) :: The Kashmiri language.
+===keep===
+  เก็บ (keb) (verb) :: To keep.
+  หวาน (wăan) :: to keep turning
+===คํ่า===
+  ฅํ่า (kham) (noun) :: {obsolete}Alternative spelling of คํ่า.
+===ฆ่า===
+  ฃ๋า (khaa) (verb) :: {obsolete}Alternative spelling of ฆ่า.
+===แคลน===
+  แฅน (khaen) (noun) :: {obsolete}Alternative spelling of แคลน.
+===แข้ง===
+  แฅ่ง (khaeng) (noun) :: {obsolete}Alternative spelling of แข้ง.
+===แคว===
+  แฅว (khaew) (noun) :: {obsolete}Alternative spelling of แคว.
+===แขวน===
+  แฃวน (khwaen) (verb) :: {obsolete}Alternative spelling of แขวน.
+===ขัน===
+  ฃัน (khan) (verb) :: {obsolete}Alternative spelling of ขัน.
+===ข้าว===
+  เข๋า (khao) (noun) :: {obsolete} Alternative spelling of ข้าว.
+===ขาย===
+  ฃาย (khaai) (verb) :: {obsolete}Alternative spelling of ขาย.
+===เข้า===
+  เฃ๋า (khao) (verb) :: {obsolete}Alternative spelling of เข้า.
+===เขียน===
+  เฃียน (khian) (noun) :: {obsolete}Alternative spelling of เขียน.
+===khene===
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===เขตต์===
+  เฃตร (khéd) (noun) :: {obsolete}Alternative spelling of เขตต์.
+===Khmer===
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+  เขมร (khàmen) :: Khmer
+===คน===
+  ฅน (khod) (noun) :: {obsolete}Alternative spelling of คน.
+===คุ้ม===
+  ฅุ๋ม (khum) (noun) :: {obsolete}Alternative spelling of คุ้ม.
+===ขึ้น===
+  ฃึ๋น (khuen) (verb) :: {obsolete}Alternative spelling of ขึ้น.
+===ขุน===
+  ฃุน (khun) (noun) :: {obsolete}Alternative spelling of ขุน.
+===คืน===
+  ฅีน (khued) (noun) :: {obsolete}Alternative spelling of คืน.
+===ขวา===
+  ฃวา (khwaa) (noun) :: {obsolete}Alternative spelling of ขวา.
+===ความ===
+  ฅวาม (khawm) (noun) :: {obsolete}Alternative spelling of ความ.
+===คว้าง===
+  ฅวาง (khawng) (noun) :: {obsolete}Alternative spelling of คว้าง.
+===ขวด===
+  ฃวด (khuad) (noun) :: {obsolete} Alternative spelling of ขวด.
+===คอ===
+  ฅอ (khaw) (noun) :: {obsolete}Alternative spelling of คอ.
+===ข้อความ===
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+===ค้อน===
+  ฅ้อน (khon) (noun) :: {obsolete}Alternative spelling of ค้อน.
+===ของ===
+  ฃอง (khawng) (noun) :: {obsolete}Alternative spelling of ของ.
+===ขยัน===
+  ฃยัน (khayan) (adjective) :: {obsolete}Alternative spelling of ขยัน.
+===kick===
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+  เตะ (té) (verb) :: To kick.
+===kid===
+  เด็ก (dek) (noun) :: kid
+===kill===
+  ฆ่า (kâa) (verb) :: to kill
+===king===
+  ราชา {{th-noun|tr=raachaa}} :: king
+===King===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===kingdom===
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+===Kingdom===
+  สหราชอาณาจักร (saha raachaaanaajak) (proper noun) :: The United Kingdom.
+  ประเทศไทย (Prathēt Thai) (proper noun) :: Kingdom of Thailand
+===kiss===
+  จูบ (jūb) (verb) :: To kiss.
+===knit===
+  ถัก (thak) (verb) :: To knit.
+===know===
+  รู้ (rū) (verb) :: To know.
+===knowledge===
+  เวทย์ (vet) (noun) :: knowledge
+===Korat===
+  มาเลศ (maa léd) (noun) :: A Korat cat.
+  แมวโคราช (khoraad) (noun) :: A Korat cat.
+  แมวมาเลศ (maew maa léd) (noun) :: A Korat cat.
+  แมวสีสวาด (maew sii sawaad) (noun) :: A Korat cat.
+===Korea===
+  ประเทศเกาหลี (prathed kaolee) (proper noun) :: Korea
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+===Korean===
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+===Krungthep===
+  กรุงเทพ (groong têp) (proper noun) :: Bangkok, Krungthep
+===land===
+  ภูมิ (pʰūmi) (noun) :: land
+===language===
+  ภาษา {{th-noun|tr=paasăa}} :: language
+  นิรุกติ (níróoktì) :: language
+  ภาษาไทย (phaasăa thai) (proper noun) :: the Thai language
+  ภาษาญี่ปุ่น (proper noun) :: Japanese, the language spoken in Japan.
+  ภาษาเขมร (paasăa khamen) (proper noun) :: The Khmer language (Cambodian).
+  ภาษารัสเซีย (paasăa rátsia) (proper noun) :: the Russian language
+  ภาษาฮินดู (proper noun) :: The Hindi language.
+  ภาษาโปรตุเกส (paasăa bprohdtòogèt) (proper noun) :: The Portuguese language.
+  ภาษากรีก (paasăa grèek) (proper noun) :: The Greek language.
+  ภาษาอังกฤษ (paasăa anggrìt) (proper noun) :: English language
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+  ภาษาลาว (phaasăa laao) (proper noun) :: The Lao language.
+  ภาษาพม่า (phaasăa phamaa) (proper noun) :: The Burmese language.
+  ภาษาเกาหลี (phaasăa kao lee) (proper noun) :: The Korean language.
+  ภาษาฮินดี (phaasăa hindee) (proper noun) :: The Hindi language.
+  ภาษาสเปน (phaasăa sapén) (proper noun) :: The Spanish language.
+  ภาษาจีนกวางตุ้ง (paasăa jeen kwaangtung) (proper noun) :: the Cantonese language
+  ภาษาฝรั่งเศส (paasăa farang séd) (proper noun) :: The French language.
+  ภาษาดัตช์ (paasăa dad) (proper noun) :: The Dutch language.
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+  ภาษาเวียดนาม (paasăa wiaadnnaam) (proper noun) :: The Vietnamese language.
+  ภาษาฮิบรู (paasăa hib ruu) (proper noun) :: The Hebrew language.
+  ภาษาอาหรับ (paasăa aa rab) (proper noun) :: The Arabic language.
+  ภาษาอูรดู (paasăa uuduu) (proper noun) :: The Urdu language.
+  ภาษามราฐี (paasăa maraathii) (proper noun) :: The Marathi language.
+  ภาษาอัสสัม (paasăa adsam) (proper noun) :: The Assamese language.
+  ภาษาเบงกาลี (paasăa bengaalii) (proper noun) :: The Bengali language.
+  ภาษาโฑครี (paasăa thookhrii) (proper noun) :: The Dogri language.
+  ภาษาคุชราต (paasăa khudcharaat) (proper noun) :: The Gujarati language.
+  ภาษากันนฑะ (paasăa kannatha) (proper noun) :: The Kannada language.
+  ภาษากัศมีร์ (paasăa kadsamii) (proper noun) :: The Kashmiri language.
+  ภาษาแคชเมียร์ (paasăa khaechamiaa) (proper noun) :: The Kashmiri language.
+  ภาษามณีปุระ (paasăa maniipura) (proper noun) :: The Meitei language.
+  ภาษาเนปาล (paasăa neepaan) (proper noun) :: The Nepali language.
+  ภาษาปัญจาบ (paasăa panjaab) (proper noun) :: The Punjabi language.
+  ภาษาโอริยา (paasăa ooriyaa) (proper noun) :: The Oriya language.
+  ภาษาสันสกฤต (paasăa sǎnsakrit) (proper noun) :: The Sanskrit language.
+  ภาษาสันตาลี (paasăa santaalii) (proper noun) :: The Santali language.
+  ภาษาสินธุ (paasăa sinthuu) (proper noun) :: The Sindhi language.
+  ภาษาสินธี (paasăa sinthii) (proper noun) :: The Sindhi language.
+  ภาษาทมิฬ (paasăa tamin) (proper noun) :: The Tamil language.
+  ภาษาเตลูกู (paasăa teeluuguu) (proper noun) :: The Telugu language.
+  ภาษาบาลี (paasăa baalii) (proper noun) :: The Pali language.
+  ภาษาชวา (paasăa chawaa) (proper noun) :: The Javanese language.
+  ภาษาสก็อต (paasăa sacot) (proper noun) :: The Scots language.
+===Lao===
+  ภาษาลาว (phaasăa laao) (proper noun) :: The Lao language.
+===Laos===
+  ลาว (Lāw) :: Laos
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+  ประเทศลาว (prathed laao) (proper noun) :: Laos
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===large===
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+  ใหญ่ (yài) (verb) :: to be big, to be large, to be huge, to be enormous
+===Large===
+  ไพศาล (pai sān) (adjective) :: Large.
+===last===
+  นามสกุล (nām sa kun) (noun) :: last name.
+===late===
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===later===
+  หลัง (lăng) :: next, after, later, hind
+===latest===
+  ใหม่ (mài) :: new, latest, recent
+===lay===
+  วาง (wāng) (verb) :: To lay something down.
+===lead===
+  นำ (num) (verb) :: to lead.
+  พา (phaa) (verb) :: To lead.
+===leader===
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===leading===
+  พระ (prá) (noun) :: leading actor, star; hero
+===lean===
+  พาด (pād) (verb) :: To lean.
+===learn===
+  ศึกษา (sèuksăa) :: to study, to learn
+===lecturer===
+  อาจารย์ (aajaan) :: lecturer
+===leech===
+  ทาก (thàak) (noun) :: leech
+===left===
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+===Leo===
+  ราศีสิงห์ (rāsī sing) (proper noun) :: Leo
+===letter===
+  ณ (n; naw nēn) :: The 19th letter of the Thai alphabet
+  ด (d; daw dek) :: The 20th letter of theThai alphabet
+  ก (k; gaw gai) :: The first letter of the Thai alphabet
+  ข (kh; khaw khai) :: The second letter of the Thai alphabet.
+  ค (kh; khaw khwaai) :: The fourth letter of the Thai alphabet
+  ฃ (kh; khǎw khùad) :: {obsolete}The third letter of the Thai alphabet.
+  ฅ (kh; kkaw kkon) :: {obsolete}The fifth letter of the Thai alphabet.
+  ฆ (kh; kaw ra kang) :: The sixth letter of the Thai alphabet.
+  ง (ng; ngaw nguu) :: The seventh letter of the Thai alphabet.
+  จ (j; jaw jād) :: The eighth letter of the Thai alphabet
+  ฉ (ch; chaw ching) :: The ninth letter of the Thai alphabet
+  ช (ch, sh; chaw cháang) :: The tenth letter of the Thai alphabet.
+  ซ (s; saw sō) :: The 11th letter of the Thai alphabet
+  ฌ (ch, sh; chaw kachoe) :: The 12th letter of the Thai alphabet.
+  ญ (y, ñ; yaw ying) :: The 13th letter of the Thai alphabet
+  ฎ (d; daw cha dā) :: The 14th letter of the Thai alphabet.
+  ฏ (t; taw pa tak) :: The 15th letter of the Thai alphabet
+  ฐ (th; thaw thān) :: The 16th letter of the Thai alphabet
+  ฑ (th; thaw mon thō) :: The 17th letter of the Thai alphabet.
+  ฒ (th; thaw pū thao) :: The 18th letter of the Thai alphabet.
+  ต (t; taw tào) :: The 21st letter of the Thai alphabet
+    (All words preceded by ต)ตาตี๋ตกต้นตาล ตอตาลตำตูด ตายใต้ต้นตาล :: --
+    tā tī tok ton tān taw tān tam tūd tāi tai ton tān :: --
+    A Chinese old man falls from a palm tree. A palm tree's stump stabs him. He dies under a palm tree. :: --
+  ถ (th; thaw thung) :: The 22nd letter of the Thai alphabet
+  ท (th; thaw tháhǎan) :: The 23rd letter of the Thai alphabet.
+  ธ (th; thaw thong) :: The 24th letter of the Thai alphabet.
+  น (n; naw nū) :: The 25th letter of the Thai alphabet
+  บ (b; baw bai máai) :: The 26th letter of the Thai alphabet.
+  ป (p; paw plaa) :: The 27th letter of the Thai alphabet.
+  ผ (p, ph; paw pueng) :: The 28th letter of the Thai alphabet
+  ฝ (f; faw fā) :: The 29th letter of the Thai alphabet
+  พ (ph; phaw phaan) :: The 30th letter of the Thai alphabet
+  ฟ (f; faw fan) :: The 31st letter of the Thai alphabet
+  ภ (p, ph; paw sam pao) :: The 32nd letter of the Thai alphabet
+  ม (m; maw mā) :: The 33rd letter of the Thai alphabet
+  ย (y; yaw yak) :: The 34th letter of the Thai alphabet
+  ร (r; raw ruea) :: The 35th letter of the Thai alphabet
+  ล (l; law ling) :: The 36th letter of the Thai alphabet
+  ว (w, v; waw waen) :: The 37th letter of the Thai alphabet
+  ศ (s; saw sālā) :: The 38th letter of the Thai alphabet
+  ษ (s; saw rue sī) :: The 39th letter of the Thai alphabet
+  ส (s; saw suea) :: The 40th letter of the Thai alphabet
+  ห (h; haw hēb) :: The 41st letter of the Thai alphabet
+  ฬ (l; law ju lā) :: The 42nd letter of the Thai alphabet
+  อ (a; āw āng) :: The 43rd letter of the Thai alphabet
+  ฮ (h; haw nok hūk) :: The 44th letter of the Thai alphabet
+  ฤ (r; reu) :: A letter of the Thai alphabet.
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฦ (l; leu) :: {obsolete}A letter of the Thai alphabet.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===Libra===
+  ราศีตุลย์ (rāsī tun) (proper noun) :: Libra
+===lick===
+  เลีย (liā) (verb) :: To lick.
+===lie===
+  นอน (nawn) (verb) :: to lie down
+===life===
+  ชีวิต (chē wit) (noun) :: life
+  ชาติ (chāt) (noun) :: life
+===lift===
+  เชิด (cherd) (verb) :: To lift.
+===light===
+  รัศมี (rad sa mī) (noun) :: ray of light
+  ฟ้า (fáa) (adjective) :: light blue, sky blue
+===like===
+  ชอบ (chōb) (verb) :: To like.
+===line===
+  บรรทัด (bantát) :: straight line
+===lines===
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===link===
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+===lion===
+  สิงห์ (sing) (noun) :: A lion.
+  สิงโต (singto) (noun) :: A lion
+===liquid===
+  น้ำ (náam) :: fluid, liquid
+===listen===
+  ฟัง (fang) (verb) :: to listen
+===literally===
+  ๕๕๕ (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol (literally, 555)
+===lol===
+  555 (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol
+  ๕๕๕ (ห้า ๆๆ, hâa-hâa-hâa) :: {{context|Internet slang}} lol (literally, 555)
+===long===
+  ยาว (yaao) (adjective) :: long
+===look===
+  มอง (mawng) (verb) :: To look.
+===lose===
+  แพ้ (pāe) (verb) :: to lose (to be defeated)
+  หลง (long) (verb) :: To lose one's way.
+  เสีย (siā) (verb) :: To lose something.
+===lot===
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===lotus===
+  ปัทมา (padtʰamaa) (noun) :: A lotus.
+===love===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===Love===
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===lower===
+  ลด (lod) (verb) :: To lower.
+  ลง (long) (verb) :: To lower.
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===ลึก===
+  ฦก (lūek) (adjective) :: {obsolete}Alternative spelling of ลึก.
+===luscious===
+  หวาน (wăan) :: luscious
+===ลือ===
+  ฦๅ (leu) (verb) :: {obsolete} Alternative spelling of ลือ.
+===ลือชา===
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+===ly===
+  หวาน (wăan) :: effortlessly
+===m===
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===main===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===mainland===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===major===
+  ใหญ่ (yài) (verb) :: to be major, to be extensive, to be sizeable
+===make===
+  ทำ (tham) (verb) :: To make.
+  สบตา (sob tā) (verb) :: To make eye contact.
+  ลือชา (lue chaa) (verb) :: To make one famous.
+  แกง (gaeng) :: to make a curry
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===มะขาม===
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+===male===
+  เพศชาย (ped-chai) (noun) :: male
+  ชาย (chaai) (noun) :: male
+  ผม :: I; me. For male speakers.
+  เทวดา (teewádaa) (noun) :: deity, male angel
+===males===
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===man===
+  คน (khon) (noun) :: people, person, guy, man, human being
+  ตี๋ (tī) (noun) :: A man.
+  ตี๋ (tī) (noun) :: A Chinese man.
+===manatee===
+  แมนนาที (manatee) (noun) :: A manatee
+===Mandarin===
+  ภาษาจีนกลาง (paasăa jeen glaang) (proper noun) :: the Mandarin language
+===Marathi===
+  ภาษามราฐี (paasăa maraathii) (proper noun) :: The Marathi language.
+===March===
+  มีนาคม (/mɪː.nɑː.kom/) (proper noun) :: March.
+===mark===
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===marker===
+  ถูก (thūk) (verb) :: (passive voice marker)
+===marking===
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===marriage===
+  วิวาห์ (vivaa) (noun) :: marriage.
+===marvelous===
+  อัศจรรย์ (asajan) (adjective) :: marvelous
+===master===
+  อาจารย์ (aajaan) :: master
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===maternal===
+  ตา (taa) :: maternal grandfather
+  ยาย (yaai) (noun) :: maternal grandmother
+===mathematics===
+  เลข (lek) (noun) :: mathematics.
+===matter===
+  การเงิน (gaan ngern) (noun) :: monetary matters
+===May===
+  พฤษภาคม (prueksaphākhom) (proper noun) :: May.
+===me===
+  ผม :: I; me. For male speakers.
+  ฉัน :: I; me (for female speakers)
+  กู (kuu) (pronoun) :: {informal} I/me
+  กู (kuu) (pronoun) :: {archaic} I/me
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+  เรา (rao) (pronoun) :: I, me(to equals)
+===measure===
+  วัด (wát) (verb) :: to measure
+===measuring===
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===meditation===
+  สมาธิ (samaathí) (noun) :: meditation
+===medium===
+  โทรทัศน์ (thorāthāt) (noun) :: television (medium), TV
+===meet===
+  พบ (pob) (verb) :: To meet.
+===meeting===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===Meitei===
+  ภาษามณีปุระ (paasăa maniipura) (proper noun) :: The Meitei language.
+===mellifluous===
+  หวาน (wăan) :: mellifluous
+===Meo===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===merit===
+  กุศล (kuson) (noun) :: merit
+===mermaid===
+  เงือก (ngeuk) (noun) :: mermaid
+  นางเงือก (nangngeuk) (noun) :: mermaid
+===messenger===
+  ทูต (thūd) (noun) :: A messenger who is a deity.
+  ยมทูต (thūd) (noun) :: A messenger of death.
+===metal===
+  โลหะ (loha) (noun) :: metal.
+  ตาไก่ (taagài) (noun) :: metal eyelet, grommet
+===Miao===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===milk===
+  น้ำนม (náam nom) (noun) :: milk
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===millionaire===
+  เศรษฐี (sedthee) (noun) :: A millionaire.
+===mind===
+  ถือสา (thūe sā) (verb) :: To mind.
+  หฤทัย (hareuthai) (noun) :: mind
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===minister===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+===ministry===
+  กระทรวง (gràsuang) :: ministry
+===Ministry===
+  กระทรวงศึกษาธิการ (gràsuang sèuksăa-tígaan) :: Ministry of Education
+===minute===
+  นาที (nathi) (noun) :: minute
+===mistake===
+  โทษะ (thosa) (noun) :: mistake.
+===mister===
+  นาย (naai) (noun) :: mister, Mr.
+===mix===
+  คน (khon) (verb) :: to stir, to scramble, to mix
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+  ผสม (pa som) (verb) :: To mix.
+===mode===
+  ประการ (prakān) (noun) :: mode
+===moment===
+  ตา (taa) :: time, turn, moment
+===monastery===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===Monday===
+  วันจันทร์ (wan jan) (noun) :: Monday
+===monetary===
+  การเงิน (gaan ngern) (noun) :: monetary matters
+===money===
+  เงิน (ngern) (noun) :: money
+===monk===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+===monkey===
+  ลิง (ling) :: monkey
+  วานร (vanorn) (noun) :: monkey
+===month===
+  เดือน (deuan) (noun) :: month.
+===moon===
+  เดือน (deuan) (noun) :: moon.
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+===Moon===
+  จันทร์ (jan) (noun) :: Moon.
+===mop===
+  ถู (thoo) (verb) :: To mop.
+===morality===
+  ศีล (sin) (noun) :: morality
+===more===
+  ใหม่ (mài) :: again, once more
+===morning===
+  สวัสดี (sàwàtdee) :: good morning, good afternoon, good evening
+  อรุณสวัสดิ์ (àroon sàwàt) :: good morning
+  อรุณ (arun) (noun) :: morning
+===most===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===mother===
+  แม่ (mâe) (noun) :: A mother.
+===motorised===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===motorized===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===mountain===
+  ภูเขา (puu khao) (noun) :: A mountain.
+  เขา (kʰao) (noun) :: A mountain.
+===mountainous===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===mouse===
+  หนู (nŭu) :: rat, mouse
+===moustache===
+  มัสสุ (mátsòo) (noun) :: moustache, mustache
+  ทาฐิกะ (taatìgà) (noun) :: moustache, mustache
+===mouth===
+  อม (om) (verb) :: To hold something in one's mouth.
+  ปาก (pāk) (noun) :: A mouth.
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===move===
+  ก้าว (gâao) (noun) :: To move forward
+  ไป :: To go (move to another place).
+===mow===
+  เกี่ยว (gìaaw) (verb) :: to reap, to harvest, to mow
+===Mr===
+  นาย (naai) (noun) :: mister, Mr.
+===Muay===
+  มวยไทย (noun) :: Muay Thai (literally: Free Fight or Free Boxing)
+===much===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===mushroom===
+  เห็ด (hèt) (noun) :: mushroom
+===music===
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===mustache===
+  มัสสุ (mátsòo) (noun) :: moustache, mustache
+  ทาฐิกะ (taatìgà) (noun) :: moustache, mustache
+===Myanmar===
+  พม่า (pámâa) (proper noun) :: Myanmar, Burma
+===nag===
+  บ่น (bon) (verb) :: to nag
+===name===
+  ชื่อ (chùu) :: name
+  นาม (nām) (noun) :: name
+  นามสกุล (nām sa kun) (noun) :: last name.
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+===nation===
+  ชาติ (chāt) (noun) :: nation
+===nationality===
+  คน (khon) (prefix) :: (designating nationality or ethnicity) -an
+===neck===
+  คอ (khaw) (noun) :: A neck.
+===neon===
+  นีออน (nīon) :: neon
+===Nepali===
+  ภาษาเนปาล (paasăa neepaan) (proper noun) :: The Nepali language.
+===nerve===
+  ประสาท (prasad) (noun) :: nerve
+===nestle===
+  ซบ (sob) (verb) :: To nestle.
+===new===
+  ใหม่ (mài) (adjective) :: new
+  ใหม่ (mài) :: new, latest, recent
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===next===
+  หลัง (lăng) :: next, after, later, hind
+===nickname===
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+===night===
+  ราตรี (rātrī) (noun) :: night.
+===nightmare===
+  ฝันร้าย (făn ráai) (noun) :: nightmare
+===nine===
+  ๙ (เก้า, kào) :: 9 (nine)
+===ninth===
+  ฉ (ch; chaw ching) :: The ninth letter of the Thai alphabet
+===no===
+  ฤๅ (reu) (particle) :: {{context|formal|poetic|archaic}} not, no
+  ไม่ (mai) (adverb) :: no
+  ไม่ (mai) (interjection) :: no
+  ไม่ (mai) (noun) :: no
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===nobility===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===noble===
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+===nobleman===
+  ขุน (khun) (noun) :: A nobleman.
+===nor===
+  ไม่ (mai) (conjunction) :: nor
+===northeast===
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===northern===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===not===
+  ฤๅ (reu) (particle) :: {{context|formal|poetic|archaic}} not, no
+===nothingness===
+  ศูนย์ (sūn) (noun) :: nothingness
+===nouns===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===November===
+  พฤศจิกายน (pruedsajikāyon) (proper noun) :: November.
+===numb===
+  ชา (chaa) (adjective) :: numb
+===number===
+  เลข (lek) (noun) :: number.
+===numeral===
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+===numerals===
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+===nut===
+  ลูก (lôok) (noun) :: fruit, nut
+===nutrient===
+  สารอาหาร (sān āhān) (noun) :: nutrient
+===nutrition===
+  โภชนะ (pōchana) (noun) :: nutrition
+  โภชนา (pōchanā) (noun) :: nutrition
+===object===
+  กรีด (kleed) (verb) :: To scrape with a sharp object.
+  หาง (hāng) (noun) :: An object's end
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+===observe===
+  ทำ (tham) (verb) :: To observe.
+===occupation===
+  กงกาง (gong gaang) (noun) :: occupation, business, affair
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+===ocean===
+  มหาสมุทร (mahā samud) (noun) :: ocean.
+  มหาสมุทร (mahā samud) (noun) :: great ocean.
+===October===
+  ตุลาคม (tulākhom) (proper noun) :: October.
+===off===
+  ปิด (pid) (verb) :: To turn off.
+  เย็น (yen) (verb) :: to be cold, to be cool, to chill, to cool off
+===officers===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===ogre===
+  ยักษ์ (yak) (noun) :: An ogre
+===oil===
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+  น้ำมันพริก (náam man prík) (noun) :: chili oil
+===old===
+  แก่ (kàe) (adjective) :: old
+===ology===
+  ศาสตร์ (sàat) :: science, -ology
+===once===
+  ใหม่ (mài) :: again, once more
+===only===
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+===open===
+  เปิด (/pɜːd/) (verb) :: To open.
+  งัด (ngad) (verb) :: To pry open.
+===opposite===
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+===order===
+  ใช้ (chai) (verb) :: to order
+===organ===
+  ตา (taa) :: eye (organ)
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===Oriya===
+  ภาษาโอริยา (paasăa ooriyaa) (proper noun) :: The Oriya language.
+===other===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===over===
+  พาด (pād) (verb) :: To drape over.
+===own===
+  มี {{th-verb|tr=mee}} :: to have, to own
+===p===
+  เย็น (yen) (noun) :: late afternoon, early evening (4:00 p.m. to 6:00 p.m.)
+===pad===
+  ผัดไทย (Pad Thai) (noun) :: pad thai
+===painting===
+  ภาพ (phab) (noun) :: A painting.
+===pair===
+  เมถุน (méthun) (noun) :: A pair.
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+  กางเกง (noun), :: A pair of pants.
+===Pakistan===
+  ประเทศปากีสถาน (prathed pakistaan) (proper noun) :: Pakistan
+===Pali===
+  ภาษาบาลี (paasăa baalii) (proper noun) :: The Pali language.
+===palm===
+  ต้นตาล (ton tān) (noun) :: A palm tree
+  ตาล (tān) (noun) :: A palm tree.
+===Panda===
+  หมีแพนด้า (Mi-Pan-da) (noun) :: Panda bear.
+===pants===
+  กางเกง (noun), :: A pair of pants.
+===papaya===
+  มะละกอ (má-lágow) (noun) :: papaya
+===paragraph===
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===Paris===
+  ปารีส (paris) (proper noun) :: Paris .
+===parrot===
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+  นกแก้ว (nók gâew) :: parrot
+===part===
+  แหก (hāek) (verb) :: To part.
+  หลัง (lăng) :: {anatomy} back, back part
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+===particle===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+  วะ (wá) :: ending particle (impolite)
+  ว่ะ (wâ) :: ending particle (impolite)
+  ฤๅ (reu) (particle) :: question particle
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===pass===
+  ผ่าน (pān) (verb) :: To pass.
+===passive===
+  ถูก (thūk) (verb) :: (passive voice marker)
+===paternal===
+  ย่า (yâa) (noun) :: paternal grandmother
+  ปู่ (pòo) (noun) :: paternal grandfather
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+===pearl===
+  มุกดา (muk dā) (noun) :: pearl
+===peck===
+  จิก (jik) (verb) :: To peck.
+===pedagogue===
+  อาจารย์ (aajaan) :: pedagogue
+===penis===
+  ควย (khuay) (noun) :: {{informal|vulgar}} penis
+  กระดอ (noun) :: {{context|colloquial|vulgar}} penis
+  ลึงค์ {{th-noun|tr=leung}} :: {anatomy} penis.
+===people===
+  คน (khon) (noun) :: people, person, guy, man, human being
+  คนญี่ปุ่น (khon yêe-bpòon) (noun) :: Japanese person, Japanese people
+  ประชา (prachā) (noun) :: people
+  ชน (chon) (noun) :: people
+  ชาว (chao) (noun) :: people, person
+  ชาวอังกฤษ (chaoangkrit) (noun) :: British people
+  ชาวอังกฤษ (chaoangkrit) (noun) :: English people
+  คนอังกฤษ (khonangkrit) (noun) :: British person or people.
+  คนไทย (khon thai) (noun) :: Thai people
+  ชาวไทย (chao tai) (proper noun) :: Thai people
+  ความรัก (khwamrak) (noun) :: love.
+    ความรักทำให้คนตาบอด :: Love can make people blind.
+===pepper===
+  พริกไทย (prik tai) (noun) :: pepper
+  พริกขี้หนู (prik khē nū) (noun) :: guinea-pepper
+  พริกชี้ฟ้า (prik shē fā) (noun) :: goat pepper
+  พริกหยวก (prik yuak) (noun) :: bell pepper
+===peppery===
+  เผ็ด (pèt) :: spicy, hot, pungent, peppery
+  เผ็ด (pèt) :: to be spicy, to be hot, to be pungent, to be peppery
+===perceive===
+  เข้าใจ (khao jai) (verb) :: To perceive.
+  รับรู้ (rab rū) (verb) :: To perceive.
+===personality===
+  กริยา (karīyā) (noun) :: personality
+===pertaining===
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===petroleum===
+  น้ำมัน (náam man) (noun) :: oil (petroleum or comestible)
+===พาฬ===
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===Phra===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===Phrabat===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===phrase===
+  วลี (wálee) (noun) :: phrase
+===Phraya===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===ภูเขา===
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+===physical===
+  พละ (phala) (noun) :: A physical education.
+===pickled===
+  พริกดอง (prík dong) (noun) :: pickled chilli
+===picture===
+  ภาพ (phab) (noun) :: A picture.
+  สุจิตรา (sujitra) (noun) :: A good picture.
+===pie===
+  หวาน (wăan) :: as easy as pie
+===pig===
+  สุกร (su korn) (noun) :: pig
+===piglet===
+  หมู (mŏo) (noun) :: piglet
+===pinch===
+  หยิก (yik) (verb) :: to pinch
+  หนีบ (neeb) (verb) :: To pinch.
+===Pisces===
+  ราศีมีน (rāsī mīn) (proper noun) :: Pisces
+===pitcher===
+  กุมภ์ (kum) (noun) :: A pitcher.
+===place===
+  ไป :: To go (move to another place).
+  ณ (nā) (preposition) :: on (a place or date)
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+===planet===
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+===plant===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+===plate===
+  จาน (jaan) (noun) :: plate
+===play===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===pleasantly===
+  หวาน (wăan) :: comfortably, pleasantly
+===plug===
+  เสียบ (siāb) (verb) :: To plug.
+===poem===
+  กวี (ka wī) (noun) :: poem
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===poison===
+  พิษ (phid) (noun) :: poison
+===popular===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===Portuguese===
+  ภาษาโปรตุเกส (paasăa bprohdtòogèt) (proper noun) :: The Portuguese language.
+===possess===
+  อำ (am) (verb) :: To possess.
+===post===
+  อาจารย์ (aajaan) :: teacher, schoolteacher, post-secondary teacher
+===postpone===
+  ผัด (pad) (verb) :: To postpone
+===power===
+  ศักดิ (sak) (noun) :: power
+  ศักดิ์ (sak) (noun) :: power
+  ฤทธิ์ (rid) (noun) :: power.
+===praise===
+  เชิดชู (cherd choo) (verb) :: To praise.
+===pray===
+  สวด (sùat) (verb) :: to pray
+===prayer===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===preach===
+  เทศนา (têt-sà-naa) :: to preach
+===precarious===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===precept===
+  ศีล (sin) (noun) :: precept
+===precious===
+  แก้ว (gâew) (adjective) :: beloved, cherished, darling, precious
+===precise===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===prefix===
+  คน (khon) (prefix) :: (agent prefix, person who) -er, -or (designating an occupation)
+===president===
+  ประธาน (prathān) (noun) :: president
+===press===
+  กด (kod) (verb) :: To press.
+===pretend===
+  แกล้ง (klaeng) (verb) :: To pretend.
+===priest===
+  พระ (prá) (noun) :: monk, abbot, priest, minister, cleric
+===prince===
+  ราชกุมาร (rachakuman) (noun) :: A prince.
+===Prince===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===princess===
+  ราชกุมารี (rachakumaree) (noun) :: A princess.
+===profit===
+  ผล (pon) (noun) :: profit
+===prognosticate===
+  ทำนาย (thom nāy) (verb) :: To prognosticate.
+===pronouns===
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+===property===
+  ของ (khawng) (noun) :: A property.
+  ทรัพย์ (sab) (noun) :: A property.
+===prophet===
+  ศาสดา (sàat-sa-da) :: prophet
+===prostitute===
+  แพศยา (paedsaya) (noun) :: prostitute
+  โสเภณี (sopeni) (noun) :: prostitute
+===protection===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===proverb===
+  ภาษิต (pasit) (noun) :: proverb
+===provides===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===pry===
+  งัด (ngad) (verb) :: To pry open.
+===pull===
+  ดึง (dueng) (verb) :: To pull.
+===punch===
+  ชก (chok) (verb) :: to punch
+  ต่อย (toy) (verb) :: To punch.
+===punctuation===
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+===pungent===
+  เผ็ด (pèt) :: spicy, hot, pungent, peppery
+  เผ็ด (pèt) :: to be spicy, to be hot, to be pungent, to be peppery
+===Punjabi===
+  ภาษาปัญจาบ (paasăa panjaab) (proper noun) :: The Punjabi language.
+===push===
+  ดัน (dan) (verb) :: to push
+===put===
+  ใส่ (sài) (verb) :: To put something in.
+===quality===
+  คุณภาพ (kun na pāb) (noun) :: quality
+===question===
+  ฤๅ (reu) (particle) :: question particle
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===radius===
+  รัศมี (rad sa mī) (noun) :: radius
+===raise===
+  ชู (shoo) (verb) :: To raise.
+===ระลึก===
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+===ram===
+  เมษ (méd) (noun) :: A ram.
+===Rammathep===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===rancid===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+===rank===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===rat===
+  หนู (nŭu) :: rat, mouse
+===rattan===
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+===ray===
+  รัศมี (rad sa mī) (noun) :: ray of light
+===re===
+  ใหม่ (mài) :: re-
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===read===
+  อ่าน (ān) (verb) :: To read.
+===real===
+  จริง (jing) :: real, true, actual
+===really===
+  จริง (jing) :: really, truly, indeed
+===reap===
+  เกี่ยว (gìaaw) (verb) :: to reap, to harvest, to mow
+===rear===
+  หลัง (lăng) :: back, rear
+===reason===
+  เหตุ (hed) (noun) :: A reason.
+===recall===
+  ระลึก (raleuk) (verb) :: recall
+===receive===
+  รับ (rab) (verb) :: To receive.
+===recent===
+  ใหม่ (mài) :: new, latest, recent
+===recite===
+  ท่อง (thawng) (verb) :: To recite.
+===record===
+  อัด (ad) (verb) :: To record.
+===red===
+  แกงเผ็ด (gaeng pèt) :: red curry, hot curry
+===reed===
+  ลิ้น (lín) (noun) :: tongue, reed
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===regions===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===related===
+  เกี่ยว (gìaaw) (verb) :: to concern, to be concerned with, to be related to, to be about
+===relative===
+  ญาติ (yāt) (noun) :: relative
+===relatively===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===relax===
+  เย็น (yen) (verb) :: to relax
+===religion===
+  ศาสนา {{th-noun|tr=sàat-sà-naa}} :: religion
+===religious===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===remaining===
+  เศษ (séd) (adjective) :: A remaining of something.
+===remember===
+  จำ (jam) (verb) :: To remember.
+  จดจำ (jod jam) (verb) :: To remember.
+===remove===
+  แกะ (kae) (verb) :: To remove.
+===repair===
+  ซ่อม (verb) :: To repair.
+===reptile===
+  งู (nguu) :: snake (reptile).
+===resin===
+  ยาง (yaang) :: resin
+===resist===
+  ต่อต้าน (tawtawn) (verb) :: To resist
+===respect===
+  บูชา (bū chā) (verb) :: respect
+  เคารพ (cao rob) (noun) :: respect
+  คารวะ (cā ra wa) (noun) :: respect
+===respond===
+  โต้ (tō) (verb) :: To respond.
+===responsibility===
+  กงกาง (gong gaang) (noun) :: responsibility, duty
+===rest===
+  พัก (pak) (verb) :: To rest.
+===reveal===
+  ปรากฏ (praa kod) (verb) :: To reveal.
+===revered===
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+===rice===
+  ข้าว (khâao) (noun) :: rice
+  นา (naa) (noun) :: rice field.
+===right===
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===rise===
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+===river===
+  แม่น้ำ (maenam) (noun) :: river
+===rob===
+  ปล้น (plon) (verb) :: To rob.
+===rock===
+  ศิลา (silā) (noun) :: rock
+===room===
+  วิหาร (wíhăan) :: a meeting room or prayer room containing religious images in a Buddhist monastery
+===rope===
+  เชือก (chêuak) :: rope, string, cord, thread
+===rose===
+  กุหลาบ (kulàab) (noun) :: rose
+===row===
+  บรรทัด (bantát) :: row
+===royal===
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  หลวง (lŭang) (adjective) :: royal, of the court, of the crown
+===rub===
+  สี (sěe) (verb) :: To rub.
+  ถู (thoo) (verb) :: To rub.
+===rubber===
+  ยาง (yaang) :: tire, rubber
+===rudder===
+  หางเสือเรือ (hāng sūe rūea) (noun) :: rudder
+  หางเสือเลี้ยว (hāng sūe liāw) (noun) :: rudder
+  หางเสือ (hāng sūe) (noun) :: rudder
+===ruin===
+  วินาศ (winaad) (adjective) :: ruin.
+===rule===
+  กฎ (kod) (noun) :: rule
+===ruler===
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===rumor===
+  ลือ (leuu) (verb) :: To spread a rumor.
+===run===
+  วิ่ง (wîng) (verb) :: To run.
+===Russia===
+  รัสเซีย (rátsia) (proper noun) :: Russia
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+===Russian===
+  ภาษารัสเซีย (paasăa rátsia) (proper noun) :: the Russian language
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+===Russians===
+  รัสเซีย (rátsia) (adjective) :: pertaining to Russia, Russian, or Russians.
+===sadness===
+  ความทุกข์ (kwām thuk) (noun) :: sadness
+===safety===
+  สวัสดี (sàwàtdee) (noun) :: safety, security
+===sagacious===
+  แก้ว (gâew) (adjective) :: {poetic} virtuous, sagacious
+===Sagittarius===
+  ราศีธนู (rāsī thanū) (proper noun) :: Sagittarius
+===said===
+  สวัสดีครับ {m} (sàwàtdee kráp) (interjection) :: hello, said by males
+  สวัสดีค่ะ {f} (sàwàtdee kâ) (interjection) :: hello, said by females
+  ดิฉัน (dichan) (pronoun) :: (said by female only) me
+===saint===
+  นักบุญ (nag-boon) (noun) :: saint
+===salad===
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+===Salad===
+  ยำ (yam) (noun) :: Salad.
+===samadhi===
+  สมาธิ (samaathí) (noun) :: samadhi
+===Sanskrit===
+  ภาษาสันสกฤต (paasăa sǎnsakrit) (proper noun) :: The Sanskrit language.
+===Santali===
+  ภาษาสันตาลี (paasăa santaalii) (proper noun) :: The Santali language.
+===Saturday===
+  วันเสาร์ (wan săo) (noun) :: Saturday
+===sauce===
+  น้ำพริก (náam prík) (noun) :: chilli sauce
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===savage===
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===scatter===
+  กระจาย (kra jāi) (verb) :: To scatter.
+===school===
+  โรงเรียน (rohng rian) (noun) :: school
+===schoolteacher===
+  อาจารย์ (aajaan) :: teacher, schoolteacher, post-secondary teacher
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===science===
+  ศาสตร์ (sàat) :: science, -ology
+===Scorpio===
+  ราศีพิจิก (rāsī phijik) (proper noun) :: Scorpio
+===scorpion===
+  พิจิก (pijik) (noun) :: A scorpion.
+===Scotland===
+  ประเทศสก็อตแลนด์ (prathed sacotlaen) (proper noun) :: Scotland
+===Scots===
+  ภาษาสก็อต (paasăa sacot) (proper noun) :: The Scots language.
+===scramble===
+  คน (khon) (verb) :: to stir, to scramble, to mix
+===scrape===
+  ถาก (thāk) (verb) :: to scrape
+  ขูด (khūd) (verb) :: To scrape.
+  กรีด (kleed) (verb) :: To scrape with a sharp object.
+===scratch===
+  เกา (kao) (verb) :: To scratch.
+===scribble===
+  จด (jod) (verb) :: To scribble.
+===scrub===
+  ขัด (khad) (verb) :: to scrub
+===scrutinize===
+  ค้น (kon) (verb) :: To scrutinize.
+===sea===
+  ทะเล (tháleh) (noun) :: sea
+===seal===
+  แมวน้ำ (maewnam) (noun) :: seal
+===sealion===
+  สิงโตทะเล (singtothalay) (noun) :: A sealion
+===search===
+  หา (hā) (verb) :: To search.
+  ค้น (kon) (verb) :: To search.
+===season===
+  ฤดู {{th-noun|tr=reudoo}} :: A season.
+===secondary===
+  อาจารย์ (aajaan) :: teacher, schoolteacher, post-secondary teacher
+===security===
+  สวัสดี (sàwàtdee) (noun) :: safety, security
+  ยาม (yam) (noun) :: security guard
+===see===
+  เห็น (hen) (verb) :: To see.
+===seek===
+  ค้น (kon) (verb) :: To seek.
+===seer===
+  ฤษี (rue sī) (noun) :: seer
+  ฤๅษี (rue sī) (noun) :: seer
+===seize===
+  คว้า (kwāh) (verb) :: To seize.
+  เกี่ยว (gìaaw) (verb) :: to hook, to seize, to hitch, to link, to hook up
+===sell===
+  ขาย (khaai) (verb) :: To sell.
+===send===
+  ส่ง (song) (verb) :: To send.
+===senior===
+  อาจารย์ (aajaan) :: instructor, senior instructor
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===sepak===
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+===September===
+  กันยายน (kanyāyon) (proper noun) :: September
+===sermon===
+  เทศนา (têt-sà-naa) :: to give a sermon
+===service===
+  บริการ (barikan) (noun) :: service
+===seven===
+  ๗ (เจ็ด, jèt) :: 7 (seven)
+===seventh===
+  ง (ng; ngaw nguu) :: The seventh letter of the Thai alphabet.
+===shadow===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===shake===
+  เขย่า (kha yao) (verb) :: To shake.
+===shaped===
+  เป็ด (bpèt) (noun) :: duck-shaped boat
+===sharp===
+  กรีด (kleed) (verb) :: To scrape with a sharp object.
+===she===
+  ธ (tha) (pronoun) :: {archaic} he, she
+  เพื่อน (phuean) (pronoun) :: he, she, they
+  เธอ (tʰer) (pronoun) :: she
+  เขา (kʰao) (pronoun) :: he, she
+===She===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===sheep===
+  แกะ (kae) (noun) :: sheep
+===shin===
+  แข้ง (khaeng) (noun) :: A shin.
+===shun===
+  อด (od) (verb) :: To shun.
+===Siam===
+  สยาม (sayaam) (proper noun) :: Siam
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Siam
+===Siamese===
+  วิเชียรมาศ (wichian maad) (noun) :: Siamese cat.
+  แมววิเชียรมาศ (maew wichian maad) (noun) :: Siamese cat.
+===sickness===
+  โรค (rok) (noun) :: sickness
+===side===
+  เหลี่ยม (lìam) (noun) :: edge, side
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+  ขวา (khwaa) (noun) :: right side(opposite of left).
+===sided===
+  เหลี่ยม (lìam) (adjective) :: pertaining to edges or sides, -sided, -edged
+===sign===
+  ธวัช (thavad) (noun) :: sign
+===silk===
+  ไหม (mãi) (noun) :: silk
+===silver===
+  เงิน (ngern) (noun) :: silver
+===similar===
+  วาฬ (waan, waala) (noun) :: savage animal, similar to พาฬ
+===Sindhi===
+  ภาษาสินธุ (paasăa sinthuu) (proper noun) :: The Sindhi language.
+  ภาษาสินธี (paasăa sinthii) (proper noun) :: The Sindhi language.
+===sing===
+  ร้อง (rawng) (verb) :: To sing.
+===sister===
+  พี่ (pêe) (noun) :: elder sister
+  น้อง (nóng) (noun) :: younger sister
+===sit===
+  นั่ง (nang) (verb) :: To sit.
+===situation===
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+===Siva===
+  กาล (kān) (noun) :: the god Siva
+===six===
+  ๖ (หก, hòk) :: 6 (six)
+  หก (hòk) (noun) :: six
+===sixth===
+  ฆ (kh; kaw ra kang) :: The sixth letter of the Thai alphabet.
+===sizeable===
+  ใหญ่ (yài) (verb) :: to be major, to be extensive, to be sizeable
+===skip===
+  ข้าม (khām) (verb) :: To skip.
+===sky===
+  นภา (napā) (noun) :: sky
+  อัมพร (ampʰawn) (noun) :: sky
+  ฟ้า (fáa) (adjective) :: light blue, sky blue
+  ฟ้า (fáa) (noun) :: sky, firmament, heaven
+===slap===
+  ตบ (tob) (verb) :: to slap
+===sleep===
+  นอน (nawn) (verb) :: to sleep
+  หลับ (lab) (verb) :: to sleep
+===slut===
+  หญิงชาติชั่ว (yĭng châat chûa) (noun) :: {vulgar} slut
+===small===
+  ลูก (lôok) (noun) :: small ball
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+===smell===
+  ดม (dom) (verb) :: To smell.
+===smelling===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+===smile===
+  ยิ้ม {{th-verb|tr=yim}} :: to smile
+===smoke===
+  สูบ (soob) (verb) :: To smoke.
+  เสพ (séb) (verb) :: To smoke.
+===snake===
+  งู (nguu) :: snake (reptile).
+===sneeze===
+  จาม (jām) (verb) :: to sneeze
+===snow===
+  หิมะ (hima) (noun) :: snow.
+===snuff===
+  สูด (sood) (verb) :: To snuff.
+===so===
+  เพื่อว่า (puea wā) (conjunction) :: so
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===soap===
+  สบู่ (sabu) (noun) :: soap
+===sold===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===soldier===
+  ทหาร (thahan) (noun) :: soldier
+===Somdej===
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===some===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===someone===
+  กอด (/gɔd/) (verb) :: To hold on to someone.
+===son===
+  ลูก (lôok) (noun) :: a son or daughter
+  บุตร (boot) (noun) :: A son.
+  กุมาร (kumān) (noun) :: A son.
+===sorcery===
+  ผี (phĕe) (adjective) :: spiritual (in sorcery)
+===soup===
+  แกง (gaeng) :: soup, stew
+===South===
+  ประเทศเกาหลีใต้ (prathed kaolee tai) (proper noun) :: South Korea
+===southern===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===sovereign===
+  จักร (jak) (noun) :: sovereign
+===Spanish===
+  ภาษาสเปน (phaasăa sapén) (proper noun) :: The Spanish language.
+===speak===
+  พูด (pôot) (verb) :: to speak
+===speakers===
+  ผม :: I; me. For male speakers.
+  ฉัน :: I; me (for female speakers)
+===spear===
+  ปฏัก (patak) (noun) :: spear
+===speech===
+  ภาษา {{th-noun|tr=paasăa}} :: speech
+  นิรุกติ (níróoktì) :: speech
+===spelling===
+  ฦๅ (leu) (verb) :: {obsolete} Alternative spelling of ลือ.
+  ฃวด (khuad) (noun) :: {obsolete} Alternative spelling of ขวด.
+  ฅน (khod) (noun) :: {obsolete}Alternative spelling of คน.
+  ฅอ (khaw) (noun) :: {obsolete}Alternative spelling of คอ.
+  ฅวาม (khawm) (noun) :: {obsolete}Alternative spelling of ความ.
+  แฅว (khaew) (noun) :: {obsolete}Alternative spelling of แคว.
+  ฅุ๋ม (khum) (noun) :: {obsolete}Alternative spelling of คุ้ม.
+  ฅ้อน (khon) (noun) :: {obsolete}Alternative spelling of ค้อน.
+  ฅีน (khued) (noun) :: {obsolete}Alternative spelling of คืน.
+  แฅน (khaen) (noun) :: {obsolete}Alternative spelling of แคลน.
+  แฅ่ง (khaeng) (noun) :: {obsolete}Alternative spelling of แข้ง.
+  ฅวาง (khawng) (noun) :: {obsolete}Alternative spelling of คว้าง.
+  ฅํ่า (kham) (noun) :: {obsolete}Alternative spelling of คํ่า.
+  ฃ๋า (khaa) (verb) :: {obsolete}Alternative spelling of ฆ่า.
+  ฃาย (khaai) (verb) :: {obsolete}Alternative spelling of ขาย.
+  มะฃาม (ma khaam) (noun) :: {obsolete}Alternative spelling of มะขาม.
+  ภูเฃา (puu khao) (noun) :: {obsolete}Alternative spelling of ภูเขา.
+  เฃ๋า (khao) (verb) :: {obsolete}Alternative spelling of เข้า.
+  เข๋า (khao) (noun) :: {obsolete} Alternative spelling of ข้าว.
+  ฃึ๋น (khuen) (verb) :: {obsolete}Alternative spelling of ขึ้น.
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+  ฃุน (khun) (noun) :: {obsolete}Alternative spelling of ขุน.
+  ฃวา (khwaa) (noun) :: {obsolete}Alternative spelling of ขวา.
+  แฃวน (khwaen) (verb) :: {obsolete}Alternative spelling of แขวน.
+  ฃ้อความ (khaw khwaam) (noun) :: {obsolete}Alternative spelling of ข้อความ.
+  ฃัน (khan) (verb) :: {obsolete}Alternative spelling of ขัน.
+  ฃอง (khawng) (noun) :: {obsolete}Alternative spelling of ของ.
+  เฃียน (khian) (noun) :: {obsolete}Alternative spelling of เขียน.
+  เฃตร (khéd) (noun) :: {obsolete}Alternative spelling of เขตต์.
+  ฃยัน (khayan) (adjective) :: {obsolete}Alternative spelling of ขยัน.
+  ฦก (lūek) (adjective) :: {obsolete}Alternative spelling of ลึก.
+  รฦก (ra luenk) (verb) :: {obsolete}Alternative spelling of ระลึก.
+  ฦๅชา (lue chaa) (noun) :: {obsolete}Alternative spelling of ลือชา.
+===spicy===
+  เผ็ด (pèt) :: spicy, hot, pungent, peppery
+  เผ็ด (pèt) :: to be spicy, to be hot, to be pungent, to be peppery
+===spill===
+  หก (hòk) (verb) :: to spill
+===spin===
+  หมุน (mun) (verb) :: To spin.
+  ปั่น (pan) (verb) :: To spin.
+===spirit===
+  ผี (phĕe) (noun) :: ghost, spirit, demon
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===spiritual===
+  ผี (phĕe) (adjective) :: spiritual (in sorcery)
+===spit===
+  ถ่ม (thom) (verb) :: to spit
+===splatter===
+  หก (hòk) (verb) :: to splatter
+===spoken===
+  ภาษาญี่ปุ่น (proper noun) :: Japanese, the language spoken in Japan.
+===sport===
+  กีฬา (kila) (noun) :: sport
+===spread===
+  กระจาย (kra jāi) (verb) :: To spread.
+  ลือ (leuu) (verb) :: To spread a rumor.
+===square===
+  เหลี่ยม (lìam) (adjective) :: angled, angular, square
+    หน้าเหลี่ยม (nâa lìam) :: square face
+===squeeze===
+  บีบ (bēb) (verb) :: to squeeze
+===stab===
+  เสียบ (siāb) (verb) :: To stab.
+  แทง (thāeng) (verb) :: To stab.
+===stand===
+  ยืน (yūen) (verb) :: To stand.
+===star===
+  ดารา (daaraa) (noun) :: A star.
+  พระ (prá) (noun) :: leading actor, star; hero
+===stare===
+  มอง (mawng) (verb) :: To stare.
+===stars===
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+===state===
+  รัฐ (rat) (noun) :: state
+===statement===
+  ข้อความ (khaw khwaam) (noun) :: statement.
+===States===
+  สหรัฐอเมริกา (saharad americaa) (proper noun) :: The United States
+===steal===
+  ขโมย (khamoi) (verb) :: To steal.
+===stew===
+  แกง (gaeng) :: soup, stew
+===stick===
+  เกาะ (gòr) (verb) :: to adhere, to attach, to stick, to bind
+===sting===
+  ตำ (tam) (verb) :: To sting.
+===stinking===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+===stir===
+  คน (khon) (verb) :: to stir, to scramble, to mix
+  ผัด (pad) (verb) :: To stir-fry
+===stone===
+  ศิลา (silā) (noun) :: stone
+===stop===
+  หยุด (yud) (verb) :: To stop.
+  ห้าม (hām) (verb) :: To stop.
+===storm===
+  พายุ (phaayu) (noun) :: A storm
+===story===
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+===straight===
+  บรรทัด (bantát) :: straight line
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===straightedge===
+  บรรทัด (bantát) :: ruler, straightedge (for measuring or drawing straight lines)
+===street===
+  ใหญ่ (yài) (adjective) :: important, main
+    ถนนใหญ่ (tànŏn yài) :: main street, boulevard
+    หนังใหญ่ (năng yài) :: grand shadow play
+    แผ่นดินใหญ่ (pàen din yài) :: mainland
+===strength===
+  พล (pʰon) (noun) :: strength.
+===string===
+  เชือก (chêuak) :: rope, string, cord, thread
+  ด้าย (dâai) :: thread, string, cord, yarn
+===strong===
+  เขียว (khĭeow) (adjective) :: stinking, rancid, rank, bad smelling, strong smelling
+===study===
+  ศึกษา (sèuksăa) :: to study, to learn
+  เรียน (riān) (verb) :: To study.
+===stuff===
+  ของ (khawng) (noun) :: stuff.
+===stump===
+  ตอ (taw) (noun) :: A stump.
+===stupa===
+  เจดีย์ (jedi) (noun) :: chedi, stupa
+===subject===
+  ประธาน (prathān) (noun) :: subject
+===success===
+  ประสิทธิ์ (prasid) (noun) :: success
+===suck===
+  ดูด (dūd) (verb) :: To suck.
+  สูบ (soob) (verb) :: To suck.
+===suddenly===
+  เร็ว (reo) (adverb) Sc=Thai :: suddenly
+===Sun===
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+===Sunday===
+  วันอาทิตย์ (wan aathít) (noun) :: Sunday
+===superior===
+  หลวง (lŭang) (adjective) :: great, big, superior, chief
+  นาย (naai) (noun) :: superior, master, head, boss, chief, leader, commander
+===superiors===
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+===surf===
+  โต้คลื่น (tō kluen) (verb) :: To surf.
+===surrender===
+  ยอม (yawm) (verb) :: To surrender.
+===swallow===
+  กลืน (gleun) (verb) :: To swallow.
+===swan===
+  หงส์ (hong) (noun) :: A swan.
+===sweat===
+  เหงื่อ (ngèua) (noun) :: A sweat.
+===sweep===
+  ปัด (pad) (verb) :: To sweep.
+  กวาด (kwād) (verb) :: To sweep.
+===sweet===
+  หวาน (wăan) :: sweet, sweet-tasting
+===swim===
+  ว่าย (wāi) (verb) :: To swim.
+  ว่ายนํ้า (wāi nām) (verb) :: To swim.
+===sword===
+  ดาบ (dàap) (noun) :: sword
+===symbol===
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+===t===
+  อย่า (yàa) (contraction) :: don't
+===tadpole===
+  ลูกกบ (lôok gòp) (noun) :: tadpole
+===tail===
+  หาง (hāng) (noun) :: A tail
+===take===
+  เกาะ (gòr) (verb) :: to hold, to cling, to arrest, to catch, to grab, to take
+===ตะขอ===
+  ตะฃอ (ta kaw) (noun) :: {obsolete}Alternative spelling of ตะขอ.
+===takraw===
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+===talkative===
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+===tamarind===
+  มะขาม (ma khaam) (noun) :: A tamarind.
+===Tamil===
+  ภาษาทมิฬ (paasăa tamin) (proper noun) :: The Tamil language.
+===task===
+  งาน (ngaan) (noun) :: task.
+===Tasmania===
+  รัฐแทสเมเนีย (rát tâetmaynia) :: Tasmania
+===taste===
+  รส (ród) (noun) :: A taste.
+  ชิม (chim) (verb) :: To taste.
+===tasting===
+  หวาน (wăan) :: sweet, sweet-tasting
+===Taurus===
+  ราศีพฤษภ (rāsī prued) (proper noun) :: Taurus
+===tax===
+  ภาษี (pā sī) (noun) :: tax
+===tea===
+  ชา (cha) (noun) :: tea
+===teach===
+  สอน (sawn) (verb) :: To teach.
+===teacher===
+  อาจารย์ (aajaan) :: teacher, schoolteacher, post-secondary teacher
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===teapot===
+  กา (kaa) (noun) :: teapot
+===tease===
+  แกล้ง (klaeng) (verb) :: To tease.
+===television===
+  โทรทัศน์ (thorāthāt) (noun) :: television (medium), TV
+===tell===
+  บอก (bok) (verb) :: to tell
+===Telugu===
+  ภาษาเตลูกู (paasăa teeluuguu) (proper noun) :: The Telugu language.
+===temple===
+  วัด (wát) :: a wat: a type of buddhist temple
+  วิหาร (wíhăan) :: temple
+===temples===
+  องค์จาตุคามรามเทพ (ong jātūkhām rāmatêp) :: Jatukham Rammathep (a popular amulet sold by some Buddhist temples that provides the bearer protection and good fortune)
+===ten===
+  ๑๐ (สิบ, sìp) :: 10 (ten)
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+===tense===
+  กาล (kān) (noun) :: {linguistics} verb tense
+===tenth===
+  ช (ch, sh; chaw cháang) :: The tenth letter of the Thai alphabet.
+===testicle===
+  อัณฑะ (antha) (noun) :: testicle
+===thai===
+  ผัดไทย (Pad Thai) (noun) :: pad thai
+===Thai===
+  ไทย (Tai) (adjective) :: Thai
+  ภาษาไทย (phaasăa thai) (proper noun) :: the Thai language
+  คนไทย (khon thai) (noun) :: Thai person
+  คนไทย (khon thai) (noun) :: Thai people
+  มวยไทย (noun) :: Muay Thai (literally: Free Fight or Free Boxing)
+  ณ (n; naw nēn) :: The 19th letter of the Thai alphabet
+  ด (d; daw dek) :: The 20th letter of theThai alphabet
+  ก (k; gaw gai) :: The first letter of the Thai alphabet
+  ข (kh; khaw khai) :: The second letter of the Thai alphabet.
+  ค (kh; khaw khwaai) :: The fourth letter of the Thai alphabet
+  ฃ (kh; khǎw khùad) :: {obsolete}The third letter of the Thai alphabet.
+  ฅ (kh; kkaw kkon) :: {obsolete}The fifth letter of the Thai alphabet.
+  ฆ (kh; kaw ra kang) :: The sixth letter of the Thai alphabet.
+  ง (ng; ngaw nguu) :: The seventh letter of the Thai alphabet.
+  จ (j; jaw jād) :: The eighth letter of the Thai alphabet
+  ฉ (ch; chaw ching) :: The ninth letter of the Thai alphabet
+  ช (ch, sh; chaw cháang) :: The tenth letter of the Thai alphabet.
+  ซ (s; saw sō) :: The 11th letter of the Thai alphabet
+  ฌ (ch, sh; chaw kachoe) :: The 12th letter of the Thai alphabet.
+  ญ (y, ñ; yaw ying) :: The 13th letter of the Thai alphabet
+  ฎ (d; daw cha dā) :: The 14th letter of the Thai alphabet.
+  ฏ (t; taw pa tak) :: The 15th letter of the Thai alphabet
+  ฐ (th; thaw thān) :: The 16th letter of the Thai alphabet
+  ฑ (th; thaw mon thō) :: The 17th letter of the Thai alphabet.
+  ฒ (th; thaw pū thao) :: The 18th letter of the Thai alphabet.
+  ต (t; taw tào) :: The 21st letter of the Thai alphabet
+    (All words preceded by ต)ตาตี๋ตกต้นตาล ตอตาลตำตูด ตายใต้ต้นตาล :: --
+    tā tī tok ton tān taw tān tam tūd tāi tai ton tān :: --
+    A Chinese old man falls from a palm tree. A palm tree's stump stabs him. He dies under a palm tree. :: --
+  ถ (th; thaw thung) :: The 22nd letter of the Thai alphabet
+  ท (th; thaw tháhǎan) :: The 23rd letter of the Thai alphabet.
+  ธ (th; thaw thong) :: The 24th letter of the Thai alphabet.
+  น (n; naw nū) :: The 25th letter of the Thai alphabet
+  บ (b; baw bai máai) :: The 26th letter of the Thai alphabet.
+  ป (p; paw plaa) :: The 27th letter of the Thai alphabet.
+  ผ (p, ph; paw pueng) :: The 28th letter of the Thai alphabet
+  ฝ (f; faw fā) :: The 29th letter of the Thai alphabet
+  พ (ph; phaw phaan) :: The 30th letter of the Thai alphabet
+  ฟ (f; faw fan) :: The 31st letter of the Thai alphabet
+  ภ (p, ph; paw sam pao) :: The 32nd letter of the Thai alphabet
+  ม (m; maw mā) :: The 33rd letter of the Thai alphabet
+  ย (y; yaw yak) :: The 34th letter of the Thai alphabet
+  ร (r; raw ruea) :: The 35th letter of the Thai alphabet
+  ล (l; law ling) :: The 36th letter of the Thai alphabet
+  ว (w, v; waw waen) :: The 37th letter of the Thai alphabet
+  ศ (s; saw sālā) :: The 38th letter of the Thai alphabet
+  ษ (s; saw rue sī) :: The 39th letter of the Thai alphabet
+  ส (s; saw suea) :: The 40th letter of the Thai alphabet
+  ห (h; haw hēb) :: The 41st letter of the Thai alphabet
+  ฬ (l; law ju lā) :: The 42nd letter of the Thai alphabet
+  อ (a; āw āng) :: The 43rd letter of the Thai alphabet
+  ฮ (h; haw nok hūk) :: The 44th letter of the Thai alphabet
+  ฤ (r; reu) :: A letter of the Thai alphabet.
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฦ (l; leu) :: {obsolete}A letter of the Thai alphabet.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  รำไทย (ram tai) (noun) :: Thai dance
+  ชาวไทย (chao tai) (proper noun) :: a Thai person
+  ชาวไทย (chao tai) (proper noun) :: Thai people
+  แก้ว (gâew) (proper noun) :: A common Thai nickname for males and females
+  บาท (bàat) (noun) :: Baht, Thai currency, and the symbol is ฿
+  ห้า (hâa) (number) :: {cardinal} 5 (Thai numeral: ๕)
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+  หนึ่ง (nèung) (number) :: {cardinal} 1 (Thai numeral: ๑)
+  ศูนย์ (sūn) (number) :: {cardinal} 0 (Thai numeral: ๐)
+  โคมูตร (koh môot) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  เยี่ยววัว (yîeow wua) (noun) :: {{context|typography|chiefly|in poetry}} Thai punctuation mark ๛, marking the end of a story or poem
+  ฟองมัน (fongman) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph
+  ตาไก่ (taagài) (noun) :: {{context|typography|chiefly|in old script}} Thai punctuation mark ๏, marking the beginning of a new paragraph.
+  สิบเอ็ด (sìp èt) (number) :: {cardinal} 11 (Thai numerals: ๑๑)
+  หก (hòk) (number) :: {cardinal} 6 (Thai numeral: ๖)
+  สิบสาม (sìp săam) (number) :: {cardinal} 13 (Thai numerals: ๑๓)
+  สิบสอง (sìp sŏng) (number) :: {cardinal} 12 (Thai numerals: ๑๒)
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+===Thailand===
+  ไทย (Tai) (proper noun) :: Thailand
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  ประเทศไทย (Prathēt Thai) (proper noun) :: Kingdom of Thailand
+  เมืองไทย (meuang thai) (proper noun) :: Thailand
+  อ่าวไทย (āw tai) (proper noun) :: Gulf of Thailand
+  สยาม (sayaam) (proper noun) :: Thailand
+  ประเทศสยาม (prathed sayaam) (proper noun) :: Thailand
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===than===
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+===them===
+  เขา (kʰao) (pronoun) :: they/them
+===there===
+  มี {{th-verb|tr=mee}} :: there is, there are
+    ฉันมีหมวกหนึ่งใบ :: --
+    I have a hat :: --
+===they===
+  เพื่อน (phuean) (pronoun) :: he, she, they
+  เขา (kʰao) (pronoun) :: they/them
+===They===
+  รัก (rak) (verb) :: to love
+    พวกเขารักกันมาก :: They love each other so much.
+===thief===
+  โจร (jōn) (noun) :: thief
+  ขโมย (khamoi) (noun) :: A thief.
+===think===
+  คิด (khid) (verb) :: to think
+  นึก (nuek) (verb) :: To think.
+===third===
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+  ฃ (kh; khǎw khùad) :: {obsolete}The third letter of the Thai alphabet.
+===thirteen===
+  สิบสาม (sìp săam) (noun) :: thirteen
+===this===
+  นี้ (née) :: this
+===This===
+  แก้ว (gâew) (noun) :: parrot
+    นกแก้วตัวนี้พูดเก่ง :: This parrot is talkative
+  ครู (kroo) (noun) :: teacher, schoolteacher, instructor
+    ครูคนนี้ให้การบ้านเยอะจัง (kroo kon née hâi gaanbâan yúh jang) :: This teacher gives a lot of homework.
+===thousand===
+  หมื่น (mèun) (number) :: {cardinal} ten thousand (Thai numerals: ๑๐๐๐๐)
+===thread===
+  เชือก (chêuak) :: rope, string, cord, thread
+  ด้าย (dâai) :: thread, string, cord, yarn
+  แขวนบนเส้นด้าย (idiomatic) :: {idiomatic} to be in danger, calling for precise caution. To be in a precarious situation. To hang by a thread
+  ร้อย (roy) (verb) :: To thread.
+===threat===
+  ขู่ (khoo) (verb) :: To threat.
+===three===
+  ๓ (สาม, săam) :: 3 (three)
+===throw===
+  ทิ้ง (thing) (verb) :: to throw away
+  ขว้าง (kwāng) (verb) :: to throw
+===Thursday===
+  วันพฤหัสบดี (wan príhàtbàdee) (noun) :: {formal} Thursday
+  วันพฤหัส (wan príhàt) (noun) :: {informal} Thursday
+===tie===
+  มัด (mad) (verb) :: To tie.
+  ผูก (pook) (verb) :: To tie.
+===tiger===
+  เสือ (sĕua) (noun) :: A tiger.
+===tilt===
+  เอียง (iang) (verb) :: to tilt
+===time===
+  ตา (taa) :: time, turn, moment
+  กาล (kān) (noun) :: time, epoch, era
+  เวลา (wela) (noun) :: time
+  สมัย (samai) (noun) :: time
+  ยาม (yam) (noun) :: time
+===tire===
+  ยาง (yaang) :: tire, rubber
+===title===
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  สมเด็จเจ้าพระยา (sŏmdèt jâao práyaa) (noun) :: Somdej Chao Phraya, Prince (most senior Thai title for males)
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===tomorrow===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+===tongue===
+  ลิ้น (lín) (noun) :: tongue, reed
+  ชิวหา (ćhiw-hā) (noun) :: tongue
+===tooth===
+  ฟัน (fan) (noun) :: A tooth.
+===touch===
+  ถูก (thūk) (verb) :: to touch
+===tourist===
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===town===
+  เมือง (meuang) (noun) :: city, town
+  นคร (nakorn) (noun) :: city, town
+===traditional===
+  แคน (këën) (noun) :: khene (traditional free reed mouth organ of Laos and northeast Thailand)
+===transform===
+  แปลง (plaeng) (verb) :: To transform.
+===tree===
+  ต้นไม้ (tònmai) (noun) :: tree
+  พฤกษา (pruek sa) (noun) :: tree
+  เฌอ (chəə) (noun) :: tree
+  ต้นตาล (ton tān) (noun) :: A palm tree
+  ตาล (tān) (noun) :: A palm tree.
+===tricycle===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===triumph===
+  ชัย (chai) (noun) :: triumph
+===true===
+  จริง (jing) :: real, true, actual
+===truly===
+  จริง (jing) :: really, truly, indeed
+===trust===
+  ไว้ใจ (wai jai) (verb) :: To trust.
+===tsunami===
+  คลื่นสึนามิ (klêun sĕunăamí) :: tsunami
+===Tuesday===
+  วันอังคาร (wan angkaan) (noun) :: Tuesday
+===tuk===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===turn===
+  ตา (taa) :: time, turn, moment
+  เปิด (/pɜːd/) (verb) :: To turn on.
+  ปิด (pid) (verb) :: To turn off.
+===turning===
+  หวาน (wăan) :: to keep turning
+===tutor===
+  อาจารย์ (aajaan) :: tutor
+===TV===
+  โทรทัศน์ (thorāthāt) (noun) :: television (medium), TV
+===twelve===
+  สิบสอง (sìp sŏng) (noun) :: twelve
+===twins===
+  เมถุน (méthun) (noun) :: twins.
+===two===
+  ๒ (สอง, sááwng) :: 2 (two)
+===type===
+  ประการ (prakān) (noun) :: type
+  พิมพ์ (pim) (verb) :: To type.
+  วัด (wát) :: a wat: a type of buddhist temple
+===unconsciousness===
+  นิทรา (nitra) (noun) :: unconsciousness
+===under===
+  ใต้ (tāi) (preposition) :: under
+===United===
+  สหราชอาณาจักร (saha raachaaanaajak) (proper noun) :: The United Kingdom.
+  สหรัฐอเมริกา (saharad americaa) (proper noun) :: The United States
+===Urdu===
+  ภาษาอูรดู (paasăa uuduu) (proper noun) :: The Urdu language.
+===urine===
+  โคมูตร (koh môot) (noun) :: cow's urine.
+  เยี่ยววัว (yîeow wua) (noun) :: cow's urine
+===us===
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+  เรา (rao) (pronoun) :: {archaic} we/us (inclusive)
+===use===
+  วัด (wát) (verb) :: to use
+  ใช้ (chai) (verb) :: to use
+===used===
+  คุณ (khun) (particle) :: (particle used to formalize second and third person pronouns)
+  ฉิ่ง (ching) :: a pair of small cymbals used in the classical and folk music of Thailand
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+  อุทัย (uthai) (verb) :: To rise (used by Sun or stars).
+  ยำ (yam) (verb) :: To mix (used to cook salad).
+  พระ (prá) (noun) :: (title used with the name of a revered person, place, or object) royal
+  พระ (prá) (prefix) :: used to indicate the name of a planet or moon
+    พระจันทร์ (prá-jan) :: the moon
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===using===
+  แก้ว (gâew) (noun) :: drinking glass, cup, crystal
+    เขากำลังใช้แก้วใบนั้นดื่มนม :: She is using that glass to drink milk.
+===usually===
+  หมื่น (mèun) (number) :: a lower rank in the Thai nobility, usually held by relatively junior officers
+===variety===
+  ประการ (prakān) (noun) :: variety
+  แก้ว (gâew) (noun) :: {entomology} variety of caterpillar
+===vehicle===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===verb===
+  กริยา (karīyā) (noun) :: verb
+  กาล (kān) (noun) :: {linguistics} verb tense
+===verbs===
+  ใจ (jai) (noun) :: heart, mind, spirit. Commonly used in combination with verbs or with other nouns.
+===very===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ใหญ่ (yài) (adjective) :: big, very big, large, great
+===victory===
+  ชัย (chai) (noun) :: victory
+===Vientiane===
+  เวียงจันทน์ (wiang jan) (proper noun) :: Vientiane, the capital of Laos.
+===Vietnam===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  ญวน (proper noun), yuan, ñuan :: Vietnam
+===Vietnamese===
+  ภาษาญวน (paasăa yuan; paasăa ñuan) (proper noun) :: The Vietnamese language.
+  ภาษาเวียดนาม (paasăa wiaadnnaam) (proper noun) :: The Vietnamese language.
+===vinegar===
+  น้ำส้มพริกดอง (náam sôm prík dong) (noun) :: vinegar with chilli sauce
+===virginity===
+  พรหมจารี (pom ma jā rī) (noun) :: virginity
+  พรหมจรรย์ (pom ma jan) (noun) :: virginity
+===Virgo===
+  ราศีกันย์ (rāsī kan) (proper noun) :: Virgo
+===virtuous===
+  แก้ว (gâew) (adjective) :: {poetic} virtuous, sagacious
+===voice===
+  โฆษะ (khosa) :: voice.
+  ถูก (thūk) (verb) :: (passive voice marker)
+===volleyball===
+  ตะกร้อ (noun) {{IPA|/ta krɔː/}} :: sepak takraw, rattan ball, kick volleyball
+===vowel===
+  ฤๅ (ṝ; reu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+  ฦๅ (ḹ; leu) (letter) :: A letter of the Thai alphabet, considered a vowel.
+===wait===
+  รอ (/rɔ/) (verb) :: To wait.
+===wake===
+  ปลุก (pluk) (verb) :: To wake.
+===Wales===
+  เวลส์ (weél) (proper noun) :: Wales
+===walk===
+  เดิน (dern) (verb) :: to walk
+===wall===
+  ภิตติ (pid ti) (noun) :: wall
+===walrus===
+  วอลรัส (walrus) (noun) :: A walrus
+===want===
+  อยาก (/jɑːg/) (verb) :: To want.
+===wart===
+  หูด (hòot) (noun) :: wart
+===waste===
+  ผลาญ (plān) (verb) :: To waste.
+===wat===
+  วัด (wát) :: a wat: a type of buddhist temple
+===watch===
+  มอง (mawng) (verb) :: To watch.
+  เฝ้า (fao) (verb) :: To watch.
+===water===
+  น้ำ (náam) :: water
+  ชล (chon) (noun) :: water
+  โอ่ง (ōng) (noun) :: A water jar.
+  ควาย (kwaai) (noun) :: A water buffalo.
+===watermelon===
+  แตงโม (dtaeng moh) :: watermelon
+===way===
+  หลง (long) (verb) :: To lose one's way.
+===we===
+  เรา (rao) (pronoun) :: we, us(to superiors, to equals)
+  เรา (rao) (pronoun) :: {archaic} we/us (inclusive)
+===wealth===
+  ทรัพย์ (sab) (noun) :: wealth.
+===weary===
+  เหนื่อย (ngèuay) (adjective) :: weary.
+===wedding===
+  วิวาห์ (vivaa) (noun) :: A wedding.
+===Wednesday===
+  วันพุธ (wan pút) (noun) :: Wednesday
+===weed===
+  เป็ด (bpèt) (noun) :: {botany} Joseph's coat, joy weed, parrot plant (Alternanthera amoena)
+  วัชพืช (wát-pêut) (noun) :: weed
+===week===
+  สัปดาห์ (sap dā) (noun) :: week
+===whale===
+  ปลาวาฬ (pla wan) (noun) :: whale
+  วาฬ (waan, waala) (noun) :: whale
+===what===
+  อะไรวะ (àrai wá) :: what the heck? (impolite)
+  อะไร (àrai) :: {interrogative} what?
+  ฤๅ (reu) (pronoun) :: {{context|interrogative}} what, which
+===whatever===
+  อะไร (àrai) :: whatever
+===wheel===
+  จักร (jak) (noun) :: wheel, circle, disk, discus
+===wheeled===
+  ตุ๊กตุ๊ก (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+  ตุ๊กๆ (dtóok-dtóok) :: tuk-tuk (a motorized tricycle, a small 3-wheeled motorised vehicle, very common in Thailand).
+===when===
+  เมื่อ (mêua) (conjunction) :: when
+  ณ (nā) (preposition) :: of, from (a kingdom, when used as a part of a Thai noble family name)
+===which===
+  ฤๅ (reu) (pronoun) :: {{context|interrogative}} what, which
+===whose===
+  ม้ง (mong) (noun) :: Hmong, Miao, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+  แม้ว (máew) (noun) :: Miao, Hmong, Meo (an Asian ethnic group whose homeland is in the mountainous regions around Guizhou, southern China, and northern Vietnam, Laos, and Thailand).
+===will===
+  ธนาคาร (thanaakhaan) (noun) :: bank
+    ผมจะไปธนาคารพรุ่งนี้ :: I will go to the bank tomorrow.
+===win===
+  ชนะ (chana) (verb) :: To win.
+===wine===
+  ไวน์ (wai) (noun) :: wine
+===woman===
+  สตรี (satri) (noun) :: woman
+  นาง (nang) (noun) :: A woman
+  กัลยาณี (kalayaanee) (noun) :: A beautiful woman.
+===wonder===
+  สงสัย (song sai) (verb) :: To wonder.
+===word===
+  วาจา (wā jā) (noun) :: word
+  ศัพท์ (sab) (noun) :: A word.
+===words===
+  ภาษา {{th-noun|tr=paasăa}} :: words
+  นิรุกติ (níróoktì) :: words
+===world===
+  โลก (lōk) (noun) :: world
+===worship===
+  บูชา (bū chā) (verb) :: worship
+===wrest===
+  ฉก (chok) (verb) :: to wrest
+===write===
+  เขียน (kian) (verb) :: To write.
+  จด (jod) (verb) :: To write.
+===yarn===
+  ด้าย (dâai) :: thread, string, cord, yarn
+===yell===
+  ตะโกน (ta kōn) (verb) :: To yell.
+===yes===
+  ใช่ (chai) (adverb) :: yes
+  ใช่ (chai) (interjection) :: yes
+  ใช่ (chai) (noun) :: yes
+  หรือ (rĕu) (particle) :: final interrogative particle on a yes/no question
+===yet===
+  ถึงอย่างนั้น (thueng yāng nan) (conjunction) :: yet
+===you===
+  เธอ (tʰer) (pronoun) :: you
+===You===
+  คุณ :: You.
+  ท่าน :: You.
+  ไหม (măi) (particle) :: final interrogative particle.
+    คุณเป็นนักท่องเที่ยวใช่ไหม? (koon bpen náktôngtîeow châi măi?) :: You’re a tourist, is that right?
+===younger===
+  น้อง (nóng) (noun) :: younger brother
+  น้อง (nóng) (noun) :: younger sister
+  อา (aa) (noun) :: An paternal aunt who is younger than one's father.
+===Yu===
+  พระบาทสมเด็จพระเจ้าอยู่หัว (prábàat sŏmdèt prá jâo yù hŭa) (noun) :: Phrabat Somdej Phra Chao Yu Hua (a title of the King of Thailand)
+===zero===
+  ๐ (ศูนย์, súún) :: 0 (zero)
+  ศูนย์ (sūn) (noun) :: zero
+  ศูนย์ (sūn) (adjective) :: zero
+===zodiac===
+  ราศี (rāsī) (noun) :: zodiac
+
index 43b3c7cb5c8cc0cba1cd7c8ce25caa3a0c3139f5..29d8d7a7816c5c8867a0a01733ccd0873e0d867d 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.english 4601
+EntrySource: enwiktionary.english 4598
 
 Index: ZH ZH->EN
 ===1===
@@ -102,8 +102,9 @@ Index: ZH ZH->EN
 ***鮑魚***
   鮑魚, 鲍鱼 (bàoyú) :: abalone (edible univalve mollusc) (noun)
 ===be===
-  (Min Nan) 啤酒 (bih-luh), 麥仔酒 (be̍h-á-chiú), 米仔酒 (bí-á-chiú) :: beer (alcoholic drink made of malt) (noun)
   可能 (kěnéng) may be, possible :: may (possibly, but not certainly) (verb)
+===be̍h===
+  (Min Nan) 啤酒 (bih-luh), 麥仔酒 (be̍h-á-chiú), 米仔酒 (bí-á-chiú) :: beer (alcoholic drink made of malt) (noun)
 ===bèi===
   被 (bèi) + verb (particle) :: be (used to form the passive voice) (verb)
 ===被===
@@ -983,8 +984,6 @@ Index: ZH ZH->EN
   (Cantonese) 南瓜 (naam4 gwaa1),番瓜 (faan1 gwaa1) :: pumpkin (fruit of this plant) (noun)
 ===gwai===
   (Cantonese) 秋季 (cau<sup>1</sup>gwai<sup>3</sup>) :: autumn (season) (noun)
-===h===
-  (Min Nan) 啤酒 (bih-luh), 麥仔酒 (be̍h-á-chiú), 米仔酒 (bí-á-chiú) :: beer (alcoholic drink made of malt) (noun)
 ===hai1===
   (Cantonese) 閪 (hai1), 屄 ( bei1, hai1) :: cunt (genitalia) (noun)
 ===hai6===
@@ -1190,10 +1189,6 @@ Index: ZH ZH->EN
   美國國家航空航天局, 美国国家航空航天局 (Měiguó guójiā hángkōng hángtiānjú), (Taiwan) 美國國家航空暨太空總署, 美国国家航空暨太空总署 (Měiguó guójiā hángkōng jì tàikōng zǒngshǔ) :: NASA (National Aeronautics and Space Administration) ({{acronym}})
 ===ji===
   打败 (da bai), 击倒 (ji dao) :: abate (to bring down a person physically or mentally) (verb)
-  (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
-  (Min Nan) 今仔日 (kin-á-ji̍t) :: today (today (noun)) (noun)
-===Ji===
-  (Min Nan) 日本 (Ji̍t-pún) :: Japan (A Far East country in Asia) (proper noun)
 ***季***
   季 (jì), 季節, 季节 (jìjié) :: season (quarter of a year) (noun)
 ===ji5===
@@ -1412,6 +1407,11 @@ Index: ZH ZH->EN
   機器人, 机器人 (jīqì rén), 機械人, 机械人 (jīxièrén) :: robot (intelligent mechanical being) (noun)
 ***機器人***
   機器人, 机器人 (jīqì rén), 機械人, 机械人 (jīxièrén) :: robot (intelligent mechanical being) (noun)
+===ji̍t===
+  (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
+  (Min Nan) 今仔日 (kin-á-ji̍t) :: today (today (noun)) (noun)
+===Ji̍t===
+  (Min Nan) 日本 (Ji̍t-pún) :: Japan (A Far East country in Asia) (proper noun)
 ===jit6===
   (Cantonese) 太陽, 太阳, taai3 joeng4, 日頭, 日头, jat6 tau2, 熱頭, 热头, jit6 tau2 :: sun (the star around which the Earth revolves) (proper noun)
 ===jiǔ===
@@ -1586,8 +1586,6 @@ Index: ZH ZH->EN
   在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ===lì===
   日曆, 日历 (rìlì), 曆 (lì), 历 (lì), 曆法, 历法 (lìfǎ), (colloquial) 月份牌 (yuèfènpái) :: calendar (system by which time is divided) (noun)
-===li===
-  (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
 ***里***
   在 (zài), ...里 (...lǐ) (里) (traditional also: 裡, 裏) :: in (contained by) (preposition)
 ***裏***
@@ -1641,9 +1639,14 @@ Index: ZH ZH->EN
 ===líng===
   零 (líng), 〇 :: zero (numeric symbol of zero) (noun)
   零 (líng) (numeral: 〇, 零) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
+***〇***
+  零 (líng), 〇 :: zero (numeric symbol of zero) (noun)
+  零 (líng) (numeral: 〇, 零) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
 ***零***
   零 (líng), 〇 :: zero (numeric symbol of zero) (noun)
   零 (líng) (numeral: 〇, 零) :: zero (cardinal number before 1, denoting nothing) (cardinal number)
+===li̍t===
+  (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
 ===liù===
   星期六 (xīngqī liù) :: Saturday (day of the week) (noun)
   (Standard Chinese (Mandarin)) 六 (liù) (numeral: 陸) :: six (cardinal number) (cardinal number)
@@ -1750,8 +1753,6 @@ Index: ZH ZH->EN
   貿易, 贸易 (màoyì), 商業, 商业 (shāngyè) :: trade (business) (noun)
 ===may===
   可能 (kěnéng) may be, possible :: may (possibly, but not certainly) (verb)
-===Me===
-  (Hakka) Me̍t-sî-kô :: Mexico (country) (proper noun)
 ===Měiguó===
   美國國家航空航天局, 美国国家航空航天局 (Měiguó guójiā hángkōng hángtiānjú), (Taiwan) 美國國家航空暨太空總署, 美国国家航空暨太空总署 (Měiguó guójiā hángkōng jì tàikōng zǒngshǔ) :: NASA (National Aeronautics and Space Administration) ({{acronym}})
 ***美国国家航空航天局***
@@ -1770,6 +1771,8 @@ Index: ZH ZH->EN
   (Cantonese) 屌/𨳒 [⿵門小] (diu2), 𨳊 [⿵門九] (gau1), 𨶙 [⿵門能] (lan2), 𨳍 [⿵門七] (cat6) :: dick (colloquial: penis) (noun)
 ===門小===
   (Cantonese) 屌/𨳒 [⿵門小] (diu2), 𨳊 [⿵門九] (gau1), 𨶙 [⿵門能] (lan2), 𨳍 [⿵門七] (cat6) :: dick (colloquial: penis) (noun)
+===Me̍t===
+  (Hakka) Me̍t-sî-kô :: Mexico (country) (proper noun)
 ===免===
   免費的, 免费的 (miǎnfèi de) :: free (obtainable without payment) (adjective)
 ===miǎnchú===
@@ -1911,12 +1914,12 @@ Index: ZH ZH->EN
   (Cantonese) 我鐘意你 (ngo5 zung1 yi3 nei5) :: I love you (platonic expression of inclination or liking) (phrase)
 ===ngou6===
   (Teochew) ngou6 :: five (five (5)) (cardinal number)
+===ngṳ̄===
+  (Min Dong) Dáik-ngṳ̄ :: German (the German language) (proper noun)
+  (Min Dong) 英語, 英语 (Ĭng-ngṳ̄) :: English (the English language) (proper noun)
 ===ngu===
   (Wu) 我爱侬 (wo ei non, ngu ei non) :: I love you (affirmation of romantic feeling) (phrase)
   (Eastern Hokkien (Min Dong)) 五 (ngu) :: five (five (5)) (cardinal number)
-===ngṳ===
-  (Min Dong) Dáik-ngṳ̄ :: German (the German language) (proper noun)
-  (Min Dong) 英語, 英语 (Ĭng-ngṳ̄) :: English (the English language) (proper noun)
 ===nǐ===
   我愛你, 我爱你 (wǒ ài nǐ) :: I love you (affirmation of affection or deep caring) (phrase)
   我愛你, 我爱你 (wǒ ài nǐ) :: I love you (affirmation of romantic feeling) (phrase)
@@ -2723,11 +2726,6 @@ Index: ZH ZH->EN
   (Cantonese) Taap<sup>3</sup>naap<sup>6</sup>tok<sup>3</sup>si<sup>1</sup> :: Thanatos (Thanatos, the god of death) (noun)
 ***сы***
   (Dungan) сы :: be (used to indicate that the subject and object are the same) (verb)
-===t===
-  (Hakka) Me̍t-sî-kô :: Mexico (country) (proper noun)
-  (Min Nan) 日本 (Ji̍t-pún) :: Japan (A Far East country in Asia) (proper noun)
-  (Min Nan) 日頭 (ji̍t-thâu, li̍t-thâu) :: sun (the star around which the Earth revolves) (proper noun)
-  (Min Nan) 今仔日 (kin-á-ji̍t) :: today (today (noun)) (noun)
 ===taai3===
   (Cantonese) 太陽, 太阳, taai3 joeng4, 日頭, 日头, jat6 tau2, 熱頭, 热头, jit6 tau2 :: sun (the star around which the Earth revolves) (proper noun)
 ===Taap===
index fd64b02b93cec1e7a11c8e09013dbb9112881ec5..661a83789aacdd686bec0fbc81fc8afb16c30411 100644 (file)
@@ -1,5 +1,5 @@
 dictInfo=SomeWikiData
-EntrySource: enwiktionary.chinese 631
+EntrySource: enwiktionary.chinese 632
 
 Index: ZH ZH->EN
 ===3===
@@ -272,6 +272,8 @@ Index: ZH ZH->EN
     哥们儿,别傻说,美国比英国NB,美国是超级大国! (simp.) :: Dude, don't talk shit. America's heaps stronger than Britain - U.S.A. is the superpower!
     這輛摩托車真NB,載了3個人還開這麼快。 (trad.) :: --
     这辆摩托车真NB,载了3个人还开这么快。 (simp.) :: This motorbike's frigging awesome. Even with three people it still goes pretty fast.
+***〇***
+  〇 {{cmn-noun|ts|pin=líng|pint=ling2|rs=〇00}} :: zero
 ***零***
   零 {{cmn-hanzi|pin=líng (ling2), lián (lian2)|wg=ling<sup>2</sup>}} :: Chinese Numeral 零
     Next: 一 :: --
index 17bac82c5a247f14e9e995357961187d20f3b1dc..80302ef341647ff45c583a4f6daf3d9abffcea5f 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,16 +1,16 @@
-for i in res/raw/*.html; do tidy --input-encoding utf8  --output-file $i $i; done
-
+for i in res/raw*/*.html; do echo $i; tidy --input-encoding utf8  --output-file $i $i; done
 
+SpannableText persisted class with a list of spans with span types. (might need its own builder.)
+Choosable flags for: German, Spanish, English, Portuguese, Arabic (with defaults).
+Hide uninstalled dictionaries.
+Update DictionaryBuilder.jar
 For next release:
 flag images
 test/fix return to last-used dictionary
-downloads
+downloads stability
 history dialog
-check arabic UI fix
-handle examples like "asdf (asdf)"
 random word jump
 italian verbs... (show conjugation, pulled from a linked place....--would lower size a lot!)
-better example splitting
 
 Handle other sections:
   Pronunciation
@@ -18,7 +18,10 @@ Handle other sections:
   Usage notes.
   Chinese: handle "Compounds" section
 
-* multi word search
+handle enwiktionary examples like "asdf (asdf)"
+better example splitting
+check arabic UI fix
+
 * link to leo, dict.cc
 * source in context menu
 * quiz
@@ -106,3 +109,5 @@ about dict dialog
 fix up dictionary manager:
   thread that handles unzipping, downloading for the life of the application (so screen changes don't screw it up).
   check over UI.
+* multi word search
+  
\ No newline at end of file