From a00f66539aaeecf82eb0bfcf95d16cb61d49ba81 Mon Sep 17 00:00:00 2001 From: Julien Moutinho Date: Sun, 22 Feb 2026 01:51:38 +0100 Subject: [PATCH] update --- src/Language/Chinese.hs | 281 +++++++++++------- src/Rosetta/Matching.hs | 4 +- .../dictToWeights/dictOrder/all.golden | 1 - .../dictToWeights/dictOrder/take_10.golden | 1 - .../Chinese/dictToWeights/size.golden | 1 - .../Chinese/dictToWeights/take_10.golden | 1 - .../Chinese/keyLengthToSumOfEntries.golden | 1 - tests/Language/Chinese/keyLengths.golden | 20 -- .../Language/Chinese/keysWithoutDecomp.golden | 1 - tests/Language/Chinese/keysWithoutFreq.golden | 1 - .../Chinese/keysWithoutStrokes.golden | 1 - tests/Language/Chinese/order.5000.html | 2 + tests/Language/Chinese/size.golden | 1 - tests/Language/ChineseSpec.hs | 46 +-- tests/Spec.hs | 37 +-- 15 files changed, 216 insertions(+), 183 deletions(-) delete mode 100644 tests/Language/Chinese/dictToWeights/dictOrder/all.golden delete mode 100644 tests/Language/Chinese/dictToWeights/dictOrder/take_10.golden delete mode 100644 tests/Language/Chinese/dictToWeights/size.golden delete mode 100644 tests/Language/Chinese/dictToWeights/take_10.golden delete mode 100644 tests/Language/Chinese/keyLengthToSumOfEntries.golden delete mode 100644 tests/Language/Chinese/keyLengths.golden delete mode 100644 tests/Language/Chinese/keysWithoutDecomp.golden delete mode 100644 tests/Language/Chinese/keysWithoutFreq.golden delete mode 100644 tests/Language/Chinese/keysWithoutStrokes.golden create mode 100644 tests/Language/Chinese/order.5000.html delete mode 100644 tests/Language/Chinese/size.golden diff --git a/src/Language/Chinese.hs b/src/Language/Chinese.hs index a776b01..232e99f 100644 --- a/src/Language/Chinese.hs +++ b/src/Language/Chinese.hs @@ -12,6 +12,7 @@ import Data.Aeson.KeyMap qualified as JSON import Data.ByteString (ByteString) import Data.ByteString qualified as ByteString import Data.ByteString.Builder qualified as BS +import Data.ByteString.Char8 qualified as ByteString.Char8 import Data.Char qualified as Char import Data.Csv ((.!)) import Data.Csv qualified as CSV @@ -172,6 +173,9 @@ readLoachWangStrokes = , mempty{chineseStrokes = Just strokes} ) +circledNumbers :: Set ShortText +circledNumbers = ["①", "②", "③", "④", "⑤", "⑥", "⑦", "⑧", "⑨", "⑩", "⑪", "⑫", "⑬", "⑭", "⑮", "⑯", "⑰", "⑱", "⑲", "⑳"] + readChiseStrokes :: IO ChineseDict readChiseStrokes = withDataFile "data/langs/mandarin/cjkvi-ids/ucs-strokes.txt" \dataHandle -> do @@ -180,18 +184,15 @@ readChiseStrokes = if isEOF then return accDict else do - line <- ByteString.hGetLine dataHandle + line <- ByteString.Char8.hGetLine dataHandle let decodeUtf8 = ShortText.fromByteString >>> fromMaybe (error "invalid UTF-8") let splitOnChar c = ByteString.split (fromIntegral (fromEnum c)) case line & splitOnChar '\t' of - [unicodeLit, unicodeChar, chineseStrokesLit] + [unicodeLit, decodeUtf8 -> unicodeChar, chineseStrokesLit] | unicodeLit & ByteString.isPrefixOf "U+" -> loop $ ChineseDict $ - acc - & Map.insert - (unicodeChar & decodeUtf8) - mempty{chineseStrokes} + acc & Map.insert unicodeChar mempty{chineseStrokes} where chineseStrokes :: Maybe Natural = chineseStrokesLit @@ -215,7 +216,7 @@ readChiseDecomp = if isEOF then return accDict else do - line <- ByteString.hGetLine dataHandle + line <- ByteString.Char8.hGetLine dataHandle let decodeUtf8 = ShortText.fromByteString >>> fromMaybe (error "invalid UTF-8") let splitOnChar c = ByteString.split (fromIntegral (fromEnum c)) case line & splitOnChar '\t' of @@ -455,7 +456,7 @@ data Weights = Weights -- https://sci-hub.se/10.1109/icbda.2019.8713245 dictToWeights :: ChineseDict -> Weights dictToWeights cn@(ChineseDict dict) = ST.runST do - -- ExplanationNote: memo tables, to avoid recomputing benefits and costs + -- Explanation: memo tables, to avoid recomputing benefits and costs keyToBenefitST :: ST.STRef st (Map DictKey Benefit) <- ST.newSTRef Map.empty keyToCostST :: ST.STRef st (Map DictKey Cost) <- ST.newSTRef Map.empty let refsMap :: Map ShortText [ShortText] = reverseDecomp cn @@ -464,82 +465,92 @@ dictToWeights cn@(ChineseDict dict) = ST.runST do keyToBenefitLoop key = do -- traceShowM ("keyToBenefitLoop"::String, key) keyToBenefitMap <- keyToBenefitST & ST.readSTRef - keyToBenefitMap - & Map.lookup key - & \case - Just bene -> return bene - Nothing -> do - let refs :: [ShortText] = - refsMap - & Map.lookup key - & fromMaybe [] - -- & fromMaybe [] - & List.delete key - -- traceShowM ("keyToBenefitLoop"::String, key, refs) - let freq = - dict - & Map.lookup key - & maybe proba0 (chineseFrequency >>> fromMaybe proba0) - refsBC <- forM refs \ref -> do - bene <- keyToBenefitLoop ref - cost <- keyToCostLoop ref - return (bene, cost) - cost <- keyToCostLoop key - bene <- - arithM $ - probability $ - runProbability freq - + toRational cost - * sum - [ runProbability b / toRational c - | (b, c) <- refsBC - , c /= 0 - ] - ST.modifySTRef keyToBenefitST $ Map.insert key bene - return bene + if Set.member key circledNumbers + then + -- Explanation: circledNumbers induce a cost but zero benefit + return proba0 + else + keyToBenefitMap + & Map.lookup key + & \case + Just bene -> return bene + Nothing -> do + let refs :: [ShortText] = + refsMap + & Map.lookup key + & fromMaybe [] + -- & fromMaybe [] + & List.delete key + -- traceShowM ("keyToBenefitLoop"::String, key, refs) + let freq = + dict + & Map.lookup key + & maybe proba0 (chineseFrequency >>> fromMaybe proba0) + refsBC <- forM refs \ref -> do + bene <- keyToBenefitLoop ref + cost <- keyToCostLoop ref + return (bene, cost) + cost <- keyToCostLoop key + bene <- + arithM $ + probability $ + runProbability freq + + toRational cost + * sum + [ runProbability b / toRational c + | (b, c) <- refsBC + , c /= 0 + ] + ST.modifySTRef keyToBenefitST $ Map.insert key bene + return bene keyToCostLoop :: DictKey -> ST.ST st Cost keyToCostLoop key = do -- traceShowM ("keyToCostLoop"::String, key) keyToCostMap <- keyToCostST & ST.readSTRef - keyToCostMap - & Map.lookup key - & \case - Just cost -> return cost - Nothing -> do - let entry = dict & Map.lookup key & fromMaybe mempty - cost <- - -- single char - if ShortText.length key == 1 - then do - let deps = - entry - & chineseDecomp key - & List.delete (ShortText.unpack key & List.head) - -- & (`Set.difference` (ShortText.unpack key & Set.fromList)) - if null deps - then -- atom char - return $ - entry - & chineseStrokes - & fromMaybe 1 - else -- & fromMaybe (error $ "dictToWeights: missing chineseStrokes for: " <> ShortText.unpack key) + if Set.member key circledNumbers + then + -- Explanation: circledNumbers induce a cost given by their number + return $ dict & Map.lookup key & maybe 1 (chineseStrokes >>> fromMaybe 1) + else + keyToCostMap + & Map.lookup key + & \case + Just cost -> return cost + Nothing -> do + let entry = dict & Map.lookup key & fromMaybe mempty + cost <- + -- single char + if ShortText.length key == 1 + then do + let deps = + entry + & chineseDecomp key + & List.delete (ShortText.unpack key & List.head) + -- & (`Set.difference` (ShortText.unpack key & Set.fromList)) + if null deps + then -- atom char + return $ + entry + & chineseStrokes + & fromMaybe 1 + else -- & fromMaybe (error $ "dictToWeights: missing chineseStrokes for: " <> ShortText.unpack key) + do + -- composite char + -- traceShowM ("composite"::String, show key, show <$> Set.toList deps + -- , deps & (`Set.difference` (ShortText.unpack key & Set.fromList)) + -- ) + deps + & foldMapM (\dep -> Sum <$> keyToCostLoop (dep & ShortText.singleton)) + <&> getSum + else -- word do - -- composite char - -- traceShowM ("composite"::String, show key, show <$> Set.toList deps - -- , deps & (`Set.difference` (ShortText.unpack key & Set.fromList)) - -- ) - deps + -- traceShowM ("word"::String, key) + key + & ShortText.unpack & foldMapM (\dep -> Sum <$> keyToCostLoop (dep & ShortText.singleton)) <&> getSum - else -- word - do - -- traceShowM ("word"::String, key) - key - & ShortText.unpack - & foldMapM (\dep -> Sum <$> keyToCostLoop (dep & ShortText.singleton)) - <&> getSum - ST.modifySTRef keyToCostST $ Map.insert key cost - return cost + ST.modifySTRef keyToCostST $ Map.insert key cost + return cost weightsMap <- dict & Map.traverseWithKey \key _entry -> do -- traceShowM ("dictToWeights"::String, key) @@ -964,22 +975,22 @@ pronunciation dict inp = pronun :: [Char] -> Char.GeneralCategory -> Maybe Char.UnicodeBlock -> [Either Char Pron.Pron] pronun chars Char.DecimalNumber _ = [ Right - Pron.Pron - { pronInput = [Pron.LexemeChar char] - , pronRule = - Pron.rule - { Pron.rulePron = - Pron.Pronunciations - { Pron.unPronunciations = - [ Pron.RuleLexemes [Pron.LexemeChar char] := - Pron.Pronunciation - { Pron.pronunciationIPABroad = [] - , Pron.pronunciationText = txt char - } - ] - } - } - } + Pron.Pron + { pronInput = [Pron.LexemeChar char] + , pronRule = + Pron.rule + { Pron.rulePron = + Pron.Pronunciations + { Pron.unPronunciations = + [ Pron.RuleLexemes [Pron.LexemeChar char] := + Pron.Pronunciation + { Pron.pronunciationIPABroad = [] + , Pron.pronunciationText = txt char + } + ] + } + } + } | char <- chars ] where @@ -1045,12 +1056,13 @@ pronunciation dict inp = -- & lookupPinyins dict pronun chars categ block = errorShow ("pronunciation" :: Text, chars, categ, block) -orderHTML dict@(ChineseDict d) = do +orderHTML :: Maybe Int -> ChineseDict -> IO _ +orderHTML limit dict@(ChineseDict d) = do dataPath <- Self.getDataDir <&> File.normalise return $ Blaze.renderMarkupBuilder do HTML.docTypeHtml do HTML.head do - HTML.title $ ("Chinese Order" :: Text) & HTML.toHtml + HTML.title $ ("Chinese Order" <> maybe "" (\l -> " (first " <> show l <> ")") limit) & HTML.toHtml forM_ ( [ "styles/Paper.css" , "styles/Rosetta/Common.css" @@ -1065,30 +1077,69 @@ orderHTML dict@(ChineseDict d) = do ! HA.href (dataPath cssFile & HTML.toValue) -- HTML.styleCSS $ pagesDifficulties & difficultyCSS HTML.body do - let ChineseOrder o = dict & dictToWeights & dictOrder - HTML.ol do - forM_ - ( o - & Map.take 5000 + let order = + dict + & dictToWeights + & dictOrder + & unChineseOrder & Map.elems & foldMap (weightsMap >>> Map.keys) - ) - \k -> - HTML.li - ! HTML.styles - [ "break-inside" := "avoid" - , "list-style-position" := "inside" + -- Explanation: several entries can share the same 'Weight" + -- hence compute ranks after merging. + & ol1 + let keyToRank = [(key, rank) | (rank, key) <- order] & Map.fromListWith undefined + let rankId rank = "entry-" <> HTML.toValue (show rank) + let rankLink rank = + HTML.a + ! styles + [ "color" := "blue" + , "text-decoration" := "none" ] + ! HA.href ("#" <> rankId rank) $ do - HTML.span $ k & HTML.toHtml - forM_ (d & Map.lookup k) \v -> do - HTML.ul ! HTML.styles [] $ do - HTML.li do - HTML.span $ v & chinesePinyins <&> ShortText.toText & Text.unwords & HTML.toHtml - HTML.li do - HTML.span $ v & chineseDecomp k & Text.pack & HTML.toHtml - HTML.li do - HTML.span $ v & chineseEnglish <&> ShortText.toText & Text.intercalate "; " & HTML.toHtml + "#" + rank & HTML.toHtml + HTML.div ! styles ["display" := "flex", "flex-direction" := "column"] $ do + forM_ + ( order + & maybe id List.take limit + ) + \(rank :: Int, k) -> + forM_ (d & Map.lookup k) \v -> do + HTML.span + ! styles ["text-align" := "justify", "break-inside" := "avoid"] + ! HA.id (rankId rank) + $ do + rankLink rank + ". " + HTML.span $ k & HTML.toHtml + unless (v & chinesePinyins & List.null) do + "[" + HTML.span $ v & chinesePinyins <&> ShortText.toText & Text.unwords & HTML.toHtml + "] " + unless (v & chineseDecomp k & List.null) do + "(" + let decomps = + [ (component, componentRankMaybe) :: (ShortText, Maybe Int) + | component <- chineseDecomp k v <&> ShortText.singleton + , let componentRankMaybe = keyToRank & Map.lookup component + ] + HTML.span do + decomps + <&> ( \(component, componentRankMaybe) -> do + HTML.span do + component & HTML.toHtml + case componentRankMaybe of + Nothing -> "" + Just componentRank + | Set.member component circledNumbers -> "" + | otherwise -> rankLink componentRank + ) + & List.intersperse " " + & mconcat + ") " + HTML.span ! styles ["color" := "#666"] $ do + v & chineseEnglish <&> ShortText.toText & Text.intercalate "; " & HTML.toHtml orderDOT :: ChineseDict -> IO BS.Builder orderDOT dict@(ChineseDict d) = do diff --git a/src/Rosetta/Matching.hs b/src/Rosetta/Matching.hs index 720c9c4..00c711a 100644 --- a/src/Rosetta/Matching.hs +++ b/src/Rosetta/Matching.hs @@ -262,7 +262,7 @@ pagesHTML Dicts{..} title pagesUnchunked = do ] $ do let pageMatchNum = page & pageMatches & List.length - forM_ (page & pageMatches & ol0) \(matchIdx, match) -> do + forM_ (page & pageMatches & ol0) \(matchIdx :: Int, match) -> do "\n" -- when (matchIdx /= 0) do -- forM_ (match & matchMatters) \_matter -> do @@ -271,7 +271,7 @@ pagesHTML Dicts{..} title pagesUnchunked = do HTML.div ! classes ["match-alternatives"] $ do - forM_ (match & matchMatters & ol0) \(matterIdx, matter) -> do + forM_ (match & matchMatters & ol0) \(matterIdx :: Int, matter) -> do let langClass = matter & \case MatterPicture{} -> [] diff --git a/tests/Language/Chinese/dictToWeights/dictOrder/all.golden b/tests/Language/Chinese/dictToWeights/dictOrder/all.golden deleted file mode 100644 index e103882..0000000 --- a/tests/Language/Chinese/dictToWeights/dictOrder/all.golden +++ /dev/null @@ -1 +0,0 @@ -weight key diff --git a/tests/Language/Chinese/dictToWeights/dictOrder/take_10.golden b/tests/Language/Chinese/dictToWeights/dictOrder/take_10.golden deleted file mode 100644 index e103882..0000000 --- a/tests/Language/Chinese/dictToWeights/dictOrder/take_10.golden +++ /dev/null @@ -1 +0,0 @@ -weight key diff --git a/tests/Language/Chinese/dictToWeights/size.golden b/tests/Language/Chinese/dictToWeights/size.golden deleted file mode 100644 index c227083..0000000 --- a/tests/Language/Chinese/dictToWeights/size.golden +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/tests/Language/Chinese/dictToWeights/take_10.golden b/tests/Language/Chinese/dictToWeights/take_10.golden deleted file mode 100644 index 825e091..0000000 --- a/tests/Language/Chinese/dictToWeights/take_10.golden +++ /dev/null @@ -1 +0,0 @@ -fromList [] \ No newline at end of file diff --git a/tests/Language/Chinese/keyLengthToSumOfEntries.golden b/tests/Language/Chinese/keyLengthToSumOfEntries.golden deleted file mode 100644 index 825e091..0000000 --- a/tests/Language/Chinese/keyLengthToSumOfEntries.golden +++ /dev/null @@ -1 +0,0 @@ -fromList [] \ No newline at end of file diff --git a/tests/Language/Chinese/keyLengths.golden b/tests/Language/Chinese/keyLengths.golden deleted file mode 100644 index bf0c02d..0000000 --- a/tests/Language/Chinese/keyLengths.golden +++ /dev/null @@ -1,20 +0,0 @@ -fromList - [ 1 - , 2 - , 3 - , 4 - , 5 - , 6 - , 7 - , 8 - , 9 - , 10 - , 11 - , 12 - , 13 - , 14 - , 15 - , 16 - , 18 - , 21 - ] \ No newline at end of file diff --git a/tests/Language/Chinese/keysWithoutDecomp.golden b/tests/Language/Chinese/keysWithoutDecomp.golden deleted file mode 100644 index 825e091..0000000 --- a/tests/Language/Chinese/keysWithoutDecomp.golden +++ /dev/null @@ -1 +0,0 @@ -fromList [] \ No newline at end of file diff --git a/tests/Language/Chinese/keysWithoutFreq.golden b/tests/Language/Chinese/keysWithoutFreq.golden deleted file mode 100644 index c227083..0000000 --- a/tests/Language/Chinese/keysWithoutFreq.golden +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/tests/Language/Chinese/keysWithoutStrokes.golden b/tests/Language/Chinese/keysWithoutStrokes.golden deleted file mode 100644 index 825e091..0000000 --- a/tests/Language/Chinese/keysWithoutStrokes.golden +++ /dev/null @@ -1 +0,0 @@ -fromList [] \ No newline at end of file diff --git a/tests/Language/Chinese/order.5000.html b/tests/Language/Chinese/order.5000.html new file mode 100644 index 0000000..34d6bc4 --- /dev/null +++ b/tests/Language/Chinese/order.5000.html @@ -0,0 +1,2 @@ + +Chinese Order (first 5000)
#1. 一[yi1] one; single; a (article); as soon as; entire; whole; all; throughout; "one" radical in Chinese characters (Kangxi radical 1); also pr. [yao1] for greater clarity when spelling out numbers digit by digit#2. 丿[pie3] radical in Chinese characters (Kangxi radical 4), aka 撇[pie3]#3. 口[kou3] mouth; classifier for things with mouths (people, domestic animals, cannons, wells etc); classifier for bites or mouthfuls#4. 丶[zhu3] "dot" radical in Chinese characters (Kangxi radical 3), aka 點|点[dian3]#5. 亅[jue2] "vertical stroke with hook" radical in Chinese characters (Kangxi radical 6), aka 豎鉤|竖钩[shu4gou1]#6. 人[ren2] person; people; CL:個|个[ge4],位[wei4]#7. 亻[ren2] "person" radical in Chinese characters (Kangxi radical 9)#8. 乛[zhe2] variant of 乙[zhe2]#9. 了[le5] (乛#8 亅#5) (completed action marker); (modal particle indicating change of state, situation now); (modal particle intensifying preceding clause); to finish; (used with 得[de2] or 不[bu4] after a verb to express (im)possibility, as in 忘不了[wang4bu5liao3] "cannot forget"); (literary) (usually followed by a negative such as 無|无[wu2] or 不[bu4]) completely (not); entirely (not); (not) in the least; to understand clearly (variant of 瞭|了[liao3]); (of eyes) bright; clear-sighted; to understand clearly; unofficial variant of 瞭[liao4]#10. 十[shi2] ten; 10#11. 丨[gun3] radical in Chinese characters (Kangxi radical 2); vertical stroke (in Chinese characters), referred to as 豎筆|竖笔[shu4 bi3]#12. 𠂊#13. 土[tu3] (十#10 一#1) Tu (ethnic group); surname Tu; earth; dust; clay; local; indigenous; crude opium; unsophisticated; one of the eight categories of ancient musical instruments 八音[ba1 yin1]#14. 我[wo3] I; me; my#15. 日[ri4] abbr. for 日本[Ri4 ben3], Japan; sun; day; date, day of the month#16. 小[xiao3] small; tiny; few; young#17. 厶[mou3] old variant of 某[mou3]; old variant of 私[si1]#18. 乚#19. 勹[bao1] old variant of 包[bao1]#20. 白[bai2] surname Bai; white; snowy; pure; bright; empty; blank; plain; clear; to make clear; in vain; gratuitous; free of charge; reactionary; anti-communist; funeral; to stare coldly; to write wrong character; to state; to explain; vernacular; spoken lines in opera#21. 勺[shao2] (勹#19 丶#4) spoon; ladle; CL:把[ba3]; abbr. for 公勺[gong1 shao2], centiliter (unit of volume)#22. 的[de5] (白#20 勺#21) of; ~'s (possessive particle); (used after an attribute when it modifies a noun); (used at the end of a declarative sentence for emphasis); (used after a noun, verb or adjective to form a nominal expression, as in 皮革的[pi2ge2 de5] "one made of leather" or 跑堂兒的|跑堂儿的[pao3tang2r5de5] "a waiter (literally, one who runs back and forth in a restaurant)" or 新的[xin1 de5] "new one"); also pr. [di4] or [di5] in poetry and songs; a taxi; a cab (abbr. for 的士[di1shi4]); really and truly; (bound form) bull's-eye; target#23. 不[bu4] (一#1 ③) no; not so; (bound form) not; un-#24. 尔[er3] (𠂊#12 小#16) variant of 爾|尔[er3]; thus; so; like that; you; thou#25. 你[ni3] (亻#7 尔#24) you (informal, as opposed to courteous 您[nin2]); you (Note: In Taiwan, 妳 is used to address females, but in mainland China, it is not commonly used. Instead, 你 is used to address both males and females.)#26. 亠[tou2] (丶#4 一#1) "lid" radical in Chinese characters (Kangxi radical 8)#27. 二[er4] (一#1 一#1) two; 2; (Beijing dialect) stupid#28. 也[ye3] surname Ye; also; too; as well; (not ...) either; (used after a verbal or nominal expression X to indicate that X is an extreme or unexpected case) even (X); (literary) particle having functions similar to 啊[a5]#29. 女[nu:3] female; woman; daughter; old variant of 汝[ru3]#30. 𠃌#31. 丷[ba1] "eight" component in Chinese characters; old variant of 八[ba1]; one of the characters used in kwukyel, an ancient Korean writing system#32. 龰#33. 辶[chuo4] to walk (side part of split character)#34. 又[you4] (once) again; also; both... and...; and yet; (used for emphasis) anyway#35. 大[da4] (一#1 人#6) big; large; great; older (than another person); eldest (as in 大姐[da4jie3]); greatly; freely; fully; (dialect) father; (dialect) uncle (father's brother); see 大夫[dai4 fu5]#36. 讠[yan2] "speech" or "words" radical in Chinese characters (Kangxi radical 149); see also 言字旁[yan2 zi4 pang2]#37. 𤴓(一#1 龰#32) #38. 木[mu4] surname Mu; (bound form) tree; (bound form) wood; unresponsive; numb; wooden#39. 是[shi4] (日#15 𤴓#37) to be (followed by substantives only); correct; right; true; (respectful acknowledgement of a command) very well; (adverb for emphatic assertion); variant of 是[shi4]#40. 月[yue4] moon; month; monthly; CL:個|个[ge4],輪|轮[lun2]#41. 八[ba1] eight#42. 寸[cun4] a unit of length; inch; thumb#43. 个[ge3] (人#6 丨#11) used in 自個兒|自个儿[zi4 ge3 r5]; (classifier used before a noun that has no specific classifier); (bound form) individual; variant of 個|个[ge4]#44. 匕[bi3] (乚#18 丿#2) dagger; ladle; ancient type of spoon#45. ⺊#46. 阝#47. 子[zi3] son; child; seed; egg; small thing; 1st earthly branch: 11 p.m.-1 a.m., midnight, 11th solar month (7th December to 5th January), year of the rat; viscount, fourth of five orders of nobility 五等爵位[wu3deng3 jue2wei4]; ancient Chinese compass point: 0° (north); subsidiary; subordinate; (prefix) sub-; (noun suffix)#48. 他[ta1] (亻#7 也#28) (third-person singular) (since the early 20th century, usu. male) he; him; his; (bound form) other; another; some other (as in 他日[ta1ri4] and 他人[ta1ren2])#49. 乀[fu2] stretch; variant of 丿[pie3]#50. 儿[ren2] (丿#2 乚#18) variant of 人[ren2]; "person" radical in Chinese characters (Kangxi radical 10), occurring in 兒, 兀, 兄 etc; child; son; non-syllabic diminutive suffix; retroflex final#51. 门[men2] surname Men; gate; door; CL:扇[shan4]; gateway; doorway; CL:個|个[ge4]; opening; valve; switch; way to do something; knack; family; house; (religious) sect; school (of thought); class; category; phylum or division (taxonomy); classifier for large guns; classifier for lessons, subjects, branches of technology; (suffix) -gate (i.e. scandal; derived from Watergate)#52. 扌[shou3] "hand" radical in Chinese characters (Kangxi radical 64), occurring in 提, 把, 打 etc#53. 乂[yi4] (丿#2 乀#49) to regulate; to govern; to control; to mow#54. 𠂇#55. 在[zai4] (③ 土#13) to exist; to be alive; (of sb or sth) to be (located) at; (used before a verb to indicate an action in progress)#56. 上[shang3] (⺊#45 一#1) used in 上聲|上声[shang3 sheng1]; (bound form) up; upper; above; previous; first (of multiple parts); to climb; to get onto; to go up; to attend (class or university); (directional complement) up; (noun suffix) on; above#57. 冂[jiong1] radical in Chinese characters (Kangxi radical 13), occurring in 用[yong4], 同[tong2], 網|网[wang3] etc, referred to as 同字框[tong2 zi4 kuang4]#58. 么[ma2] (丿#2 厶#17) exclamatory final particle; interrogative final particle; suffix, used to form interrogative 什麼|什么[shen2 me5], what?, indefinite 這麼|这么[zhe4 me5] thus, etc; variant of 麼|么[me5]#59. 刀[dao1] (𠃌#30 丿#2) surname Dao; knife; blade; single-edged sword; cutlass; CL:把[ba3]; (slang) dollar (loanword); classifier for sets of one hundred sheets (of paper); classifier for knife cuts or stabs#60. 氵[shui3] "water" radical in Chinese characters (Kangxi radical 85), occurring in 沒|没[mei2], 法[fa3], 流[liu2] etc; see also 三點水|三点水[san1 dian3 shui3]#61. 心[xin1] heart; mind; intention; center; core; CL:顆|颗[ke1],個|个[ge4]#62. 丁[ding1] (一#1 亅#5) surname Ding; male adult; the 4th of the 10 Heavenly Stems 天干[tian1gan1]; fourth (used like "4" or "D"); small cube of meat or vegetable; (literary) to encounter; (archaic) ancient Chinese compass point: 195°; (chemistry) butyl; used in 丁丁[zheng1zheng1]#63. 有[you3] (𠂇#54 月#40) to have; there is; (bound form) having; with; -ful; -ed; -al (as in 有意[you3yi4] intentional)#64. 们[men5] (亻#7 门#51) plural marker for pronouns, and nouns referring to individuals#65. 文[wen2] (亠#26 乂#53) surname Wen; language; culture; writing; formal; literary; gentle; (old) classifier for coins; Kangxi radical 67#66. 宀[mian2] "roof" radical (Kangxi radical 40), occurring in 家, 定, 安 etc, referred to as 寶蓋|宝盖[bao3 gai4]#67. 刂[dao1] Kangxi radical 18 (刀[dao1]) as a vertical side element, referred to as 立刀旁[li4 dao1 pang2] or 側刀旁|侧刀旁[ce4 dao1 pang2]#68. 这[zhe4] (辶#33 文#65) (pronoun) this; these; (bound form) this; the (followed by a noun); (bound form) this; these (followed by a classifier) (in this sense, commonly pr. [zhei4], esp. in Beijing); (coll.) this#69. 好[hao3] (女#29 子#47) good; appropriate; proper; all right!; (before a verb) easy to; (before a verb) good to; (before an adjective for exclamatory effect) so; (verb complement indicating completion); (of two people) close; on intimate terms; (after a personal pronoun) hello; to be fond of; to have a tendency to; to be prone to#70. 马[ma3] (② 一#1) surname Ma; abbr. for Malaysia 馬來西亞|马来西亚[Ma3lai2xi1ya4]; horse; CL:匹[pi3]; horse or cavalry piece in Chinese chess; knight in Western chess#71. 夕[xi1] (𠂊#12 丶#4) dusk; evening; Taiwan pr. [xi4]#72. 目[mu4] eye; (literary) to look; to regard; eye (of a net); mesh; mesh size; grit size (abbr. for 目數|目数[mu4 shu4]); item; section; list; catalogue; (taxonomy) order; name; title#73. 云[yun2] (二#27 厶#17) (classical) to say; surname Yun; abbr. for Yunnan Province 雲南省|云南省[Yun2nan2 Sheng3]; cloud; CL:朵[duo3]#74. 巴[ba1] Ba, a state during the Zhou dynasty (in present-day Chongqing and the eastern part of Sichuan); the east of Sichuan and Chongqing Municipality; surname Ba; abbr. for 巴勒斯坦[Ba1le4si1tan3] (Palestine), 巴基斯坦[Ba1ji1si1tan3] (Pakistan) or 巴西[Ba1xi] (Brazil); to long for; to wish; to cling to; to stick to; sth that sticks; close to; next to; spread open; informal abbr. for bus 巴士[ba1 shi4]; bar (unit of pressure); nominalizing suffix on certain nouns, such as 尾巴[wei3 ba5], tail#75. 彳[chi4] step with the left foot (Kangxi radical 60); see also 彳亍[chi4 chu4]#76. 会[hui4] (人#6 云#73) can; to have the skill; to know how to; to be likely to; to be sure to; to meet; to get together; meeting; gathering; (suffix) union; group; association; (bound form) a moment (Taiwan pr. [hui3]); (bound form) to reckon accounts#77. 䒑(丷#31 一#1) #78. 力[li4] (丿#2 𠃌#30) surname Li; power; force; strength; ability; strenuously#79. 那[na1] (刀#59 二#27 阝#46) surname Na; surname Nuo; variant of 哪[na3]; (specifier) that; the; those (colloquial pr. [nei4]); (pronoun) that (referring to persons, things or situations); then (in that case); (archaic) many; beautiful; how; old variant of 挪[nuo2]#80. 去[qu4] (土#13 厶#17) to go; to go to (a place); (of a time etc) last; just passed; to send; to remove; to get rid of; to reduce; to be apart from in space or time; to die (euphemism); to play (a part); (when used either before or after a verb) to go in order to do sth; (after a verb of motion indicates movement away from the speaker); (used after certain verbs to indicate detachment or separation)#81. 冫[bing1] "ice" radical in Chinese characters (Kangxi radical 15), occurring in 冰[bing1], 次[ci4] etc, known as 兩點水|两点水[liang3 dian3 shui3]#82. 𠂉#83. 𠂆#84. 可[ke3] (丁#62 口#3) (prefix) can; may; able to; -able; to approve; to permit; to suit; (particle used for emphasis) certainly; very; but; however; used in 可汗[ke4 han2]#85. 吗[ma2] (口#3 马#70) (coll.) what?; used in 嗎啡|吗啡[ma3fei1]; (question particle for "yes-no" questions)#86. 囗[wei2] enclosure#87. 来[lai2] to come; (used as a substitute for a more specific verb); hither (directional complement for motion toward the speaker, as in 回來|回来[hui2lai5]); ever since (as in 自古以來|自古以来[zi4gu3 yi3lai2]); for the past (amount of time); (prefix) the coming ...; the next ... (as in 來世|来世[lai2shi4]); (between two verbs) in order to; (after a round number) approximately; (used after 得[de2] to indicate possibility, as in 談得來|谈得来[tan2de5lai2], or after 不[bu4] to indicate impossibility, as in 吃不來|吃不来[chi1bu5lai2])#88. 卜[bu3] surname Bu; (bound form) to divine; used in 蘿蔔|萝卜[luo2 bo5]#89. 什[shen2] (亻#7 十#10) what; ten (used in fractions, writing checks etc); assorted; miscellaneous#90. 凵[kan3] receptacle#91. 纟[si1] "silk" radical in Chinese characters (Kangxi radical 120), occurring in 紅|红[hong2], 綠|绿[lu:4], 累[lei4] etc; also pr. [mi4]#92. 止[zhi3] to stop; to prohibit; until; only#93. 𠘧#94. 她[ta1] (女#29 也#28) she#95. 殳[shu1] (𠘧#93 又#34) surname Shu; bamboo or wooden spear; Kangxi radical 79, occurring in 段[duan4], 毅[yi4], 殺|杀[sha1] etc#96. 冖[mi4] "cover" radical in Chinese characters (Kangxi radical 14), occurring in 軍|军[jun1], 冠[guan1] etc, known as 禿寶蓋|秃宝盖[tu1 bao3 gai4] or 平寶蓋|平宝盖[ping2 bao3 gai4]#97. 王[wang2] (一#1 土#13) surname Wang; king or monarch; best or strongest of its type; grand; great; (literary) (of a monarch) to reign over (a kingdom)#98. 艮[gen3] blunt; tough; chewy; one of the Eight Trigrams 八卦[ba1 gua4], symbolizing mountain; ☶; ancient Chinese compass point: 45° (northeast)#99. 尸[shi1] (literary) person representing the deceased (during burial ceremonies); (literary) to put a corpse on display (after execution); corpse (variant of 屍|尸[shi1]); (bound form) corpse#100. 覀(一#1 口#3 丨#11 丨#11) #101. 什么[shen2 me5] (什#89 么#58) what?; something; anything#102. 旦[dan4] (日#15 一#1) (literary) dawn; daybreak; dan, female role in Chinese opera (traditionally played by specialized male actors)#103. 要[yao1] (覀#100 女#29) (bound form) to demand; to coerce; to want; to need; to ask for; will; shall; about to; need to; should; if (same as 要是[yao4 shi5]); (bound form) important#104. 为[wei2] as (in the capacity of); to take sth as; to act as; to serve as; to behave as; to become; to be; to do; by (in the passive voice); because of; for; to; variant of 為|为[wei2]; variant of 為|为[wei4]#105. 没[mei2] (氵#60 殳#95) (negative prefix for verbs) have not; not; drowned; to end; to die; to inundate#106. 𠫔(一#1 厶#17) #107. 禾[he2] (丿#2 木#38) cereal; grain#108. 至[zhi4] (𠫔#106 土#13) to arrive; most; to; until#109. 下[xia4] (一#1 卜#88) down; downwards; below; lower; later; next (week etc); second (of two parts); to decline; to go down; to arrive at (a decision, conclusion etc); measure word to show the frequency of an action#110. 亇[ge4] (𠂊#12 亅#5) variant of 個|个[ge4]#111. 兄[xiong1] (口#3 儿#50) elder brother#112. 尢[wang1] lame#113. 对[dui4] (又#34 寸#42) right; correct; towards; at; for; concerning; regarding; to treat (sb a certain way); to face; (bound form) opposite; facing; matching; to match together; to adjust; to fit; to suit; to answer; to reply; to add; to pour in (a fluid); to check; to compare; classifier: couple; pair#114. 攵[pu1] variant of 攴[pu1]#115. 我们[wo3 men5] (我#14 们#64) we; us; ourselves; our#116. 丅[xia4] (一#1 丨#11) old variant of 下[xia4]#117. 斤[jin1] (𠂆#83 丅#116) catty; (PRC) weight equal to 500 g; (Tw) weight equal to 600 g; (HK, Malaysia, Singapore) slightly over 604 g#118. 亼[ji2] (人#6 一#1) variant of 集[ji2]#119. 一个[yi1 ge5] (一#1 个#43) a; an; one; the whole (afternoon, summer vacation etc)#120. 兑[dui4] (丷#31 兄#111) surname Dui; to cash; to exchange; to add (liquid); to blend; one of the Eight Trigrams 八卦[ba1 gua4], symbolizing swamp; ☱#121. 耂#122. 立[li4] (亠#26 丷#31 一#1) surname Li; to stand; to set up; to establish; to lay down; to draw up; at once; immediately#123. 见[jian4] to see; to meet; to appear (to be sth); to interview; opinion; view; to appear; also written 現|现[xian4]#124. 天[tian1] (一#1 大#35) day; sky; heaven#125. 说[shui4] (讠#36 兑#120) to persuade; to speak; to talk; to say; to explain; to comment; to scold; to tell off; (bound form) theory; doctrine; variant of 說|说[shuo1]#126. 吧[ba1] (口#3 巴#74) bar (loanword) (serving drinks, or providing Internet access etc); to puff (on a pipe etc); (onom.) bang; abbr. for 貼吧|贴吧[tie1 ba1]; (modal particle indicating suggestion or surmise); ...right?; ...OK?; ...I presume.; (onom.) smack!#127. 到[dao4] (至#108 刂#67) to reach; to arrive; to leave for; to go to; to (a place); until (a time); up to (a point); (verb complement indicating arriving at a place or reaching a point); considerate; thoughtful; thorough#128. 廾[gong3] (一#1 丿#2 丨#11) hands joined#129. 𫠠(一#1 乚#18) #130. 尤[you2] (尢#112 丶#4) surname You; outstanding; particularly, especially; a fault; to express discontentment against#131. 京[jing1] (亠#26 口#3 小#16) surname Jing; Jing ethnic minority; abbr. for Beijing 北京[Bei3jing1]; capital city of a country; big; algebraic term for a large number (old); artificial mound (old)#132. 弋[yi4] (𫠠#129 丶#4) to shoot#133. 从[cong2] (人#6 人#6) variant of 從|从[cong2]; surname Cong; from; through; via; (bound form) to follow; (bound form) to obey; (bound form) to engage in (an activity); (used before a negative) ever; (bound form) (Taiwan pr. [zong4]) retainer; attendant; (bound form) (Taiwan pr. [zong4]) assistant; auxiliary; subordinate; (bound form) (Taiwan pr. [zong4]) related by common paternal grandfather or earlier ancestor#134. 灬[huo3] "fire" radical in Chinese characters (Kangxi radical 86), occurring in 熙, 然, 熊 etc#135. 𭕄#136. 且[qie3] and; moreover; yet; for the time being; to be about to; both (... and...)#137. ⺆#138. 让[rang4] (讠#36 上#56) to yield; to permit; to let sb do sth; to have sb do sth; to make sb (feel sad etc); by (indicates the agent in a passive clause, like 被[bei4])#139. 就[jiu4] (京#131 尤#130) (after a suppositional clause) in that case; then; (after a clause of action) as soon as; immediately after; (same as 就是[jiu4 shi4]) merely; nothing else but; simply; just; precisely; exactly; only; as little as; as much as; as many as; to approach; to move towards; to undertake; to engage in; (often followed by 著|着[zhe5]) taking advantage of; (of food) to go with; with regard to; concerning; (pattern: 就[jiu4] ... 也[ye3] ...) even if ... still ...; (pattern: 不[bu4] ... 就[jiu4] ...) if not ... then must be ...#140. 忄[xin1] Kangxi radical 61 (心) as a vertical side element#141. 几[ji1] small table; almost; how much; how many; several; a few#142. 自[zi4] (bound form) self; oneself; from; since; naturally; as a matter of course#143. 甲[jia3] first of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; (used for an unspecified person or thing); first (in a list, as a party to a contract etc); letter "A" or roman "I" in list "A, B, C", or "I, II, III" etc; armor plating; shell or carapace; (of the fingers or toes) nail; bladed leather or metal armor (old); ranking system used in the Imperial examinations (old); civil administration unit in the baojia 保甲[bao3 jia3] system (old); ancient Chinese compass point: 75°#144. 工[gong1] work; worker; skill; profession; trade; craft; labor#145. 很[hen3] (彳#75 艮#98) very; quite; (also, often used before an adjective without intensifying its meaning, i.e. as a meaningless syntactic element)#146. 㐅[wu3] old variant of 五[wu3]#147. 走[zou3] (土#13 龰#32) to walk; to go; to run; to move (of vehicle); to visit; to leave; to go away; to die (euph.); from; through; away (in compound verbs, such as 撤走[che4 zou3]); to change (shape, form, meaning)#148. 过[guo1] (辶#33 寸#42) surname Guo; to cross; to go over; to pass (time); to celebrate (a holiday); to live; to get along; excessively; too-; (experienced action marker)#149. ⺼(⺆#137 冫#81) #150. 艹[cao3] (十#10 丨#11) grass radical 草字頭兒|草字头儿[cao3 zi4 tou2 r5]#151. 巾[jin1] towel; general purpose cloth; women's headcovering (old); Kangxi radical 50#152. 羊[yang2] (䒑#77 二#27 丨#11) surname Yang; sheep; goat; CL:頭|头[tou2],隻|只[zhi1]#153. 合[ge3] (亼#118 口#3) 100 ml; one-tenth of a peck; measure for dry grain equal to one-tenth of sheng 升 or liter, or one-hundredth dou 斗; to close; to join; to fit; to be equal to; whole; together; round (in battle); conjunction (astronomy); 1st note of pentatonic scale; old variant of 盒[he2]; variant of 合[he2]#154. 䏍(厶#17 ⺼#149) #155. 能[neng2] (䏍#154 𫧇#156) surname Neng; can; to be able to; might possibly; ability; (physics) energy#156. 𫧇(匕#44 匕#44) #157. 开[kai1] (一#1 廾#128) to open (transitive or intransitive); (of ships, vehicles, troops etc) to start; to turn on; to put in operation; to operate; to run; to boil; to write out (a prescription, check, invoice etc); (directional complement) away; off; carat (gold); abbr. for Kelvin, 開爾文|开尔文[Kai1er3wen2]; abbr. for 開本|开本[kai1ben3], book format#158. 里[li3] (甲#143 一#1 一#1) variant of 裡|里[li3]; lining; interior; inside; internal; also written 裏|里[li3]; Li (surname); li, ancient measure of length, approx. 500 m; neighborhood; ancient administrative unit of 25 families; (Tw) borough, administrative unit between the township 鎮|镇[zhen4] and neighborhood 鄰|邻[lin2] levels#159. 戈[ge1] (弋#132 丿#2) surname Ge; dagger-axe; abbr. for 戈瑞[ge1 rui4]; (Tw) abbr. for 戈雷[ge1 lei2]#160. 相[xiang1] (木#38 目#72) surname Xiang; each other; one another; mutually; fret on the neck of a pipa 琵琶[pi2 pa5] (a fret on the soundboard is called a 品[pin3]); appearance; portrait; picture; government minister; (physics) phase; (literary) to appraise (esp. by scrutinizing physical features); to read sb's fortune (by physiognomy, palmistry etc)#161. 者[zhe3] (耂#121 日#15) (after a verb or adjective) one who (is) ...; (after a noun) person involved in ...; -er; -ist; (used after a number or 後|后[hou4] or 前[qian2] to refer to sth mentioned previously); (used after a term, to mark a pause before defining the term); (old) (used at the end of a command); (old) this#162. 干[gan1] old variant of 乾|干[gan1]; surname Gan; dry; dried food; empty; hollow; taken in to nominal kinship; adoptive; foster; futile; in vain; (dialect) rude; blunt; (dialect) to cold-shoulder; variant of 乾|干[gan1]; surname Gan; (bound form) to have to do with; to concern oneself with; one of the ten heavenly stems 天干[tian gan1]; (archaic) shield; tree trunk; main part of sth; to manage; to work; to do; capable; cadre; to kill (slang); to fuck (vulgar); (coll.) pissed off; annoyed#163. 还[huan2] (辶#33 不#23) surname Huan; still; still in progress; still more; yet; even more; in addition; fairly; passably (good); as early as; even; also; else; to pay back; to return#164. 只[zhi1] (口#3 八#41) variant of 隻|只[zhi1]; only; merely; just; variant of 只[zhi3]; grain that has begun to ripen; variant of 只[zhi3]; classifier for birds and certain animals, one of a pair, some utensils, vessels etc#165. 夂[zhi3] "walk slowly" component in Chinese characters; see also 冬字頭|冬字头[dong1 zi4 tou2]#166. 古[gu3] (十#10 口#3) surname Gu; ancient; old; paleo-#167. 生[sheng1] to be born; to give birth; life; to grow; raw; uncooked; student#168. 田[tian2] surname Tian; field; farm; CL:片[pian4]#169. 和[he2] (禾#107 口#3) old variant of 和[he2]; surname He; (joining two nouns) and; together with; with (Taiwan pr. [han4]); (math.) sum; to make peace; (sports) to draw; to tie; (bound form) harmonious; (bound form) Japan; Japanese; to compose a poem in reply (to sb's poem) using the same rhyme sequence; to join in the singing; to chime in with others; to complete a set in mahjong or playing cards; to combine a powdery substance (flour, plaster etc) with water; Taiwan pr. [huo4]; to mix (ingredients) together; to blend; classifier for rinses of clothes; classifier for boilings of medicinal herbs; (literary) harmonious (variant of 和[he2])#170. 龵#171. 三[san1] (一#1 二#27) surname San; three; 3#172. 以[yi3] old variant of 以[yi3]; old variant of 以[yi3]; abbr. for Israel 以色列[Yi3 se4 lie4]; to use; by means of; according to; in order to; because of; at (a certain date or place)#173. 太[tai4] (大#35 丶#4) highest; greatest; too (much); very; extremely#174. 中[zhong1] (口#3 丨#11) (bound form) China; Chinese; surname Zhong; within; among; in; middle; center; while (doing sth); during; (dialect) OK; all right; to hit (a target); to be struck by (a bullet, illness etc); to win (a prize or lottery)#175. 矢[shi3] (𠂉#82 大#35) arrow; dart; straight; to vow; to swear; old variant of 屎[shi3]#176. 看[kan1] (龵#170 目#72) to look after; to take care of; to watch; to guard; to see; to look at; to read; to watch; to visit; to call on; to consider; to regard as; to look after; to treat (a patient or illness); to depend on; to feel (that); (after a verb) to give it a try; to watch out for#177. 把[ba3] (扌#52 巴#74) to hold; to grasp; to hold a baby in position to help it urinate or defecate; handlebar; classifier: handful, bundle, bunch; classifier for things with handles; (used to put the object before the verb: 把[ba3] + {noun} + {verb}); handle#178. 想[xiang3] (相#160 心#61) to think (about); to think of; to devise; to think (that); to believe (that); to desire; to want (to); to miss (feel wistful about the absence of)#179. ⺌#180. 车[che1] surname Che; car; vehicle; CL:輛|辆[liang4]; machine; to shape with a lathe; Kangxi radical 159; war chariot (archaic); rook (in Chinese chess); rook (in chess)#181. 𠂒#182. 事[shi4] matter; thing; item; work; affair; CL:件[jian4],樁|桩[zhuang1],回[hui2]#183. 欠[qian4] to owe; to lack; (literary) to be deficient in; (bound form) yawn; to raise slightly (a part of one's body)#184. 占[zhan4] (⺊#45 口#3) variant of 占[zhan4]; to observe; to divine; to take possession of; to occupy; to take up#185. 千[qian1] (丿#2 十#10) thousand; used in 鞦韆|秋千[qiu1qian1]#186. 乍[zha4] at first; suddenly; abruptly; to spread; (of hair) to stand on end; bristling#187. 火[huo3] (八#41 人#6) surname Huo; fire; urgent; ammunition; fiery or flaming; internal heat (Chinese medicine); hot (popular); classifier for military units (old); Kangxi radical 86#188. 都[du1] (者#161 阝#46) surname Du; all; both; entirely; (used for emphasis) even; already; (not) at all; capital city; metropolis#189. 贝[bei4] surname Bei; cowrie; shellfish; currency (archaic)#190. 屮[che4] (凵#90 丨#11) plants sprouting#191. 竹[zhu2] (亇#110 亇#110) bamboo; CL:棵[ke1],支[zhi1],根[gen1]; Kangxi radical 118#192. 出[chu1] (屮#190 凵#90) to go out; to come out; to arise; to occur; to produce; to yield; to go beyond; to exceed; (used after a verb to indicate an outward direction or a positive result); classifier for dramas, plays, operas etc; variant of 出[chu1] (classifier for plays or chapters of classical novels)#193. 才[cai2] ability; talent; sb of a certain type; a capable individual; then and only then; just now; (before an expression of quantity) only; (variant of 才[cai2]) just now; (variant of 才[cai2]) (before an expression of quantity) only#194. 广[yan3] "house on a cliff" radical in Chinese characters (Kangxi radical 53), occurring in 店, 序, 底 etc; surname Guang; wide; numerous; to spread#195. 龶[xx5] component in Chinese characters, occurring in 青, 毒, 素 etc, referred to as 青字頭|青字头[qing1 zi4 tou2]#196. 用[yong4] (冂#57 二#27 丨#11) to use; to make use of; to employ; (coverb) with; using; to need; to have to (usu. used in the negative or in questions); usefulness; utility; (bound form) expense; outlay; (courteous) to eat; to drink; (literary) hence; therefore#197. 朩[xx5] one of the characters used in kwukyel (phonetic "pin"), an ancient Korean writing system#198. 方[fang1] (亠#26 丿#2 𠃌#30) surname Fang; square; power or involution (math.); upright; honest; fair and square; direction; side; party (to a contract, dispute etc); place; method; prescription (medicine); just when; only or just; classifier for square things; abbr. for square or cubic meter#199. 舌[ji1] (千#185 口#3) used in 喇舌[la3 ji1] to transcribe the Taiwanese word for "tongue"; tongue#200. 巳[si4] 6th earthly branch: 9-11 a.m., 4th solar month (5th May-5th June), year of the Snake; ancient Chinese compass point: 150°#201. 㝵[ai4] (旦#102 寸#42) variant of 礙|碍[ai4]; to obtain (old variant of 得[de2])#202. 得[de2] (彳#75 㝵#201) to obtain; to get; to gain; to catch (a disease); proper; suitable; proud; contented; to allow; to permit; ready; finished; structural particle: used after a verb (or adjective as main verb), linking it to following phrase indicating effect, degree, possibility etc; to have to; must; ought to; to need to#203. 另[ling4] (口#3 力#78) other; another; separate; separately#204. 多[duo1] (夕#71 夕#71) many; much; more; a lot of; too many; in excess; (after a numeral) ... odd; how (to what extent) (Taiwan pr. [duo2]); (bound form) multi-; poly-#205. 士[shi4] (十#10 一#1) surname Shi; member of the senior ministerial class (old); scholar (old); bachelor; honorific; soldier; noncommissioned officer; specialist worker#206. 𧰨#207. 头[tou2] head; hair style; the top; end; beginning or end; a stub; remnant; chief; boss; side; aspect; first; leading; classifier for pigs or livestock; CL:個|个[ge4]; suffix for nouns#208. 他们[ta1 men5] (他#48 们#64) they; them#209. 隹[zhui1] short-tailed bird#210. 具[ju4] (且#136 一#1 八#41) tool; device; utensil; equipment; instrument; talent; ability; to possess; to have; to provide; to furnish; to state; classifier for devices, coffins, dead bodies#211. 手[shou3] hand; (formal) to hold; person engaged in certain types of work; person skilled in certain types of work; personal(ly); convenient; classifier for skill; CL:雙|双[shuang1],隻|只[zhi1]#212. 亥[hai4] (亠#26 𠂈#213 人#6) 12th earthly branch: 9-11 p.m., 10th solar month (7th November-6th December), year of the Boar; ancient Chinese compass point: 330°#213. 𠂈(𠃋#214 丿#2) #214. 𠃋#215. 给[gei3] (纟#91 合#153) to; for; for the benefit of; to give; to allow; to do sth (for sb); (grammatical equivalent of 被); (grammatical equivalent of 把); (sentence intensifier); to supply; to provide#216. 牛[niu2] surname Niu; ox; cow; bull; CL:條|条[tiao2],頭|头[tou2]; newton (abbr. for 牛頓|牛顿[niu2 dun4]); (slang) awesome#217. 彐[ji4] pig snout (Kangxi radical 58)#218. 但[dan4] (亻#7 旦#102) but; yet; however; still; merely; only; just#219. 厂[han3] "cliff" radical in Chinese characters (Kangxi radical 27), occurring in 原, 历, 压 etc; factory; yard; depot; workhouse; works; (industrial) plant#220. 兀[wu4] (一#1 儿#50) surname Wu; cut off the feet; rising to a height; towering; bald#221. 此[ci3] (止#92 匕#44) this; these#222. 真[zhen1] (十#10 具#210) really; truly; indeed; real; true; genuine#223. 阿[a1] (阝#46 可#84) abbr. for country names that begin with 阿[a1]: Algeria 阿爾及利亞|阿尔及利亚[A1er3ji2li4ya4], Afghanistan 阿富汗[A1fu4han4] etc; prefix used before monosyllabic names, kinship terms etc to indicate familiarity; used in transliteration; also pr. [a4]; (literary) to flatter; to curry favor with#224. 时[shi2] (日#15 寸#42) old variant of 時|时[shi2]; surname Shi; o'clock; time; when; hour; season; period#225. 点[dian3] (占#184 灬#134) to touch briefly; to tap; to mark with a dot; to check off (on a list); to order (food etc); to select; to mention; to bring up (a topic or person); to hint at; to imply; to administer (eye medicine etc) in drops; to light (a fire, a lamp etc); to ignite; to nod (one's head) in agreement; to beckon by moving (one's hand) up and down; point; dot; spot; speck; dot stroke in Chinese characters; (math.) decimal point; point in time or space; (after a number) o'clock; a small amount; a bit; (after a verb or adjective) a bit more; classifier for small amounts#226. 别[bie2] (另#203 刂#67) surname Bie; to leave; to part (from); (literary) to differentiate; to distinguish; (dialect) to turn away; to turn aside; to avert (one's face, gaze etc); (bound form) other; another; different; don't ...!; to fasten with a pin or clip; to stick in; to insert (in order to hinder movement); (noun suffix) category (as in 性別|性别[xing4 bie2], 派別|派别[pai4 bie2]); to make sb change their ways, opinions etc#227. 钅#228. 故[gu4] (古#166 攵#114) happening; instance; reason; cause; intentional; former; old; friend; therefore; hence; (of people) to die, dead#229. 己[ji3] self; oneself; sixth of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; sixth in order; letter "F" or Roman "VI" in list "A, B, C", or "I, II, III" etc; hexa#230. 𦉫(冂#57 丨#11 丨#11) #231. 而[er2] (一#1 𦓐#232) and; as well as; and so; but (not); yet (not); (indicates causal relation); (indicates change of state); (indicates contrast)#232. 𦓐(丿#2 𦉫#230) #233. 𠃍#234. 夬[guai4] (𠃍#233 大#35) decisive#235. 耳[er3] ear; handle (archaeology); and that is all (Classical Chinese)#236. 首[shou3] (䒑#77 自#142) head; chief; first (occasion, thing etc); classifier for poems, songs etc#237. 弓[gong1] surname Gong; a bow (weapon); CL:張|张[zhang1]; to bend; to arch (one's back etc)#238. 啊[a1] (口#3 阿#223) interjection of surprise; Ah!; Oh!; interjection expressing doubt or requiring answer; Eh?; what?; interjection of surprise or doubt; Eh?; My!; what's up?; interjection or grunt of agreement; uhm; Ah, OK; expression of recognition; Oh, it's you!; modal particle ending sentence, showing affirmation, approval, or consent#239. 做[zuo4] (亻#7 故#228) to make; to produce; to write; to compose; to do; to engage in; to hold (a party etc); (of a person) to be (an intermediary, a good student etc); to become (husband and wife, friends etc); (of a thing) to serve as; to be used for; to assume (an air or manner)#240. 米[mi3] surname Mi; uncooked rice; meter (unit of length); (slang) Chinese yuan#241. 尼[ni2] (尸#99 匕#44) Buddhist nun; (often used in phonetic spellings)#242. 因[yin1] (囗#86 大#35) old variant of 因[yin1]; cause; reason; because#243. 冉[ran3] variant of 冉[ran3]; surname Ran; edge of a tortoiseshell; used in 冉冉[ran3 ran3]#244. 再[zai4] (一#1 冉#243) again; once more; re-; further; beyond this point of time; (before an adjective) more; then (after sth, and not until then); no matter how ... (followed by an adjective or verb, and then (usually) 也[ye3] or 都[dou1] for emphasis); (used to introduce additional information, as in 再則|再则[zai4ze2], 再就是[zai4jiu4shi4] etc); (literary) to reappear; to reoccur#245. 丆[xx5] (一#1 丿#2) one of the characters used in kwukyel (phonetic "myeon"), an ancient Korean writing system#246. 它[ta1] (宀#66 匕#44) it; it (pronoun for an animal)#247. 戊[wu4] fifth of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; fifth in order; letter "E" or Roman "V" in list "A, B, C", or "I, II, III" etc; penta#248. 歹[dai3] (一#1 夕#71) bad; wicked; evil; Kangxi radical 78#249. 知[zhi1] (矢#175 口#3) to know; to be aware#250. 道[dao4] (辶#33 首#236) road; path (CL:條|条[tiao2],股[gu3]); (bound form) way; reason; principle; (bound form) a skill; an art; a specialization; (Daoism) the Way; the Dao; to say (introducing a direct quotation, as in a novel); (bound form) to express; to extend (polite words); classifier for long thin things (rivers, cracks etc), barriers (walls, doors etc), questions (in an exam etc), commands, courses in a meal, steps in a process; (old) circuit (administrative division)#251. 正[zheng1] (一#1 止#92) first month of the lunar year; straight; upright; proper; main; principal; to correct; to rectify; exactly; just (at that time); right (in that place); (math.) positive#252. 㔾[jie2] "seal" radical in Chinese characters (Kangxi radical 26)#253. 青[qing1] (龶#195 月#40) abbr. for 青海[Qing1 hai3], Qinghai Province; green; blue; black; youth; young (of people)#254. 卩[jie2] "seal" radical in Chinese characters (Kangxi radical 26)#255. 卄[nian4] (十#10 丨#11) twenty, twentieth#256. 之[zhi1] (丶#4 ②) (possessive particle, literary equivalent of 的[de5]); him; her; it#257. 元[yuan2] (一#1 兀#220) surname Yuan; Yuan dynasty (1279-1368); currency unit (esp. Chinese yuan); (bound form) first; original; primary; (bound form) basic; fundamental; (bound form) constituent; part; (prefix) meta-; (math.) argument; variable; era (of a reign); (Tw) (geology) eon#258. 𠃊#259. 先[xian1] (𠂒#181 儿#50) beforehand; first; earlier; at first; originally; for the time being; for now; (prefix) my late (in referring to deceased relatives older than oneself)#260. 回[hui2] (囗#86 口#3) to circle; to go back; to turn around; to answer; to return; to revolve; Hui ethnic group (Chinese Muslims); time; classifier for acts of a play; section or chapter (of a classic book); to curve; to return; to revolve; variant of 迴|回[hui2]#261. 比[bi3] Belgium; Belgian; abbr. for 比利時|比利时[Bi3 li4 shi2]; euphemistic variant of 屄[bi1]; to compare; (followed by a noun and adjective) more {adj.} than {noun}; ratio; to gesture; (Taiwan pr. [bi4] in some compounds derived from Classical Chinese)#262. 𧾷(口#3 止#92) #263. 父[fu4] (八#41 乂#53) father#264. 样[yang4] (木#38 羊#152) manner; pattern; way; appearance; shape; classifier: kind, type#265. ㇇#266. 爫[zhao3] (丿#2 𭕄#135) "claw" radical in Chinese characters (Kangxi radical 87)#267. 着[zhao1] (羊#152 目#72) a move in chess (Taiwan pr. [zhuo2]); trick; tactic; (dialect) okay; all right; (dialect) to put in; to add; to touch; to come in contact with; to feel; to be affected by; to catch fire; to burn; (coll.) to fall asleep; (after a verb) hitting the mark; succeeding in; aspect particle indicating action in progress or ongoing state; to wear (clothes); to contact; to use; to apply#268. 现[xian4] (王#97 见#123) to appear; present; now; existing; current#269. 𠂋(𠂆#83 一#1) #270. 后[hou4] (𠂋#269 口#3) surname Hou; empress; queen; (archaic) monarch; ruler; back; behind; rear; afterwards; after; later; post-#271. 死[si3] (歹#248 匕#44) to die; impassable; uncrossable; inflexible; rigid; extremely; damned#272. 打[da2] (扌#52 丁#62) (loanword) dozen; Taiwan pr. [da3]; a semantically light, transitive verb that is combined with various grammatical objects to form compound verbs and verb-object phrases with a diverse range of meanings (e.g. 打傘|打伞[da3san3] "to hold an umbrella", 打電話|打电话[da3 dian4hua4] "to make a phone call", 打針|打针[da3zhen1] "to get an injection", 打手套[da3 shou3tao4] "to knit gloves", 打氣|打气[da3qi4] "to inflate"); to hit; to strike; to fight; (coll.) from; since (as in 打那以後|打那以后[da3 na4 yi3hou4] "since then")#273. 听[yin3] (口#3 斤#117) smile (archaic); to listen to; to hear; to heed; to obey; a can (loanword from English "tin"); classifier for canned beverages; to let be; to allow (Taiwan pr. [ting4]); (literary) to administer; to deal with (Taiwan pr. [ting4])#274. 呢[ne5] (口#3 尼#241) particle indicating that a previously asked question is to be applied to the preceding word ("What about ...?", "And ...?"); particle for inquiring about location ("Where is ...?"); particle signaling a pause, to emphasize the preceding words and allow the listener time to take them on board ("ok?", "are you with me?"); (at the end of a declarative sentence) particle indicating continuation of a state or action; particle indicating strong affirmation; dense wool fabric (used for coats and jackets)#275. 怎[zen3] (乍#186 心#61) how#276. 寺[si4] (土#13 寸#42) Buddhist temple; mosque; government office (old)#277. 些[xie1] (此#221 二#27) classifier indicating a small amount or small number greater than 1: some, a few, several#278. 你们[ni3 men5] (你#25 们#64) you (plural)#279. 犬[quan3] dog; Kangxi radical 94#280. 亽[ji2] (人#6 丶#4) old variant of 亼[ji2]; one of the characters used in kwukyel (phonetic "ra"), an ancient Korean writing system#281. 身[shen1] body; life; oneself; personally; one's morality and conduct; the main part of a structure or body; pregnant; classifier for sets of clothes: suit, twinset; Kangxi radical 158#282. 知道[zhi1 dao4] (知#249 道#250) to know; to become aware of; also pr. [zhi1dao5]#283. 母[mu3] mother; elderly female relative; origin; source; (of animals) female#284. 次[ci4] (冫#81 欠#183) next in sequence; second; the second (day, time etc); secondary; vice-; sub-; infra-; inferior quality; substandard; order; sequence; hypo- (chemistry); classifier for enumerated events: time#285. 起[qi3] (走#147 巳#200) to rise; to raise; to get up; to set out; to start; to appear; to launch; to initiate (action); to draft; to establish; to get (from a depot or counter); verb suffix, to start; starting from (a time, place, price etc); classifier for occurrences or unpredictable events: case, instance; classifier for groups: batch, group#286. 龷(卄#255 一#1) #287. 夫[fu1] (二#27 人#6) husband; man; manual worker; conscripted laborer (old); (classical) this, that; he, she, they; (exclamatory final particle); (initial particle, introduces an opinion)#288. 丩[jiu1] old variant of 糾|纠[jiu1]#289. 皮[pi2] surname Pi; leather; skin; fur; CL:張|张[zhang1]; pico- (one trillionth); naughty#290. 快[kuai4] (忄#140 夬#234) rapid; quick; speed; rate; soon; almost; to make haste; clever; sharp (of knives or wits); forthright; plainspoken; gratified; pleased; pleasant#291. ㇀#292. 如[ru2] (女#29 口#3) as; as if; such as#293. コ#294. 七[qi1] (㇀#291 乚#18) seven; 7#295. 主[zhu3] (亠#26 土#13) owner; master; host; individual or party concerned; God; Lord; main; to indicate or signify; trump card (in card games)#296. 话[hua4] (讠#36 舌#199) dialect; language; spoken words; speech; talk; words; conversation; what sb said; CL:種|种[zhong3],席[xi2],句[ju4],口[kou3],番[fan1]; old variant of 話|话[hua4]#297. 豕[shi3] (一#1 𧰨#206) hog; swine#298. 友[you3] (𠂇#54 又#34) friend#299. 当[dang1] (⺌#179 彐#217) (onom.) dong; ding dong (bell); to be; to act as; manage; withstand; when; during; ought; should; match equally; equal; same; obstruct; just at (a time or place); on the spot; right; just at; at or in the very same...; suitable; adequate; fitting; proper; to replace; to regard as; to think; to pawn; (coll.) to fail (a student)#300. 亍[chu4] (一#1 丁#62) to step with the right foot (used in 彳亍[chi4chu4])#301. 找[zhao3] (扌#52 戈#159) to try to find; to look for; to call on sb; to find; to seek; to return; to give change#302. 发[fa1] to send out; to show (one's feeling); to issue; to develop; to make a bundle of money; classifier for gunshots (rounds); hair; Taiwan pr. [fa3]#303. 丰[feng1] (三#171 丨#11) luxuriant; buxom; variant of 豐|丰[feng1]; variant of 風|风[feng1]; appearance; charm; surname Feng; abundant; plentiful; fertile; plump; great#304. 这个[zhe4 ge5] (这#68 个#43) (pronoun) this; (adjective) this#305. 没有[mei2 you3] (没#105 有#63) haven't; hasn't; doesn't exist; to not have; to not be#306. 分[fen1] (八#41 刀#59) to divide; to separate; to distribute; to allocate; to distinguish (good and bad); (bound form) branch of (an organization); sub- (as in 分局[fen1 ju2]); fraction; one tenth (of certain units); unit of length equivalent to 0.33 cm; minute (unit of time); minute (angular measurement unit); a point (in sports or games); 0.01 yuan (unit of money); part; share; ingredient; component#307. 家[jia1] (宀#66 豕#297) used in 傢伙|家伙[jia1huo5] and 傢俱|家俱[jia1ju4]; home; family; (polite) my (sister, uncle etc); classifier for families or businesses; refers to the philosophical schools of pre-Han China; noun suffix for a specialist in some activity, such as a musician or revolutionary, corresponding to English -ist, -er, -ary or -ian; CL:個|个[ge4]#308. 长[chang2] long; (bound form) length; (bound form) strong point; forte; (bound form) to be good at; (literary) surplus; spare (Taiwan pr. [zhang4]); chief; head; elder; to grow; to develop; to increase; to enhance#309. 所[suo3] (戶#310 斤#117) actually; place; classifier for houses, small buildings, institutions etc; that which; particle introducing a relative clause or passive; CL:個|个[ge4]#310. 戶(丿#2 尸#99) #311. 页[xie2] head; page; leaf#312. 犭[quan3] three-stroke form of Kangxi radical 94 犬[quan3]#313. 井[jing3] Jing, one of the 28 constellations of Chinese astronomy; surname Jing; a well; CL:口[kou3]; neat; orderly#314. 龴#315. 刖[yue4] (月#40 刂#67) to amputate one or both feet (punishment in imperial China) (one of the five mutilating punishments 五刑[wu3 xing2])#316. 行[hang2] (彳#75 亍#300) (bound form) row; line; (bound form) line of business; trade; profession; (bound form) commercial firm; (bound form) to rank (first, second etc) among one's siblings (by age); (in data tables) row; (Tw) column; classifier for rows or lines; used in 道行[dao4heng2]; (bound form) to walk; to go; to travel; (literary) trip; journey; visit; (bound form) temporary; makeshift; (bound form) current; in circulation; (bound form) to do; to perform; capable; competent; all right; OK!; will do; behavior; conduct (Taiwan pr. [xing4]); (literary) about to; soon#317. 地[de5] (土#13 也#28) -ly; structural particle: used before a verb or adjective, linking it to preceding modifying adverbial adjunct; earth; ground; field; place; land; CL:片[pian4]#318. 可以[ke3 yi3] (可#84 以#172) can; may; possible; able to; not bad; pretty good#319. 妈[ma1] (女#29 马#70) ma; mom; mother#320. 两[liang3] (一#1 冂#57 从#133) two; both; some; a few; tael, unit of weight equal to 50 grams (modern) or 1⁄16 of a catty 斤[jin1] (old)#321. ス#322. 𢀖(ス#321 工#144) #323. 与[yu2] (② 一#1) variant of 歟|欤[yu2]; and; to give; together with; to take part in#324. 已[yi3] already; to stop; then; afterwards#325. 衤[yi1] the left-radical form of Kangxi radical 145, 衣[yi1]#326. 怎么[zen3 me5] (怎#275 么#58) how?; what?; why?; variant of 怎麼|怎么[zen3 me5]#327. 该[gai1] (讠#36 亥#212) should; ought to; probably; must be; to deserve; to owe; to be sb's turn to do sth; that; the above-mentioned#328. 叫[jiao4] (口#3 丩#288) to shout; to call; to order; to ask; to be called; by (indicates agent in the passive mood); variant of 叫[jiao4]#329. 关[guan1] (丷#31 天#124) surname Guan; mountain pass; to close; to shut; to turn off; to confine; to lock (sb) up; to shut (sb in a room, a bird in a cage etc); to concern; to involve#330. 亡[wang2] (亠#26 𠃊#258) to die; to lose; to be gone; to flee; deceased; old variant of 亡[wang2]#331. 取[qu3] (耳#235 又#34) to take; to get; to choose; to fetch#332. 果[guo3] (日#15 木#38) fruit; result; resolute; indeed; if really; variant of 果[guo3]; fruit#333. 氺[shui3] (亅#5 丷#31 八#41) old variant of 水[shui3]#334. 山[shan1] surname Shan; mountain; hill (CL:座[zuo4]); (coll.) small bundle of straw for silkworms to spin cocoons on#335. 成[cheng2] (戊#247 𠃌#30) surname Cheng; short name for Chengdu 成都[Cheng2du1]; to succeed; to finish; to complete; to accomplish; to become; to turn into; to be all right; OK!; one tenth#336. 告[gao4] (𠂒#181 口#3) (bound form) to say; to tell; to announce; to report; to denounce; to file a lawsuit; to sue#337. 音[yin1] (立#122 日#15) sound; noise; note (of musical scale); tone; news; syllable; reading (phonetic value of a character)#338. 其[qi2] (⑤ 一#1 八#41) his; her; its; their; that; such; it (refers to sth preceding it)#339. 哦[e2] (口#3 我#14) to chant; oh (interjection indicating doubt or surprise); oh (interjection indicating that one has just learned sth); sentence-final particle that conveys informality, warmth, friendliness or intimacy; may also indicate that one is stating a fact that the other person is not aware of#340. 年[nian2] surname Nian; year; CL:個|个[ge4]; grain; harvest (old); variant of 年[nian2]#341. 一下[yi1 xia4] (一#1 下#109) (after a verb) a bit; a little (indicating brief duration, or softening the tone, or suggesting giving sth a try); all at once; suddenly#342. 于[yu2] surname Yu; to go; to take; sentence-final interrogative particle; variant of 於|于[yu2]; (of time or place) in; at; on; (indicating any indirect relation) to; toward; vis-à-vis; with regard to; for; (indicating a source) from; out of; (used in comparison) than; (used in the passive voice) by#343. 本[ben3] (bound form) root; stem; (bound form) origin; source; (bound form) one's own; this; (bound form) this; the current (year etc); (bound form) original; (bound form) inherent; originally; initially; capital; principal; classifier for books, periodicals, files etc#344. 乙[yi3] second of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; second in order; letter "B" or Roman "II" in list "A, B, C", or "I, II, III" etc; second party (in legal contract, usually 乙方[yi3 fang1], as opposed to 甲方[jia3 fang1]); ethyl; bent; winding; radical in Chinese characters (Kangxi radical 5); ancient Chinese compass point: 105°; turning stroke (in Chinese characters), aka 折[zhe2]#345. 每[mei3] (𠂉#82 母#283) each; every#346. 前[qian2] (䒑#77 刖#315) front; forward; ahead; first; top (followed by a number); future; ago; before; BC (e.g. 前293年); former; formerly#347. 定[ding4] (宀#66 𤴓#37) to fix; to set; to make definite; to subscribe to (a newspaper etc); to book (tickets etc); to order (goods etc); to congeal; to coagulate; (literary) definitely#348. 石[shi2] (丆#245 口#3) surname Shi; abbr. for Shijiazhuang 石家莊|石家庄[Shi2jia1zhuang1], the capital of Hebei; dry measure for grain equal to ten dou 斗[dou3]; one hundred liters; ancient pr. [shi2]; rock; stone; stone inscription; one of the eight categories of ancient musical instruments 八音[ba1 yin1]#349. 经[jing1] (纟#91 𢀖#322) surname Jing; classics; sacred book; scripture; to pass through; to undergo; to bear; to endure; warp (textile); longitude; menstruation; channel (TCM); abbr. for economics 經濟|经济[jing1 ji4]#350. 早[zao3] (日#15 十#10) early; morning; Good morning!; long ago; prematurely#351. 自己[zi4 ji3] (自#142 己#229) oneself; one's own#352. 𧘇#353. 现在[xian4 zai4] (现#268 在#55) now; at present; at the moment; modern; current; nowadays#354. 言[yan2] words; speech; to say; to talk#355. 各[ge4] (夂#165 口#3) each; every#356. 被[bei4] (衤#325 皮#289) quilt; to cover (with); (literary) to suffer (a misfortune); used to indicate passive voice (placed before the doer of the action like "by" in English passive-voice sentences, or, if the doer is not mentioned, before the verb); (since c. 2009) (sarcastic or jocular) used to indicate that the following word should be regarded as being in air quotes (as in 被旅遊|被旅游[bei4 lu:3you2] to "go on a trip")#357. 句[gou1] (勹#19 口#3) variant of 勾[gou1]; sentence; clause; phrase; classifier for phrases or lines of verse#358. 户[hu4] (丶#4 尸#99) a household; door; family#359. 作[zuo1] (亻#7 乍#186) (bound form) worker; (bound form) workshop; (slang) troublesome; high-maintenance (person); to do; to engage in; to write; to compose; to pretend; to feign; to regard as; to consider to be; to be; to act the part of; to feel (itchy, nauseous etc); writings; works#360. 少[shao3] (小#16 丿#2) few; less; to lack; to be missing; to stop (doing sth); seldom; young#361. 因为[yin1 wei4] (因#242 为#104) because; owing to; on account of#362. 更[geng1] (一#1 日#15 乂#53) to change or replace; to experience; one of the five two-hour periods into which the night was formerly divided; watch (e.g. of a sentry or guard); more; even more; further; still; still more#363. 幺[yao1] (② 丶#4) surname Yao; youngest; most junior; tiny; one (unambiguous spoken form when spelling out numbers, esp. on telephone or in military); one or ace on dice or dominoes; variant of 吆[yao1], to shout#364. 𫩏(囗#86 丨#11) #365. 认[ren4] (讠#36 人#6) to recognize; to know; to admit#366. 杀[sha1] (㐅#146 朩#197) to kill; to slay; to murder; to attack; to weaken; to reduce; (dialect) to smart; (used after a verb) extremely#367. 匚[fang1] "right open box" radical (Kangxi radical 22), occurring in 区, 医, 匹 etc#368. 由[you2] to follow; from; because of; due to; by; via; through; (before a noun and a verb) it is for ... to ...#369. 问[wen4] (门#51 口#3) to ask; to inquire#370. 今[jin1] (亽#280 ㇇#265) now; the present time; current; contemporary; this (day, year etc)#371. 射[she4] (身#281 寸#42) old variant of 射[she4]; to shoot; to launch; to allude to; radio- (chemistry)#372. 老[lao3] (耂#121 匕#44) prefix used before the surname of a person or a numeral indicating the order of birth of the children in a family or to indicate affection or familiarity; old (of people); venerable (person); experienced; of long standing; always; all the time; of the past; very; outdated; (of meat etc) tough#373. 彡[shan1] "bristle" radical in Chinese characters (Kangxi radical 59)#374. 象[xiang4] (𠂊#12 𫩏#364 𧰨#206) elephant; CL:隻|只[zhi1]; shape; form; appearance; to imitate#375. 如果[ru2 guo3] (如#292 果#332) if; in case; in the event that#376. ㇉#377. 丬[qiang2] "piece of wood" radical in Chinese characters (Kangxi radical 90), mirror image of 片[pian4]#378. 台[tai2] (厶#17 口#3) Taiwan (abbr.); surname Tai; (classical) you (in letters); variant of 臺|台[tai2]; desk; table; counter; Taiwan (abbr.); platform; stage; terrace; stand; support; station; broadcasting station; classifier for vehicles or machines; typhoon#379. 丂[kao3] (一#1 ㇉#376) "breath" or "sigh" component in Chinese characters#380. 最[zui4] (日#15 取#331) variant of 最[zui4]; old variant of 最[zui4]; most; the most; -est (superlative suffix)#381. 买[mai3] (乛#8 头#207) to buy; to purchase#382. 切[qie1] (七#294 刀#59) to cut; to slice; to carve; (math) tangential; definitely; absolutely (not); (scoffing or dismissive interjection) Yeah, right.; Tut!; to grind; (bound form) close to; (bound form) eager; to correspond to; (used to indicate that the fanqie 反切[fan3 qie4] system should be applied to the previous two characters)#383. 午[wu3] (𠂉#82 十#10) 7th earthly branch: 11 a.m.-1 p.m., noon, 5th solar month (6th June-6th July), year of the Horse; ancient Chinese compass point: 180° (south)#384. 间[jian1] (门#51 日#15) between; among; within a definite time or space; room; section of a room or lateral space between two pairs of pillars; classifier for rooms; gap; to separate; to thin out (seedlings); to sow discontent#385. 川[chuan1] abbr. for Sichuan Province 四川[Si4 chuan1] in southwest China; (bound form) river; creek; plain; an area of level country#386. 谁[shei2] (讠#36 隹#209) who; also pr. [shui2]#387. 非[fei1] abbr. for 非洲[Fei1 zhou1], Africa; to not be; not; wrong; incorrect; non-; un-; in-; de-; to reproach; to blame; (coll.) to insist on; simply must#388. 昔[xi1] (龷#286 日#15) surname Xi; former times; the past; Taiwan pr. [xi2]#389. 疒[ne4] sick; sickness; Kang Xi radical 104; also pr. [chuang2]#390. 角[jue2] surname Jue; angle; corner; horn; horn-shaped; unit of money equal to 0.1 yuan, or 10 cents (a dime); CL:個|个[ge4]; role (theater); to compete; ancient three legged wine vessel; third note of pentatonic scale#391. 示[shi4] to show; to reveal#392. 穴[xue2] (宀#66 八#41) cave; cavity; hole; acupuncture point; Taiwan pr. [xue4]#393. 乞[qi3] (𠂉#82 乙#344) to beg#394. 礻#395. 求[qiu2] (一#1 氺#333 丶#4) to seek; to look for; to request; to demand; to beseech#396. 罒[wang3] net (Kangxi radical 122)#397. 谢[xie4] (讠#36 射#371) surname Xie; to thank; (bound form) to apologize; (bound form) to decline; to refuse; (bound form) (of flowers, leaves etc) to wither#398. 西[xi1] (一#1 𠁤#399) the West; abbr. for Spain 西班牙[Xi1 ban1 ya2]; Spanish; west#399. 𠁤(儿#50 口#3) #400. 孩[hai2] (子#47 亥#212) (bound form) child#401. 吃[chi1] (口#3 乞#393) to eat; to consume; to eat at (a cafeteria etc); to eradicate; to destroy; to absorb; to suffer (shock, injury, defeat etc); variant of 吃[chi1]#402. 亲[qin1] (立#122 朩#197) parent; one's own (flesh and blood); relative; related; marriage; bride; close; intimate; in person; first-hand; in favor of; pro-; to kiss; (Internet slang) dear; parents-in-law of one's offspring#403. 直[zhi2] (十#10 且#136 一#1) surname Zhi; Zhi (c. 2000 BC), fifth of the legendary Flame Emperors 炎帝[Yan2di4] descended from Shennong 神農|神农[Shen2nong2] Farmer God; straight; to straighten; fair and reasonable; frank; straightforward; (indicates continuing motion or action); vertical; vertical downward stroke in Chinese characters#404. 跟[gen1] (𧾷#262 艮#98) heel; to follow closely; to go with; (of a woman) to marry sb; with; compared with; to; towards; and (joining two nouns)#405. 哪[na3] (口#3 那#79) how; which; (emphatic sentence-final particle, used instead of 啊[a5] after a word ending in "n"); used in 哪吒[Ne2 zha1]; Taiwan pr. [nuo2]; which? (interrogative, followed by classifier or numeral-classifier)#406. 爱[ai4] (爫#266 冖#96 友#298) to love; to be fond of; to like; affection; to be inclined (to do sth); to tend to (happen)#407. 安[an1] (宀#66 女#29) surname An; (bound form) calm; peaceful; to calm; to set at ease; safe; secure; in good health; content; satisfied (as in 安於|安于[an1yu2]); to place (sb) in a suitable position (job); to install; to fix; to fit; to bring (a charge against sb); to harbor (certain intentions); ampere (abbr. for 安培[an1pei2])#408. 加[jia1] (力#78 口#3) Canada (abbr. for 加拿大[Jia1na2da4]); surname Jia; to add; (math.) plus; to increase; to augment; (used before a disyllabic verb, often after an adverb like 不[bu4], 大[da4], 稍[shao1] etc, to indicate that the action applies to sth previously mentioned, as in 稍加改良[shao1jia1 gai3liang2] "make some minor improvements to (it)")#409. 然[ran2] (𠂊#12 冫#81 犬#279 灬#134) correct; right; so; thus; like this; -ly#410. 虫[chong2] variant of 蟲|虫[chong2]; lower form of animal life, including insects, insect larvae, worms and similar creatures; CL:條|条[tiao2],隻|只[zhi1]; (fig.) person with a particular undesirable characteristic#411. 明[ming2] (日#15 月#40) Ming Dynasty (1368-1644); surname Ming; Ming (c. 2000 BC), fourth of the legendary Flame Emperors, 炎帝[Yan2di4] descended from Shennong 神農|神农[Shen2nong2] Farmer God; bright; opposite: dark 暗[an4]; (of meaning) clear; to understand; next; public or open; wise; generic term for a sacrifice to the gods#412. 进[jin4] (辶#33 井#313) to go forward; to advance; to go in; to enter; to put in; to submit; to take in; to admit; (math.) base of a number system; classifier for sections in a building or residential compound#413. 业[ye4] (④ 一#1) surname Ye; line of business; industry; occupation; job; employment; school studies; enterprise; property; (Buddhism) karma; deed; to engage in; already#414. 内[nei4] (冂#57 人#6) inside; inner; internal; within; interior#415. 弔(弓#237 丨#11) #416. 𢎨(弔#415 丿#2) #417. 意[yi4] (音#337 心#61) Italy; Italian (abbr. for 意大利[Yi4 da4 li4]); idea; meaning; thought; to think; wish; desire; intention; to expect; to anticipate#418. 戋[jian1] (戈#159 一#1) narrow; small#419. 公[gong1] (八#41 厶#17) public; collectively owned; common; international (e.g. high seas, metric system, calendar); make public; fair; just; Duke, highest of five orders of nobility 五等爵位[wu3 deng3 jue2 wei4]; honorable (gentlemen); father-in-law; male (animal)#420. 斥[chi4] (斤#117 丶#4) to blame; to reprove; to reprimand; to expel; to oust; to reconnoiter; (of territory) to expand; saline marsh#421. 林[lin2] (木#38 木#38) surname Lin; Japanese surname Hayashi; (bound form) woods; forest; (bound form) circle(s) (i.e. specific group of people); (bound form) a collection (of similar things)#422. 包[bao1] (勹#19 巳#200) surname Bao; to cover; to wrap; to hold; to include; to take charge of; to contract (to or for); package; wrapper; container; bag; to hold or embrace; bundle; packet; CL:個|个[ge4],隻|只[zhi1]#423. 邦[bang1] (丰#303 阝#46) (bound form) country; nation; state#424. 无[mo2] (一#1 尢#112) used in 南無|南无[na1mo2]; not to have; no; none; not; to lack; un-; -less#425. 冋[jiong1] (冂#57 口#3) old variant of 坰[jiong1]#426. 凶[xiong1] (凵#90 㐅#146) terrible; fearful; vicious; fierce; ominous; inauspicious; famine; variant of 兇|凶[xiong1]#427. 囬[hui2] (囗#86 ④) variant of 回[hui2]#428. 面[mian4] (丆#245 囬#427) face; side; surface; aspect; top; classifier for objects with flat surfaces such as drums, mirrors, flags etc; variant of 麵|面[mian4]; flour; noodles; (of food) soft (not crunchy); (slang) (of a person) ineffectual; spineless#429. 已经[yi3 jing1] (已#324 经#349) already#430. 诉[su4] (讠#36 斥#420) variant of 訴|诉[su4]; to complain; to sue; to tell#431. 并[bing4] (丷#31 开#157) and; furthermore; also; together with; (not) at all; simultaneously; to combine; to join; to merge; to combine; to amalgamate; short name for Taiyuan 太原[Tai4yuan2]; variant of 並|并[bing4]#432. 为什么[wei4 shen2 me5] (为#104 什#89 么#58) why?; for what reason?#433. 电[dian4] (日#15 乚#18) lightning; electricity; electric (bound form); to get (or give) an electric shock; phone call or telegram etc; to send via telephone or telegram etc#434. 像[xiang4] (亻#7 象#374) to resemble; to be like; to look as if; such as; appearance; image; portrait; image under a mapping (math.)#435. 𠃓#436. 这么[zhe4 me5] (这#68 么#58) so much; this much; how much?; this way; like this#437. 许[xu3] (讠#36 午#383) surname Xu; to allow; to permit; to promise; to praise; somewhat; perhaps#438. 东[dong1] surname Dong; east; host (i.e. sitting on east side of guest); landlord#439. 等[deng3] (竹#191 寺#276) to wait for; to await; by the time; when; till; and so on; etc.; et al.; (bound form) class; rank; grade; (bound form) equal to; same as; (used to end an enumeration); (literary) (plural suffix attached to a personal pronoun or noun)#440. 豆[dou4] legume; pulse; bean; pea (variant of 豆[dou4]); legume; pulse; bean; pea (CL:顆|颗[ke1],粒[li4]); (old) stemmed cup or bowl#441. 壬[ren2] (丿#2 士#205) ninth of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; ninth in order; letter "I" or Roman "IX" in list "A, B, C", or "I, II, III" etc; ancient Chinese compass point: 345°; nona#442. 告诉[gao4 su4] (告#336 诉#430) to press charges; to file a complaint; to tell; to inform; to let know#443. 法[fa3] (氵#60 去#80) variant of 法[fa3]; France; French; abbr. for 法國|法国[Fa3 guo2]; Taiwan pr. [Fa4]; law; method; way; to emulate; (Buddhism) dharma; (abbr. for 法家[Fa3 jia1]) the Legalists; (physics) farad (abbr. for 法拉[fa3 la1]); old variant of 法[fa3]; law#444. 动[dong4] (云#73 力#78) (of sth) to move; to set in movement; to displace; to touch; to make use of; to stir (emotions); to alter; abbr. for 動詞|动词[dong4 ci2], verb#445. 一切[yi1 qie4] (一#1 切#382) everything; every; all#446. 放[fang4] (方#198 攵#114) to put; to place; to release; to free; to let go; to let out; to set off (fireworks)#447. 帮[bang1] (邦#423 巾#151) old variant of 幫|帮[bang1]; old variant of 幫|帮[bang1]; to help; to assist; to support; for sb (i.e. as a help); hired (as worker); side (of pail, boat etc); outer layer; upper (of a shoe); group; gang; clique; party; secret society#448. 卅[sa4] (川#385 一#1) thirty#449. 带[dai4] (卅#448 冖#96 巾#151) band; belt; girdle; ribbon; tire; area; zone; region; CL:條|条[tiao2]; to wear; to carry; to take along; to bear (i.e. to have); to lead; to bring; to look after; to raise#450. 错[cuo4] (钅#227 昔#388) surname Cuo; mistake; wrong; bad; interlocking; complex; to grind; to polish; to alternate; to stagger; to miss; to let slip; to evade; to inlay with gold or silver#451. 完[wan2] (宀#66 元#257) to finish; to be over; whole; complete; entire#452. 先生[xian1 sheng5] (先#259 生#167) teacher; gentleman; sir; mister (Mr.); husband; (dialect) doctor; CL:位[wei4]#453. 名[ming2] (夕#71 口#3) name; noun (part of speech); place (e.g. among winners); famous; classifier for people#454. 高[gao1] (亠#26 口#3 冋#425) surname Gao; high; tall; above average; loud; your (honorific)#455. 九[jiu3] nine; 9#456. 皿[min3] (bound form) dish; vessel; shallow container; radical no. 108#457. 水[shui3] (㇇#265 亅#5 乀#49 丿#2) surname Shui; water; (after a name) ... River; to swim (used mostly in 會水|会水[hui4shui3] and 水性[shui3xing4]); (coll.) lacking in substance; shoddy; (bound form) additional cost; extra income; classifier for washings of a garment#458. 全[quan2] (人#6 王#97) surname Quan; all; whole; entire; every; complete#459. 那么[na4 me5] (那#79 么#58) like that; in that way; or so; so; so very much; about; in that case#460. 件[jian4] (亻#7 牛#216) item; component; classifier for events, things, clothes etc#461. 住[zhu4] (亻#7 主#295) to live; to dwell; to stay; to reside; to stop; (suffix indicating firmness, steadiness, or coming to a halt)#462. 那个[na4 ge5] (那#79 个#43) that one; that thing; that (as opposed to this); (used before a verb or adjective for emphasis); (used to humorously or indirectly refer to sth embarrassing, funny etc, or when one can't think of the right word); (used in speech as a filler, similar to "umm", "you know" etc); (euph.) menstruation; sex; also pr. [nei4 ge5]#463. 玉[yu4] (王#97 丶#4) jade#464. 觉[jiao4] (𭕄#135 冖#96 见#123) a nap; a sleep; CL:場|场[chang2]; to feel; to find that; thinking; awake; aware#465. 及[ji2] and; to reach; up to; in time for#466. 万[mo4] (一#1 丿#2 𠃌#30) used in 万俟[Mo4 qi2]; surname Wan; ten thousand; a great number#467. 免[mian3] (𠂊#12 ⑤) to excuse sb; to exempt; to remove or dismiss from office; to avoid; to avert; to escape; to be prohibited; old variant of 絻[wen4]#468. 雨[yu3] (一#1 𠕒#469) rain; CL:陣|阵[zhen4],場|场[chang2]; (literary) to rain; (of rain, snow etc) to fall; to precipitate; to wet#469. 𠕒(冂#57 丨#11 丷#31 八#41) #470. 㠯#471. 机[ji1] (木#38 几#141) surname Ji; (bound form) machine; mechanism; (bound form) aircraft; (bound form) an opportunity; (bound form) crucial point; pivot; (bound form) quick-witted; flexible; (bound form) organic#472. 氏[shi4] (bound form) family name; surname (as in 王氏[Wang2 shi4] "the Wang clan"); (bound form) maiden name; née (as in 李王氏[Li3 Wang2shi4] "Mrs. Li, née Wang"); (bound form) honorific suffix added to the surname or full name of a notable person, esp. historical or scholarly figures; used in 月氏[Yue4zhi1]; used in 閼氏|阏氏[yan1zhi1]#473. 糸[mi4] (幺#363 小#16) fine silk; Kangxi radical 120#474. 牙[ya2] tooth; ivory; CL:顆|颗[ke1]#475. 黑[hei1] (⑧ 灬#134) abbr. for Heilongjiang province 黑龍江|黑龙江[Hei1 long2 jiang1]; black; dark; sinister; secret; shady; illegal; to hide (sth) away; to vilify; (loanword) to hack (computing)#476. 冈[gang1] (冂#57 㐅#146) ridge; mound#477. 爸[ba4] (父#263 巴#74) father; dad; pa; papa#478. 厄[e4] (厂#219 㔾#252) distressed; variant of 厄[e4]#479. 龸(⺌#179 冖#96) #480. 𠔼(冂#57 一#1) #481. 反[fan3] (𠂆#83 又#34) contrary; in reverse; inside out or upside down; to reverse; to return; to oppose; opposite; against; anti-; to rebel; to use analogy; instead; abbr. for 反切[fan3 qie4] phonetic system#482. 同[tong2] (𠔼#480 口#3) like; same; similar; together; alike; with; see 衚衕|胡同[hu2 tong4]#483. 戌[qu5] (戊#247 一#1) used in 屈戌兒|屈戌儿[qu1qu5r5]; 11th earthly branch: 7-9 p.m., 9th solar month (8th October-6th November), year of the Dog; ancient Chinese compass point: 300°#484. 向[xiang4] (丿#2 冂#57 口#3) surname Xiang; towards; to face; to turn towards; direction; to support; to side with; shortly before; formerly; always; all along; (suffix) suitable for ...; oriented to ...; to tend toward; to guide; variant of 向[xiang4]; variant of 向[xiang4]; direction; orientation; to face; to turn toward; to; towards; shortly before; formerly#485. 乃[nai3] (𠄎#486 丿#2) to be; thus; so; therefore; then; only; thereupon; variant of 乃[nai3]#486. 𠄎#487. 𠤎(乚#18 丿#2) #488. 化[hua1] (亻#7 𠤎#487) variant of 花[hua1]; to make into; to change into; -ization; to ... -ize; to transform; abbr. for 化學|化学[hua4 xue2]#489. 情[qing2] (忄#140 青#253) (bound form) feelings; emotion; sentiment; passion; (bound form) situation; condition#490. 办[ban4] (力#78 八#41) to take care of (a matter); to deal with (a task, procedure etc); to organize (an event); to establish; to set up; to manage; to run (an enterprise); (law) to handle; to investigate; to prosecute (a case or suspect); (bound form) office (as in 招辦|招办[zhao1ban4], admissions office) (abbr. for 辦公室|办公室[ban4gong1shi4])#491. 勿[wu4] (勹#19 丿#2 丿#2) do not#492. 𦍌(䒑#77 土#13) #493. 酉[you3] 10th earthly branch: 5-7 p.m., 8th solar month (8th September-7th October), year of the Rooster; ancient Chinese compass point: 270° (west)#494. 信[xin4] (亻#7 言#354) letter; mail; CL:封[feng1]; to trust; to believe; to profess faith in; truthful; confidence; trust; at will; at random#495. 刚[gang1] (冈#476 刂#67) hard; firm; strong; just; barely; exactly#496. 令[ling2] (亽#280 龴#314) used in 脊令[ji2 ling2]; used in 令狐[Ling2 hu2] (Taiwan pr. [ling4]); classifier for a ream of paper; to order; to command; an order; warrant; writ; to cause; to make sth happen; virtuous; honorific title; season; government position (old); type of short song or poem#497. 𠮛(一#1 口#3) #498. 吅[song4] (口#3 口#3) variant of 訟|讼[song4]; variant of 喧[xuan1]#499. 交[jiao1] (亠#26 父#263) to hand over; to deliver; to pay (money); to turn over; to make friends; (of lines) to intersect; variant of 跤[jiao1]#500. 乁#501. 气[qi4] (𠂉#82 一#1 乁#500) gas; air; smell; weather; to make angry; to annoy; to get angry; vital energy; qi#502. 㐫[xiong1] (亠#26 凶#426) old variant of 凶[xiong1]#503. 场[chang2] (土#13 𠃓#435) threshing floor; classifier for events and happenings: spell, episode, bout; large place used for a specific purpose; stage; scene (of a play); classifier for sporting or recreational activities; classifier for number of exams; variant of 場|场[chang2]; variant of 場|场[chang3]#504. 必[bi4] (心#61 丿#2) certainly; must; will; necessarily#505. 入[ru4] to enter; to go into; to join; to become a member of; (bound form) to conform to (as in 入時|入时[ru4shi2]); abbr. for 入聲|入声[ru4sheng1]; (on product packaging, after {number n} + {classifier}) containing (n pieces) (from Japanese 入 "iri")#506. 应[ying1] (广#194 𭕄#135 一#1) surname Ying; Taiwan pr. [Ying4]; to agree (to do sth); should; ought to; must; (legal) shall; to answer; to respond; to comply with; to deal or cope with#507. 亦[yi4] (亠#26 ④) also#508. 这里[zhe4 li3] (这#68 里#158) variant of 這裡|这里[zhe4 li3]; here#509. 这样[zhe4 yang4] (这#68 样#264) this kind of; so; this way; like this; such#510. 恩[en1] (因#242 心#61) variant of 恩[en1]; favor; grace; kindness#511. ユ#512. 请[qing3] (讠#36 青#253) to ask; to invite; please (do sth); to treat (to a meal etc); to request#513. 呆[dai1] (口#3 木#38) foolish; stupid; expressionless; blank; to stay (variant of 待[dai1]); stupid (variant of 呆[dai1]); blank (variant of 呆[dai1])#514. 拿[na2] (合#153 手#211) old variant of 拿[na2]; variant of 拿[na2]; to hold; to seize; to catch; to apprehend; to take; (used in the same way as 把[ba3]: to mark the following noun as a direct object)#515. 东西[dong1 xi1] (东#438 西#398) east and west; thing; stuff; person; CL:個|个[ge4],件[jian4]#516. 记[ji4] (讠#36 己#229) to record; to note; to memorize; to remember; mark; sign; classifier for blows, kicks, shots#517. ⺀(丶#4 丶#4) #518. 欢[huan1] (又#34 欠#183) variant of 歡|欢[huan1]; joyous; happy; pleased; hubbub; clamor; variant of 歡|欢[huan1]; a breed of horse; variant of 歡|欢[huan1]#519. 圭[gui1] (土#13 土#13) jade tablet, square at the base and rounded or pointed at the top, held by the nobility at ceremonies; sundial; (ancient unit of volume) a tiny amount; a smidgen; a speck#520. 仓[cang1] (人#6 㔾#252) barn; granary; storehouse; cabin; hold (in ship)#521. 官[guan1] (宀#66 㠯#470) surname Guan; government official; governmental; official; public; organ of the body; CL:個|个[ge4]#522. 候[hou4] (亻#7 丨#11 ユ#511 矢#175) to wait; to inquire after; to watch; season; climate; (old) period of five days#523. 𫩠(龸#479 口#3) #524. 位[wei4] (亻#7 立#122) position; location; place; seat; classifier for people (honorific); classifier for binary bits (e.g. 十六位 16-bit or 2 bytes); (physics) potential#525. 计[ji4] (讠#36 十#10) surname Ji; to calculate; to compute; to count; to regard as important; to plan; ruse; meter; gauge#526. 拉[la1] (扌#52 立#122) to pull; to play (a bowed instrument); to drag; to draw; to chat; (coll.) to empty one's bowels; to make a cut in (sth); to slit; to gash; to slash; used in 拉拉蛄[la4la4gu3]; variant of 落[la4]#527. 种[zhong3] (禾#107 中#174) seed; species; kind; type; classifier for types, kinds, sorts; to plant; to grow; to cultivate#528. 晚[wan3] (日#15 免#467) evening; night; late#529. 队[dui4] (阝#46 人#6) squadron; team; group; CL:個|个[ge4]#530. 实[shi2] (宀#66 头#207) real; true; honest; really; solid; fruit; seed; definitely#531. 式[shi4] (弋#132 工#144) type; form; pattern; style#532. 但是[dan4 shi4] (但#218 是#39) but; however#533. 久[jiu3] (of a period of time) long#534. 咸[xian2] (戌#483 口#3) surname Xian; all; everyone; each; widespread; harmonious; salted; salty; stingy; miserly#535. 𫝀#536. 五[wu3] (一#1 𫝀#535) five; 5#537. 钱[qian2] (钅#227 戋#418) surname Qian; coin; money; CL:筆|笔[bi3]; unit of weight, one tenth of a tael 兩|两[liang3]#538. 呃[e4] (口#3 厄#478) (exclamation); to hiccup#539. 第[di4] (竹#191 𢎨#416) (prefix indicating ordinal number, as in 第六[di4-liu4] "sixth"); (literary) grades in which successful candidates in the imperial examinations were placed; (old) residence of a high official; (literary) but; however; (literary) only; just#540. 壴[zhu4] (十#10 豆#440) surname Zhu; (archaic) drum#541. 美[mei3] (𦍌#492 大#35) (bound form) the Americas (abbr. for 美洲[Mei3 zhou1]); (bound form) USA (abbr. for 美國|美国[Mei3 guo2]); beautiful; very satisfactory; good; to beautify; to be pleased with oneself#542. 学[xue2] (𭕄#135 冖#96 子#47) to learn; to study; to imitate; science; -ology#543. 布[bu4] (𠂇#54 巾#151) variant of 布[bu4]; to announce; to spread; cloth; to declare; to announce; to spread; to make known#544. 衣[yi1] (亠#26 𧘇#352) clothes; CL:件[jian4]; Kangxi radical 145; to dress; to wear; to put on (clothes)#545. 认为[ren4 wei2] (认#365 为#104) to believe; to think; to consider; to feel#546. 活[huo2] (氵#60 舌#199) to live; alive; living; work; workmanship#547. 伙[huo3] (亻#7 火#187) meals (abbr. for 伙食[huo3 shi2]); variant of 夥|伙[huo3]; companion; partner; group; classifier for groups of people; to combine; together#548. 将[jiang1] (丬#377 𪧷#549) will; shall; to use; to take; to checkmate; just a short while ago; (introduces object of main verb, used in the same way as 把[ba3]); (bound form) a general; (literary) to command; to lead; (Chinese chess) general (on the black side, equivalent to a king in Western chess); to desire; to invite; to request#549. 𪧷(夕#71 寸#42) #550. 𠬝(卩#254 又#34) #551. 号[hao2] (口#3 丂#379) roar; cry; CL:個|个[ge4]; ordinal number; day of a month; mark; sign; business establishment; size; ship suffix; horn (wind instrument); bugle call; assumed name; to take a pulse; classifier used to indicate number of people#552. 孩子[hai2 zi5] (孩#400 子#47) child#553. 克[ke4] (古#166 儿#50) abbr. for 克羅地亞|克罗地亚[Ke4 luo2 di4 ya4], Croatia; (Tw) abbr. for 克羅埃西亞|克罗埃西亚[Ke4 luo2 ai1 xi1 ya4], Croatia; to be able to; to subdue; to restrain; to overcome; gram; Tibetan unit of land area, about 6 ares; Ke (c. 2000 BC), seventh of the legendary Flame Emperors, 炎帝[Yan2 di4] descended from Shennong 神農|神农[Shen2 nong2] Farmer God; variant of 克[ke4]; to subdue; to overthrow; to restrain; variant of 剋|克[ke4]#554. 今天[jin1 tian1] (今#370 天#124) today; the present time; now#555. 何[he2] (亻#7 可#84) surname He; what; how; why; which; carry#556. 时候[shi2 hou5] (时#224 候#522) time; length of time; moment; period#557. 𠫓(一#1 厶#17) #558. 为了[wei4 le5] (为#104 了#9) for; for the purpose of; in order to#559. 男[nan2] (田#168 力#78) (bound form) male; baron, the lowest of the five ranks of nobility 五等爵位[wu3deng3 jue2wei4]#560. 专[zhuan1] for a particular person, occasion, purpose; focused on one thing; special; expert; particular (to sth); concentrated; specialized; variant of 專|专[zhuan1]#561. 佥[qian1] (亼#118 𭕄#135 一#1) all#562. 喜[xi3] (壴#540 口#3) to be fond of; to like; to enjoy; to be happy; to feel pleased; happiness; delight; glad#563. 工作[gong1 zuo4] (工#144 作#359) to work; (of a machine) to operate; job; work; task; CL:個|个[ge4],份[fen4],項|项[xiang4]#564. 半[ban4] (丷#31 二#27 丨#11) half; semi-; incomplete; (after a number) and a half#565. 一起[yi1 qi3] (一#1 起#285) (in) the same place; together; in company (with); altogether; in total; an instance of; a case of (murder, accident, dispute etc)#566. 重[chong2] to repeat; repetition; again; re-; classifier: layer; heavy; serious; to attach importance to#567. 𠮷(土#13 口#3) #568. 外[wai4] (夕#71 卜#88) outside; in addition; foreign; external#569. 可能[ke3 neng2] (可#84 能#155) might (happen); possible; probable; possibility; probability; maybe; perhaps; CL:個|个[ge4]#570. 周[zhou1] (⺆#137 𠮷#567) surname Zhou; Zhou Dynasty (1046-256 BC); to make a circuit; to circle; circle; circumference; lap; cycle; complete; all; all over; thorough; to help financially; week; weekly; variant of 周[zhou1]#571. 坐[zuo4] (土#13 从#133) surname Zuo; to sit; to take a seat; to take (a bus, airplane etc); to bear fruit; variant of 座[zuo4]#572. 片[pian1] disk; sheet; thin piece; flake; a slice; film; TV play; to slice; to carve thin; partial; incomplete; one-sided; classifier for slices, tablets, tract of land, area of water; classifier for CDs, movies, DVDs etc; used with numeral 一[yi1]: classifier for scenario, scene, feeling, atmosphere, sound etc; Kangxi radical 91#573. 吉[ji2] (士#205 口#3) surname Ji; abbr. for Jilin 吉林省[Ji2lin2 Sheng3]; lucky; giga- (meaning billion or 10^9)#574. 廴[yin3] "long stride" radical in Chinese characters (Kangxi radical 54), occurring in 建, 延, 廷 etc#575. 约[yao1] (纟#91 勺#21) to weigh in a balance or on a scale; to make an appointment; to invite; approximately; pact; treaty; to economize; to restrict; to reduce (a fraction); concise#576. 咅[pou3] (立#122 口#3) pooh; pah; bah; (today used as a phonetic component in 部[bu4], 倍[bei4], 培[pei2], 剖[pou1] etc)#577. 写[xie3] (冖#96 与#323) to write; used in 寫意|写意[xie4yi4]#578. 感[gan3] (咸#534 心#61) to feel; to move; to touch; to affect; feeling; emotion; (suffix) sense of ~#579. 处[chu3] (夂#165 卜#88) to reside; to live; to dwell; to be in; to be situated at; to stay; to get along with; to be in a position of; to deal with; to discipline; to punish; (bound form) place; locality; (bound form) part; aspect; (bound form) office; department; bureau; classifier for locations: spot, point#580. 也许[ye3 xu3] (也#28 许#437) perhaps; maybe#581. 海[hai3] (氵#60 每#345) surname Hai; ocean; sea; CL:個|个[ge4],片[pian4]; great number of people or things; (dialect) numerous#582. 召[shao4] (刀#59 口#3) surname Shao; name of an ancient state that existed in what is now Shaanxi Province; to call together; to summon; to convene; temple or monastery (used in place names in Inner Mongolia)#583. 任[ren2] (亻#7 壬#441) surname Ren; to assign; to appoint; to take up a post; office; responsibility; to let; to allow; to give free rein to; no matter (how, what etc); classifier for terms served in office, or for spouses, girlfriends etc (as in 前任男友)#584. 女人[nu:3 ren2] (女#29 人#6) woman; wife#585. 受[shou4] (爫#266 冖#96 又#34) to receive; to accept; to suffer; subjected to; to bear; to stand; pleasant; (passive marker); (LGBT) bottom#586. 员[yuan2] (口#3 贝#189) (bound form) person engaged in a certain field of activity; (bound form) member; classifier for military generals#587. 所以[suo3 yi3] (所#309 以#172) therefore; as a result; so; the reason why#588. 〢[er4] (丨#11 丨#11) numeral 2 in the Suzhou numeral system 蘇州碼子|苏州码子[Su1zhou1 ma3zi5]#589. 边[bian1] (辶#33 力#78) side; edge; margin; border; boundary; CL:個|个[ge4]; simultaneously; suffix of a noun of locality#590. 始[shi3] (女#29 台#378) to begin; to start; then; only then#591. 嘿[hei1] (口#3 黑#475) hey#592. 朋[peng2] (月#40 月#40) friend#593. 一直[yi1 zhi2] (一#1 直#403) straight (in a straight line); continuously; always; all the way through#594. 色[se4] (𠂊#12 巴#74) color; CL:種|种[zhong3]; look; appearance; sex; (coll.) color; used in 色子[shai3zi5]#595. 夭[yao1] (丿#2 大#35) (bound form) to die prematurely (also pr. [yao3]); (literary) (of vegetation) luxuriant; to die prematurely (variant of 夭[yao1])#596. 未[wei4] not yet; did not; have not; not; 8th earthly branch: 1-3 p.m., 6th solar month (7th July-6th August), year of the Sheep; ancient Chinese compass point: 210°#597. 风[feng1] (几#141 㐅#146) wind; news; style; custom; manner; CL:陣|阵[zhen4],絲|丝[si1]#598. 开始[kai1 shi3] (开#157 始#590) to begin; beginning; to start; initial; CL:個|个[ge4]#599. 嗯[en1] (口#3 恩#510) (a groaning sound); (nonverbal grunt as interjection); OK, yeah; what?; interjection indicating approval, appreciation or agreement#600. 变[bian4] (亦#507 又#34) to change; to become different; to transform; to vary; rebellion#601. 或[huo4] (戈#159 口#3 一#1) maybe; perhaps; might; possibly; or#602. 一样[yi1 yang4] (一#1 样#264) same; like; equal to; the same as; just like#603. 炎[yan2] (火#187 火#187) flame; inflammation; -itis#604. 禸[rou2] (冂#57 厶#17) trample#605. 离[chi1] (㐫#502 禸#604) mythical beast (archaic); surname Li; to leave; to part from; to be away from; (in giving distances) from; without (sth); independent of; one of the Eight Trigrams 八卦[ba1 gua4], symbolizing fire; ☲#606. 卖[mai4] (十#10 买#381) to sell; to betray; to spare no effort; to show off or flaunt#607. 是的[shi4 de5] (是#39 的#22) yes, that's right; variant of 似的[shi4 de5]#608. 𡗗(三#171 人#6) #609. 介[jie4] (人#6 丿#2 丨#11) to introduce; to lie between; between; shell; armor#610. 还有[hai2 you3] (还#163 有#63) there still remain(s); there is (or are) still; in addition#611. 喜欢[xi3 huan5] (喜#562 欢#518) to like; to be fond of#612. 国[guo2] (囗#86 玉#463) surname Guo; country; nation; state; (bound form) national#613. 常[chang2] (𫩠#523 巾#151) surname Chang; always; ever; often; frequently; common; general; constant#614. 觉得[jue2 de5] (觉#464 得#202) to think that ...; to feel that ...; to feel (uncomfortable etc)#615. 玩[wan2] (王#97 元#257) to play; to have fun; to trifle with; toy; sth used for amusement; curio or antique (Taiwan pr. [wan4]); to keep sth for entertainment; variant of 玩[wan2]; Taiwan pr. [wan4]#616. 应该[ying1 gai1] (应#506 该#327) ought to; should; must#617. 共[gong4] (龷#286 八#41) common; general; to share; together; total; altogether; abbr. for 共產黨|共产党[Gong4 chan3 dang3], Communist party#618. 失[shi1] (丿#2 夫#287) to lose; to miss; to fail#619. 这儿[zhe4 r5] (这#68 儿#50) here#620. 保[bao3] (亻#7 呆#513) Bulgaria (abbr. for 保加利亞|保加利亚[Bao3jia1li4ya4]); to defend; to protect; to keep; to guarantee; to ensure; (old) civil administration unit in the baojia 保甲[bao3jia3] system#621. 司[si1] (𠃌#30 𠮛#497) surname Si; to take charge of; to manage; department (under a ministry)#622. 圣[ku1] (又#34 土#13) to dig; old variant of 聖|圣[sheng4]; (bound form) peerless (in wisdom, moral virtue, skill etc); (bound form) peerless individual; paragon (sage, saint, emperor, master of a skill etc); (bound form) holy; sacred#623. 特[te4] (牛#216 寺#276) special; unique; distinguished; especially; unusual; very; abbr. for 特克斯[te4 ke4 si1], tex#624. 却[que4] (去#80 卩#254) old variant of 卻|却[que4]; but; yet; however; while; to go back; to decline; to retreat; nevertheless; even though#625. 总[zong3] (𠮦#626 心#61) (bound form) general; overall; to sum up; in every case; always; invariably; anyway; after all; eventually; sooner or later; surely; (after a person's name) abbr. for 總經理|总经理[zong3jing1li3] or 總編|总编[zong3bian1] etc#626. 𠮦(丷#31 口#3) #627. 甬[yong3] (龴#314 用#196) Yong River 甬江[Yong3 Jiang1] in Ningbo 寧波|宁波[Ning2 bo1]; short name for Ningbo; variant of 桶[tong3], bucket; (classifier) cubic dry measure (5 pecks 五斗, approx half-liter); path screened by walls on both sides#628. 飞[fei1] to fly#629. 谈[tan2] (讠#36 炎#603) surname Tan; to speak; to talk; to converse; to chat; to discuss#630. 习[xi2] (𠃌#30 冫#81) surname Xi; (bound form) to practice; to study; habit; custom#631. 舟[zhou1] boat#632. 麻[ma2] (广#194 林#421) hemp (variant of 麻[ma2]); surname Ma; generic name for hemp, flax etc; hemp or flax fiber for textile materials; sesame; CL:縷|缕[lu:3]; (of materials) rough or coarse; pocked; pitted; to have pins and needles or tingling; to feel numb#633. 利[li4] (禾#107 刂#67) surname Li; sharp; favorable; advantage; benefit; profit; interest; to do good to; to benefit#634. 支[zhi1] (十#10 又#34) surname Zhi; to support; to sustain; to erect; to raise; branch; division; to draw money; classifier for rods such as pens and guns, for army divisions and for songs or compositions#635. 饣[shi2] "to eat" or "food" radical in Chinese characters (Kangxi radical 184)#636. 束[shu4] surname Shu; to bind; bunch; bundle; classifier for bunches, bundles, beams of light etc; to control#637. 妾[qie4] (立#122 女#29) concubine; I, your servant (deprecatory self-reference for women)#638. 地方[di4 fang1] (地#317 方#198) region; regional (away from the central administration); local; area; place; space; room; territory; CL:處|处[chu4],個|个[ge4],塊|块[kuai4]#639. 接[jie1] (扌#52 妾#637) to receive; to answer (the phone); to meet or welcome sb; to connect; to catch; to join; to extend; to take one's turn on duty; to take over for sb#640. 奥[ao4] (丿#2 冂#57 米#240 大#35) Austria (abbr. for 奧地利|奥地利[Ao4 di4 li4]); Olympics (abbr. for 奧林匹克|奥林匹克[Ao4 lin2 pi3 ke4]); obscure; mysterious#641. 斯[si1] (其#338 斤#117) Slovakia; Slovak; abbr. for 斯洛伐克[Si1 luo4 fa2 ke4]; (phonetic); this#642. 这些[zhe4 xie1] (这#68 些#277) these#643. 史[shi3] surname Shi; history; annals; title of an official historian in ancient China#644. 仑[lun2] (人#6 匕#44) to arrange; variant of 崙|仑[lun2]; used in 崑崙|昆仑[Kun1 lun2]#645. 发生[fa1 sheng1] (发#302 生#167) to happen; to occur; to take place; to break out#646. 原[yuan2] (厂#219 白#20 小#16) surname Yuan; (Japanese surname) Hara; former; original; primary; raw; level; cause; source#647. 一定[yi1 ding4] (一#1 定#347) surely; certainly; necessarily; fixed; a certain (extent etc); given; particular; must#648. 良[liang2] (丶#4 艮#98) good; very; very much#649. 书[shu1] abbr. for 書經|书经[Shu1 jing1]; book; letter; document; CL:本[ben3],冊|册[ce4],部[bu4]; to write#650. 枪[qiang1] (木#38 仓#520) surname Qiang; gun; firearm; rifle; spear; thing with shape or function similar to a gun; CL:支[zhi1],把[ba3],桿|杆[gan3],條|条[tiao2],枝[zhi1]; to substitute for another person in a test; to knock; classifier for rifle shots; variant of 槍|枪[qiang1]; rifle; spear#651. 儿子[er2 zi5] (儿#50 子#47) son#652. 表[biao3] (龶#195 𧘇#352) exterior surface; family relationship via females; to show (one's opinion); a model; a table (listing information); a form; a meter (measuring sth); watch (timepiece); meter; gauge#653. 难[nan2] (又#34 隹#209) difficult (to...); problem; difficulty; difficult; not good; disaster; distress; to scold#654. 付[fu4] (亻#7 寸#42) surname Fu; to pay; to hand over to; classifier for pairs or sets of things#655. 时间[shi2 jian1] (时#224 间#384) (concept of) time; (duration of) time; (point in) time#656. 新[xin1] (亲#402 斤#117) abbr. for Xinjiang 新疆[Xin1jiang1]; abbr. for Singapore 新加坡[Xin1jia1po1]; surname Xin; new; newly; meso- (chemistry)#657. 起来[qi3 lai5] (起#285 来#87) to stand up; to get up; also pr. [qi3lai2]; (after a verb) indicating the beginning and continuation of an action or a state; indicating an upward movement (e.g. after 站[zhan4]); indicating completion; (after a perception verb, e.g. 看[kan4]) expressing preliminary judgment; also pr. [qi3lai5]#658. 理[li3] (王#97 里#158) texture; grain (of wood); inner essence; intrinsic order; reason; logic; truth; science; natural science (esp. physics); to manage; to pay attention to; to run (affairs); to handle; to put in order; to tidy up#659. 义[yi4] (乂#53 丶#4) surname Yi; (Tw) Italy (abbr. for 義大利|义大利[Yi4da4li4]); justice; righteousness; meaning; foster (father etc); adopted; artificial (tooth, limb etc); relationship; friendship#660. 申[shen1] old name for Shanghai 上海[Shang4hai3]; surname Shen; to extend; to state; to explain; 9th earthly branch: 3-5 p.m., 7th solar month (7th August-7th September), year of the Monkey; ancient Chinese compass point: 240°#661. 条[tiao2] (夂#165 朩#197) strip; item; article; clause (of law or treaty); classifier for long thin things (ribbon, river, road, trousers etc)#662. 肀(コ#293 一#1 丨#11) #663. 朋友[peng2 you5] (朋#592 友#298) friend; CL:個|个[ge4],位[wei4]#664. 𠄌#665. 妈妈[ma1 ma5] (妈#319 妈#319) mama; mommy; mother; CL:個|个[ge4],位[wei4]#666. 谢谢[xie4 xie5] (谢#397 谢#397) to thank; thanks; thank you#667. 氐[di1] (氏#472 丶#4) name of an ancient tribe; foundation; on the whole#668. 部[bu4] (咅#576 阝#46) ministry; department; section; part; division; troops; board; classifier for works of literature, films, machines etc#669. 不过[bu4 guo4] (不#23 过#148) only; merely; no more than; but; however; anyway (to get back to a previous topic); cannot be more (after adjectival)#670. 尺[che3] one of the characters used to represent a musical note in gongche notation, 工尺譜|工尺谱[gong1 che3 pu3]; a Chinese foot; one-third of a meter; a ruler; a tape-measure; one of the three acupoints for measuring pulse in Chinese medicine; CL:支[zhi1],把[ba3]#671. 乐[le4] surname Le; surname Yue; used in place names; happy; cheerful; to laugh; music#672. 张[zhang1] (弓#237 长#308) surname Zhang; to open up; to spread; sheet of paper; classifier for flat objects, sheet; classifier for votes#673. 需[xu1] (雨#468 而#231) to require; to need; to want; necessity; need#674. 证[zheng4] (讠#36 正#251) to admonish; variant of 證|证[zheng4]; certificate; proof; to prove; to demonstrate; to confirm; variant of 症[zheng4]#675. 试[shi4] (讠#36 式#531) to test; to try; experiment; examination; test#676. 毛[mao2] (丿#2 二#27 乚#18) surname Mao; hair; feather; down; wool; mildew; mold; coarse or semifinished; young; raw; careless; unthinking; nervous; scared; (of currency) to devalue or depreciate; classifier for Chinese fractional monetary unit ( = 角[jiao3] , = one-tenth of a yuan or 10 fen 分[fen1])#677. 兴[xing1] (𭕄#135 一#1 八#41) surname Xing; to rise; to flourish; to become popular; to start; to encourage; to get up; (often used in the negative) to permit or allow (dialect); maybe (dialect); feeling or desire to do sth; interest in sth; excitement#678. 伤[shang1] (亻#7 𠂉#82 力#78) to injure; injury; wound#679. 岁[sui4] (山#334 夕#71) variant of 歲|岁[sui4], year; years old; classifier for years (of age); year; year (of crop harvests)#680. 查[zha1] (木#38 旦#102) surname Zha; to research; to check; to investigate; to examine; to refer to; to look up (e.g. a word in a dictionary); variant of 楂[zha1]#681. 卓[zhuo2] (⺊#45 早#350) surname Zhuo; outstanding#682. 份[fen4] (亻#7 分#306) classifier for gifts, newspaper, magazine, papers, reports, contracts etc; variant of 分[fen4]#683. 体[ti1] (亻#7 本#343) used in 體己|体己[ti1ji5]; Taiwan pr. [ti3]; body; form; style; system; substance; to experience; aspect (linguistics)#684. 弄[long4] (王#97 廾#128) lane; alley; to do; to manage; to handle; to play with; to fool with; to mess with; to fix; to toy with; old variant of 弄[nong4]; variant of 弄[long4]#685. 一点[yi1 dian3] (一#1 点#225) a bit; a little bit; (used in negative expressions) (not) the least bit; (after an adjective, used to form the comparative) a bit more, -er; a point (in a discussion etc); (calligraphy) dot stroke (、); one o'clock (abbr. for 一點鍾|一点钟[yi1 dian3zhong1])#686. 物[wu4] (牛#216 勿#491) (bound form) thing; (literary) the outside world as distinct from oneself; people other than oneself#687. 结[jie1] (纟#91 吉#573) (of a plant) to produce (fruit or seeds); Taiwan pr. [jie2]; knot; sturdy; bond; to tie; to bind; to check out (of a hotel)#688. 医[yi1] (匚#367 矢#175) medical; medicine; doctor; to cure; to treat#689. 世[shi4] surname Shi; life; age; generation; era; world; lifetime; epoch; descendant; noble#690. 字[zi4] (宀#66 子#47) letter; symbol; character; word; CL:個|个[ge4]; courtesy or style name traditionally given to males aged 20 in dynastic China#691. 望[wang4] (亡#330 月#40 王#97) full moon; to hope; to expect; to visit; to gaze (into the distance); to look towards; towards; 15th day of month (lunar calendar); old variant of 望[wang4]#692. 兆[zhao4] surname Zhao; (bound form) omen; to foretell; million; mega-; (Tw) trillion; tera-; (old) billion#693. 单[shan4] (丷#31 甲#143 一#1) surname Shan; used in 單于|单于[chan2yu2]; bill; list; form; single; only; sole; odd number; CL:個|个[ge4]#694. 区[ou1] (匚#367 㐅#146) surname Ou; area; region; district; small; distinguish; CL:個|个[ge4]#695. 所有[suo3 you3] (所#309 有#63) all; to have; to possess; to own#696. 甘[gan1] surname Gan; abbr. for Gansu Province 甘肅省|甘肃省[Gan1su4 Sheng3]; (bound form) sweet; pleasant (contrasted with 苦[ku3]: bitter, unpleasant); to be willing (to do sth)#697. 冬[dong1] (夂#165 ⺀#517) winter; surname Dong; (onom.) beating a drum; rat-a-tat#698. 疋[shu1] foot; variant of 雅[ya3]#699. 房[fang2] (户#358 方#198) surname Fang; house; room; CL:間|间[jian1]; branch of an extended family; classifier for family members (or concubines)#700. 系[xi4] (丿#2 糸#473) to connect; to relate to; to tie up; to bind; to be (literary); system; department; faculty; to tie; to fasten; to button up; to connect; to arrest; to worry#701. 噢[o1] (口#3 奥#640) oh; ah (used to indicate realization); also pr. [ou4]#702. 爪[zhao3] foot of a bird or animal; paw; claws; talons; (coll.) foot of an animal or bird; (coll.) foot supporting a cooking pot etc#703. 嗨[hai1] (口#3 海#581) oh alas; hey!; hi! (loanword); a high (natural or drug-induced) (loanword)#704. 需要[xu1 yao4] (需#673 要#103) to need; to want; to demand; to require; needs#705. 平[ping2] (干#162 丷#31) surname Ping; flat; level; equal; to tie (make the same score); to draw (score); calm; peaceful; abbr. for 平聲|平声[ping2 sheng1]#706. 解[xie4] (角#390 𭷔#707) surname Xie; to divide; to break up; to split; to separate; to dissolve; to solve; to melt; to remove; to untie; to loosen; to open; to emancipate; to explain; to understand; to know; a solution; a dissection; to transport under guard; acrobatic display (esp. on horseback) (old); variant of 懈[xie4] and 邂[xie4] (old)#707. 𭷔(刀#59 牛#216) #708. 掉[diao4] (扌#52 卓#681) to fall; to drop; to lag behind; to lose; to go missing; to reduce; fall (in prices); to lose (value, weight etc); to wag; to swing; to turn; to change; to exchange; to swap; to show off; to shed (hair); (used after certain verbs to express completion, fulfillment, removal etc)#709. 斗[dou3] abbr. for the Big Dipper constellation 北斗星[Bei3 dou3 xing1]; dry measure for grain equal to ten 升[sheng1] or one-tenth of a 石[dan4]; decaliter; peck; cup or dipper shaped object; old variant of 陡[dou3]; to fight; to struggle; to condemn; to censure; to contend; to put together; coming together; variant of 鬭|斗[dou4]; variant of 鬥|斗[dou4]; variant of 鬥|斗[dou4]#710. 叩[kou4] (口#3 卩#254) to knock; to kowtow; old variant of 叩[kou4]; to knock#711. 四[si4] (囗#86 儿#50) four; 4#712. 命[ming4] (亼#118 叩#710) life; fate; order or command; to assign a name, title etc#713. 性[xing4] (忄#140 生#167) nature; character; property; quality; attribute; sexuality; sex; gender; suffix forming adjective from verb; suffix forming noun from adjective, corresponding to -ness or -ity; essence; CL:個|个[ge4]#714. 一些[yi1 xie1] (一#1 些#277) some; a few; a little; (following an adjective) slightly ...er#715. 明白[ming2 bai5] (明#411 白#20) clear; obvious; unequivocal; sensible; reasonable; to understand; to realize#716. 空[kong1] (穴#392 工#144) empty; air; sky; in vain; to empty; vacant; unoccupied; space; leisure; free time#717. 留[liu2] (③ 刀#59 田#168) old variant of 留[liu2]; to leave (a message etc); to retain; to stay; to remain; to keep; to preserve; old variant of 留[liu2]#718. 远[yuan3] (辶#33 元#257) far; distant; remote; (intensifier in a comparison) by far; much (lower etc); to distance oneself from (classical)#719. 星[xing1] (日#15 生#167) star; heavenly body; satellite; small amount#720. 聿[yu4] (肀#662 二#27) (arch. introductory particle); then; and then#721. 以为[yi3 wei2] (以#172 为#104) to think (i.e. to take it to be true that ...) (Usually there is an implication that the notion is mistaken – except when expressing one's own current opinion.)#722. 哥[ge1] (可#84 可#84) elder brother#723. 帀(一#1 巾#151) #724. 争[zheng1] (𠂊#12 コ#293 一#1 亅#5) to strive for; to vie for; to argue or debate; deficient or lacking (dialect); how or what (literary)#725. 忙[mang2] (忄#140 亡#330) busy; hurriedly; to hurry; to rush#726. 代[dai4] (亻#7 弋#132) to be a substitute for; to act on behalf of; to replace; to substitute; generation; dynasty; age; period; (historical) era; (geological) eon#727. 花[hua1] (艹#150 化#488) surname Hua; flower; blossom; CL:朵[duo3],支[zhi1],束[shu4],把[ba3],盆[pen2],簇[cu4]; fancy pattern; florid; to spend (money, time); (coll.) lecherous; lustful; old variant of 花[hua1]; variant of 花[hua1]; flower; blossom; also pr. [wei3]#728. 害[hai4] (𫲸#729 口#3) to do harm to; to cause trouble to; harm; evil; calamity#729. 𫲸(宀#66 丰#303) #730. 丸[wan2] (九#455 丶#4) ball; pellet; pill#731. 准[zhun3] (冫#81 隹#209) to allow; to grant; in accordance with; in the light of; accurate; standard; definitely; certainly; about to become (bride, son-in-law etc); quasi-; para-#732. 亚[ya4] (一#1 业#413) Asia; Asian; Taiwan pr. [Ya3]; second; next to; inferior; sub-; Taiwan pr. [ya3]#733. 题[ti2] (是#39 页#311) surname Ti; topic; problem for discussion; exam question; subject; to inscribe; to mention; CL:個|个[ge4],道[dao4]#734. 奇[ji1] (大#35 可#84) odd (number); strange; odd; weird; wonderful; surprisingly; unusually#735. 希[xi1] (㐅#146 布#543) to hope; to admire; variant of 稀[xi1]#736. 而且[er2 qie3] (而#231 且#136) (not only ...) but also; moreover; in addition; furthermore#737. 那些[na4 xie1] (那#79 些#277) those#738. 选[xuan3] (辶#33 先#259) to choose; to pick; to select; to elect#739. 确[que4] (石#348 角#390) variant of 確|确[que4]; variant of 埆[que4]; authenticated; solid; firm; real; true#740. 北[bei3] (③ 匕#44) north; (classical) to be defeated#741. 女士[nu:3 shi4] (女#29 士#205) lady; madam; CL:個|个[ge4],位[wei4]; Miss; Ms#742. 光[guang1] (⺌#179 兀#220) light; ray (CL:道[dao4]); bright; shiny; only; merely; used up; finished; to leave (a part of the body) uncovered#743. 犯[fan4] (犭#312 㔾#252) to violate; to offend; to assault; criminal; crime; to make a mistake; recurrence (of mistake or sth bad)#744. 出来[chu1 lai2] (出#192 来#87) to come out; to appear; to arise; (after a verb, indicates coming out, completion of an action, or ability to discern or detect)#745. 马上[ma3 shang4] (马#70 上#56) at once; right away; immediately; on horseback (i.e. by military force)#746. 回来[hui2 lai5] (回#260 来#87) to return; to come back#747. 卡[ka3] (上#56 卜#88) to stop; to block; (computing) (coll.) slow; (loanword) card; CL:張|张[zhang1],片[pian4]; truck (from "car"); calorie (abbr. for 卡路里[ka3 lu4 li3]); cassette; to block; to be stuck; to be wedged; customs station; a clip; a fastener; a checkpost; Taiwan pr. [ka3]#748. 够[gou4] (句#357 多#204) enough (sufficient); enough (too much); (coll.) (before adj.) really; (coll.) to reach by stretching out#749. 奉[feng4] (𡗗#608 二#27 丨#11) to offer (tribute); to present respectfully (to superior, ancestor, deity etc); to esteem; to revere; to believe in (a religion); to wait upon; to accept orders (from superior)#750. 师[shi1] (丨#11 丿#2 帀#723) surname Shi; teacher; master; expert; model; army division; (old) troops; to dispatch troops#751. 帝[di4] (亠#26 丷#31 冖#96 巾#151) emperor#752. 旨[zhi3] (匕#44 日#15) imperial decree; purport; aim; purpose#753. 女儿[nu:3 er2] (女#29 儿#50) daughter#754. 识[shi2] (讠#36 只#164) to know; knowledge; Taiwan pr. [shi4]; to record; to write a footnote#755. 乎[hu1] (classical particle similar to 於|于[yu2]) in; at; from; because; than; (classical final particle similar to 嗎|吗[ma5], 吧[ba5], 呢[ne5], expressing question, doubt or astonishment)#756. 弟[di4] (丷#31 𢎨#416) younger brother; junior male; I (modest word in letter); variant of 悌[ti4]#757. 军[jun1] (冖#96 车#180) (bound form) army; military#758. 肖[xiao1] (⺌#179 月#40) surname Xiao; Taiwan pr. [Xiao4]; similar; resembling; to resemble; to be like#759. 算[suan4] (竹#191 𥃲#760) to regard as; to figure; to calculate; to compute#760. 𥃲(目#72 廾#128) #761. 亾(𠃊#258 人#6) #762. 匃(勹#19 亾#761) #763. 曷[he2] (日#15 匃#762) why; how; when; what; where#764. 收[shou1] (丩#288 攵#114) to receive; to accept; to collect; to put away; to restrain; to stop; in care of (used on address line after name)#765. 然后[ran2 hou4] (然#409 后#270) then; after that; afterwards#766. 节[jie1] (艹#150 𠃌#30 丨#11) see 節骨眼|节骨眼[jie1 gu5 yan3]; joint; node; (bound form) section; segment; solar term (one of the 24 divisions of the year in the traditional Chinese calendar); seasonal festival; (bound form) to economize; to save; (bound form) moral integrity; chastity; classifier for segments: lessons, train wagons, biblical verses etc; knot (nautical miles per hour)#767. 臼[jiu4] mortar#768. 居[ju1] (尸#99 古#166) surname Ju; (archaic) sentence-final particle expressing a doubting attitude; to reside; to be (in a certain position); to store up; to be at a standstill; residence; house; restaurant; classifier for bedrooms#769. 服[fu2] (月#40 𠬝#550) clothes; dress; garment; to serve (in the military, a prison sentence etc); to obey; to be convinced (by an argument); to convince; to admire; to acclimatize; to take (medicine); mourning clothes; to wear mourning clothes; classifier for medicine: dose; Taiwan pr. [fu2]#770. 坏[huai4] (土#13 不#23) bad; spoiled; broken; to break down; (suffix) to the utmost#771. 右[you4] (𠂇#54 口#3) (bound form) right; right-hand side; (bound form) (politics) right of center; (bound form) (old) west; (literary) the right side as the side of precedence#772. 余[yu2] (亼#118 朩#197) surname Yu; (literary) I; me; variant of 餘|余[yu2]; extra; surplus; remaining; remainder after division; (following numerical value) or more; in excess of (some number); residue (math.); after; I; me#773. 甶(丿#2 田#168) #774. 鬼[gui3] (甶#773 儿#50 厶#17) disembodied spirit; ghost; devil; (suffix) person with a certain vice or addiction etc; sly; crafty; resourceful (variant of 詭|诡[gui3]); one of the 28 constellations of ancient Chinese astronomy#775. 𠃜#776. 狗[gou3] (犭#312 句#357) dog; CL:隻|只[zhi1],條|条[tiao2]#777. 抓[zhua1] (扌#52 爪#702) to grab; to catch; to arrest; to snatch; to scratch#778. 备[bei4] (夂#165 田#168) variant of 備|备[bei4]; (bound form) to prepare; to equip; (literary) fully; completely#779. 指[zhi3] (扌#52 旨#752) finger; to point at or to; to indicate or refer to; to depend on; to count on; (of hair) to stand on end#780. 双[shuang1] (又#34 又#34) variant of 雙|双[shuang1]; surname Shuang; two; double; pair; both; even (number)#781. 棒[bang4] (木#38 奉#749) stick; club; cudgel; smart; capable; strong; wonderful; classifier for legs of a relay race#782. 不要[bu4 yao4] (不#23 要#103) don't!; must not#783. 问题[wen4 ti2] (问#369 题#733) question; problem; issue; topic; CL:個|个[ge4]#784. 思[si1] (田#168 心#61) to think; to consider#785. 管[guan3] (竹#191 官#521) variant of 管[guan3]; surname Guan; to take care (of); to control; to manage; to be in charge of; to look after; to run; to care about; tube; pipe; woodwind; classifier for tube-shaped objects; particle similar to 把[ba3] in 管...叫 constructions; writing brush; (coll.) to; towards#786. 您[nin2] (你#25 心#61) you (courteous, as opposed to informal 你[ni3])#787. 击[ji1] (二#27 丨#11 凵#90) to hit; to strike; to break; Taiwan pr. [ji2]#788. 兼[jian1] (䒑#77 コ#293 一#1 ④) double; twice; simultaneous; holding two or more (official) posts at the same time#789. 看到[kan4 dao4] (看#176 到#127) to see#790. 送[song4] (辶#33 关#329) to send; to deliver; to transmit; to give (as a present); to see (sb) off; to accompany; to go along with#791. 路[lu4] (𧾷#262 各#355) surname Lu; road (CL:條|条[tiao2]); journey; route; line (bus etc); sort; kind#792. 决[jue2] (冫#81 夬#234) to decide; to determine; to execute (sb); (of a dam etc) to breach or burst; definitely; certainly#793. 肯[ken3] (止#92 月#40) old variant of 肯[ken3]; to agree; to consent; to be willing to#794. 穿[chuan1] (穴#392 牙#474) to wear; to put on; to dress; to bore through; to pierce; to perforate; to penetrate; to pass through; to thread#795. 案[an4] (安#407 木#38) (legal) case; incident; record; file; table#796. 声[sheng1] (士#205 𠃜#775) sound; voice; tone; noise; reputation; classifier for sounds#797. 𫶧(儿#50 丨#11) #798. 发现[fa1 xian4] (发#302 现#268) to notice; to become aware of; to discover; to find; to detect; a discovery#799. 球[qiu2] (王#97 求#395) ball used for playing games (variant of 球[qiu2]); ball; sphere; globe; CL:個|个[ge4]; ball game; match; CL:場|场[chang3]#800. 底[de5] (广#194 氐#667) (equivalent to 的 as possessive particle); bottom; base; background; foundation; copy (of a manuscript or receipt etc) kept as a record; (suffix) end of a year or month; (math.) radix; base (abbr. for 底數|底数[di3shu4])#801. 廿[nian4] twenty#802. 第一[di4 yi1] (第#539 一#1) first; most important; primary; foremost#803. 只是[zhi3 shi4] (只#164 是#39) merely; only; just; nothing but; simply; but; however#804. 鸟[diao3] (④ 一#1) variant of 屌[diao3]; penis; bird; CL:隻|只[zhi1],群[qun2]; "bird" radical in Chinese characters (Kangxi radical 196); (dialect) to pay attention to; (intensifier) damned; goddamn#805. 伙计[huo3 ji5] (伙#547 计#525) partner; fellow; mate; waiter; servant; shop assistant#806. 块[kuai4] (土#13 夬#234) lump; chunk; piece; classifier for pieces of cloth, cake, soap etc; (coll.) classifier for money and currency units#807. 亭[ting2] (亠#26 口#3 冖#96 丁#62) pavilion; booth; kiosk; erect#808. 报[bao4] (扌#52 𠬝#550) to report; to inform; to announce; to respond; to reply; to sign up for; to register for (abbr. for 報名|报名[bao4ming2]); to reward; to recompense; to take revenge; to retaliate; newspaper; periodical; journal; bulletin; telegram#809. 笑[xiao4] (竹#191 夭#595) old variant of 笑[xiao4]; to laugh; to smile; to laugh at#810. 事情[shi4 qing5] (事#182 情#489) affair; matter; thing; business; CL:件[jian4],樁|桩[zhuang1]#811. 希望[xi1 wang4] (希#735 望#691) to hope; a hope; a wish (CL:個|个[ge4])#812. 苟[gou3] (艹#150 句#357) surname Gou; (literary) if indeed; (bound form) careless; negligent; (bound form) temporarily#813. 𠕁(冂#57 卄#255) #814. 停[ting2] (亻#7 亭#807) to stop; to halt; to park (a car)#815. 找到[zhao3 dao4] (找#301 到#127) to find#816. 血[xie3] (丿#2 皿#456) see 血[xue4]; blood; colloquial pr. [xie3]; CL:滴[di1],片[pian4]#817. 扁[pian1] (户#358 𠕁#813) surname Pian; flat; (coll.) to beat (sb) up; old variant of 匾[bian3]; (bound form) small#818. 闭[bi4] (门#51 才#193) to close; to stop up; to shut; to obstruct#819. 通[tong1] (辶#33 甬#627) to go through; to know well; (suffix) expert; to connect; to communicate; open; to clear; classifier for letters, telegrams, phone calls etc; classifier for an activity, taken in its entirety (tirade of abuse, stint of music playing, bout of drinking etc)#820. 敬[jing4] (苟#812 攵#114) (bound form) respectful; to respect; to offer politely#821. 娄[lou2] (米#240 女#29) surname Lou; one of the 28 lunar mansions in Chinese astronomy#822. 吏[li4] (一#1 史#643) minor government official or functionary (old)#823. 当然[dang1 ran2] (当#299 然#409) only natural; as it should be; certainly; of course; without doubt#824. 使[shi3] (亻#7 吏#822) to make; to cause; to enable; to use; to employ; to send; to instruct sb to do sth; envoy; messenger#825. 宝[bao3] (宀#66 玉#463) variant of 寶|宝[bao3]; jewel; gem; treasure; precious#826. 执[zhi2] (扌#52 丸#730) to execute (a plan); to grasp#827. 离开[li2 kai1] (离#605 开#157) to depart; to leave#828. 𠀎(井#313 一#1) #829. 讲[jiang3] (讠#36 井#313) to speak; to explain; to negotiate; to emphasize; to be particular about; as far as sth is concerned; speech; lecture#830. 抱[bao4] (扌#52 包#422) to hold; to carry (in one's arms); to hug; to embrace; to surround; to cherish; (coll.) (of clothes) to fit nicely#831. 廷[ting2] (廴#574 壬#441) palace courtyard#832. 忘[wang4] (亡#330 心#61) to forget; to overlook; to neglect#833. 凡[fan2] (几#141 丶#4) ordinary; commonplace; mundane; temporal; of the material world (as opposed to supernatural or immortal levels); every; all; whatever; altogether; gist; outline; note of Chinese musical scale; variant of 凡[fan2]#834. 须[xu1] (彡#373 页#311) must; to have to; to wait; beard; mustache; feeler (of an insect etc); tassel#835. 票[piao4] (覀#100 示#391) ticket; ballot; banknote; CL:張|张[zhang1]; person held for ransom; amateur performance of Chinese opera; classifier for groups, batches, business transactions#836. 𢆉(丷#31 干#162) #837. 相信[xiang1 xin4] (相#160 信#494) to believe; to be convinced; to accept as true#838. 㓁(冖#96 儿#50) #839. 搞[gao3] (扌#52 高#454) to do; to make; to go in for; to set up; to get hold of; to take care of#840. 非常[fei1 chang2] (非#387 常#613) very; really; unusual; extraordinary#841. 𠄐(乛#8 亅#5) #842. 电话[dian4 hua4] (电#433 话#296) telephone; CL:部[bu4]; phone call; CL:通[tong1]; phone number#843. 则[ze2] (贝#189 刂#67) (literary) (conjunction used to express contrast with a previous clause) but; then; (bound form) standard; norm; (bound form) principle; (literary) to imitate; to follow; classifier for written items#844. 怪[guai4] (忄#140 圣#622) bewildering; odd; strange; uncanny; devil; monster; to wonder at; to blame; quite; rather; variant of 怪[guai4]#845. 𡨄(宀#66 𠀎#828 八#41) #846. 酒[jiu3] (氵#60 酉#493) wine (esp. rice wine); liquor; spirits; alcoholic beverage; CL:杯[bei1],瓶[ping2],罐[guan4],桶[tong3],缸[gang1]#847. 㐄[kua4] component in Chinese characters, mirror image of 夂[zhi3]#848. 罙(㓁#838 木#38) #849. 必须[bi4 xu1] (必#504 须#834) to have to; must; compulsory; necessarily#850. 丑[chou3] surname Chou; clown; 2nd earthly branch: 1-3 a.m., 12th solar month (6th January to 3rd February), year of the Ox; ancient Chinese compass point: 30°; shameful; ugly; disgraceful#851. 呀[ya1] (口#3 牙#474) ah (used to express surprise); (onom.) creaking; (particle equivalent to 啊 after a vowel, expressing surprise or doubt)#852. 弗[fu2] (弓#237 丿#2 丨#11) (literary) not; used in transliteration#853. 爸爸[ba4 ba5] (爸#477 爸#477) (coll.) father; dad; CL:個|个[ge4],位[wei4]#854. 辛[xin1] (立#122 十#10) surname Xin; (of taste) hot or pungent; hard; laborious; suffering; eighth in order; eighth of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; letter "H" or Roman "VIII" in list "A, B, C", or "I, II, III" etc; ancient Chinese compass point: 285°; octa#855. 俞[yu2] (亼#118 刖#315) surname Yu; variant of 腧[shu4]; yes (used by Emperor or ruler); OK; to accede; to assent#856. 兰[lan2] (丷#31 三#171) surname Lan; abbr. for Lanzhou 蘭州|兰州[Lan2zhou1], Gansu; orchid (蘭花|兰花 Cymbidium goeringii); fragrant thoroughwort (蘭草|兰草 Eupatorium fortunei); lily magnolia (木蘭|木兰)#857. 尹[yin3] (コ#293 一#1 丿#2) surname Yin; (literary) to administer; to govern; (bound form) governor; prefect; magistrate (official title in imperial times)#858. 品[pin3] (口#3 吅#498) (bound form) article; commodity; product; goods; (bound form) grade; rank; kind; type; variety; character; disposition; nature; temperament; to taste sth; to sample; to criticize; to comment; to judge; to size up; fret (on a guitar or lute)#859. 某[mou3] (甘#696 木#38) some; a certain; sb or sth indefinite; such-and-such#860. 怕[pa4] (忄#140 白#20) surname Pa; to be afraid; to fear; to dread; to be unable to endure; perhaps#861. 尽[jin3] (尺#670 ⺀#517) to the greatest extent; (when used before a noun of location) furthest or extreme; to be within the limits of; to give priority to; to use up; to exhaust; to end; to finish; to the utmost; exhausted; finished; to the limit (of sth); all; entirely#862. 孝[xiao4] (耂#121 子#47) filial piety or obedience; mourning apparel#863. 看看[kan4 kan5] (看#176 看#176) to take a look at; to examine; to survey; (coll.) pretty soon#864. 大家[da4 jia1] (大#35 家#307) everyone; influential family; great expert#865. 救[jiu4] (求#395 攵#114) variant of 救[jiu4]; to save; to assist; to rescue#866. 就是[jiu4 shi4] (就#139 是#39) exactly; precisely; only; simply; just; (used correlatively with 也[ye3]) even; even if#867. 提[di1] (扌#52 是#39) used in 提防[di1 fang5] and 提溜[di1 liu5]; to carry (hanging down from the hand); to lift; to put forward; to mention; to raise (an issue); upwards character stroke; lifting brush stroke (in painting); scoop for measuring liquid#868. 昭[zhao1] (日#15 召#582) bright; clear; manifest; to show clearly#869. 术[shu4] (木#38 丶#4) method; technique; various genera of flowers of Asteracea family (daisies and chrysanthemums), including Atractylis lancea#870. 照[zhao4] (昭#868 灬#134) variant of 照[zhao4]; to shine; to illuminate; according to; in accordance with; to shine; to illuminate; to reflect; to look at (one's reflection); to take (a photo); photo; as requested; as before#871. 金[jin1] (人#6 王#97 丷#31) surname Jin; surname Kim (Korean); Jurchen Jin dynasty (1115-1234); gold; chemical element Au; generic term for lustrous and ductile metals; money; golden; highly respected; one of the eight categories of ancient musical instruments 八音[ba1 yin1]#872. 教[jiao4] (孝#862 攵#114) surname Jiao; to teach; to instruct; (bound form) to teach; to instruct; a religion; to cause (sb to do sth); to tell (sb to do sth)#873. 鱼[yu2] (𠂊#12 田#168 一#1) surname Yu; fish (CL:條|条[tiao2],尾[wei3]); used in the names of various aquatic animals that are not fish (including abalone 鮑魚|鲍鱼[bao4yu2], alligators and crocodiles 鱷魚|鳄鱼[e4yu2] and octopi 章魚|章鱼[zhang1yu2])#874. 丙[bing3] (一#1 内#414) third of the ten Heavenly Stems 十天干[shi2 tian1 gan1]; third in order; letter "C" or Roman "III" in list "A, B, C", or "I, II, III" etc; ancient Chinese compass point: 165°; propyl#875. 连[lian2] (辶#33 车#180) surname Lian; to link; to join; to connect; continuously; in succession; including; (used with 也[ye3], 都[dou1] etc) even; company (military)#876. 运[yun4] (辶#33 云#73) to move; to transport; to use; to apply; fortune; luck; fate#877. 医生[yi1 sheng1] (医#688 生#167) doctor; CL:個|个[ge4],位[wei4],名[ming2]#878. 六[liu4] (亠#26 八#41) six; 6#879. 认识[ren4 shi5] (认#365 识#754) to know; to recognize; to be familiar with; to get acquainted with sb; knowledge; understanding; awareness; cognition#880. 神[shen2] (礻#394 申#660) God; god; deity; supernatural; magical; mysterious; spirit; mind; energy; lively; expressive; look; expression; (coll.) awesome; amazing#881. 喝[he1] (口#3 曷#763) to drink; variant of 嗬[he1]; to shout#882. 永[yong3] forever; always; perpetual#883. 别人[bie2 ren5] (别#226 人#6) other people; others; other person#884. 男人[nan2 ren2] (男#559 人#6) a man; a male; men; CL:個|个[ge4]#885. 担[dan1] (扌#52 旦#102) to undertake; to carry; to shoulder; to take responsibility; picul (100 catties, 50 kg); two buckets full; carrying pole and its load; classifier for loads carried on a shoulder pole#886. 疯[feng1] (疒#389 风#597) insane; mad; wild#887. 下来[xia4 lai5] (下#109 来#87) to come down; (completed action marker); (after verb of motion, indicates motion down and towards us, also fig.); (indicates continuation from the past towards us); to be harvested (of crops); to be over (of a period of time); to go among the masses (said of leaders)#888. 谷[gu3] grain; corn; surname Gu; valley#889. 𣥂#890. 步[bu4] (止#92 𣥂#889) surname Bu; a step; a pace; walk; march; stages in a process; situation#891. 之前[zhi1 qian2] (之#256 前#346) before; prior to; ago; previously; beforehand#892. 根[gen1] (木#38 艮#98) root; basis; classifier for long slender objects, e.g. cigarettes, guitar strings; CL:條|条[tiao2]; radical (chemistry)#893. 战[zhan4] (占#184 戈#159) to fight; fight; war; battle#894. 啦[la1] (口#3 拉#526) (onom.) sound of singing, cheering etc; (phonetic); (dialect) to chat; sentence-final particle, contraction of 了啊, indicating exclamation; particle placed after each item in a list of examples#895. 姐[jie3] (女#29 且#136) older sister#896. 市[shi4] (亠#26 巾#151) market; city; CL:個|个[ge4]#897. 站[zhan4] (立#122 占#184) station; to stand; to halt; to stop; branch of a company or organization; website#898. 屋[wu1] (尸#99 至#108) (bound form) house; (bound form) room#899. 虽[sui1] (口#3 虫#410) although; even though#900. 哪儿[na3 r5] (哪#405 儿#50) where?; wherever; anywhere; somewhere; (used in rhetorical questions) how can ...?; how could ...?#901. 有人[you3 ren2] (有#63 人#6) someone; people; anyone; there is someone there; occupied (as in restroom)#902. 准备[zhun3 bei4] (准#731 备#778) preparation; to prepare; to intend; to be about to; reserve (fund)#903. 之后[zhi1 hou4] (之#256 后#270) after; behind; (at the beginning of a sentence) afterwards; since then#904. 论[lun2] (讠#36 仑#644) abbr. for 論語|论语[Lun2 yu3], The Analects (of Confucius); opinion; view; theory; doctrine; to discuss; to talk about; to regard; to consider; per; by the (kilometer, hour etc)#905. 待[dai1] (彳#75 寺#276) to stay; to remain; to wait; to treat; to deal with; to need; going to (do sth); about to; intending to#906. 罗[luo2] (罒#396 夕#71) surname Luo; gauze; to collect; to gather; to catch; to sift#907. 上帝[shang4 di4] (上#56 帝#751) God#908. 警[jing3] (敬#820 言#354) to alert; to warn; police#909. 充[chong1] (𠫓#557 儿#50) sufficient; full; to fill; to serve as; to act as; to act falsely as; to pose as#910. 予[yu2] (龴#314 𠄐#841) (archaic) I; me; (literary) to give#911. 病[bing4] (疒#389 丙#874) illness; CL:場|场[chang2]; disease; to fall ill; defect#912. 甫[fu3] (十#10 月#40 丶#4) (classical) barely; just; just now#913. 昏[hun1] (氏#472 日#15) muddle-headed; twilight; to faint; to lose consciousness; old variant of 昏[hun1]#914. 钟[zhong1] (钅#227 中#174) surname Zhong; handleless cup; goblet; (bound form) to concentrate (one's affection etc); variant of 鐘|钟[zhong1]; a (large) bell (CL:架[jia4]); clock (CL:座[zuo4]); amount of time; o'clock (CL:點|点[dian3],分[fen1],秒[miao3]) (as in 三點鐘|三点钟[san1dian3zhong1] "three o'clock" or "three hours" or 五分鐘|五分钟[wu3fen1zhong1] "five minutes" etc)#915. 那里[na4 li5] (那#79 里#158) there; that place; there; that place#916. 畐(𠮛#497 田#168) #917. 参[can1] (厶#17 大#35 彡#373) variant of 參|参[can1]; to take part in; to participate; to join; to attend; to counsel; unequal; varied; irregular; uneven; not uniform; abbr. for 參議院|参议院 Senate, Upper House; used in 參差|参差[cen1 ci1]; ginseng; one of the 28 constellations; old variant of 參|参[can1]; variant of 參|参[shen1]; variant of 參|参[shen1]#918. 名字[ming2 zi5] (名#453 字#690) name (of a person or thing); CL:個|个[ge4]#919. 旲(日#15 大#35) #920. 莫[mo4] (艹#150 旲#919) surname Mo; do not; there is none who#921. 乇[tuo1] (丿#2 七#294) old variant of 托[tuo1]; "blade of grass" component in Chinese characters#922. 壮[zhuang4] (丬#377 士#205) Zhuang ethnic group of Guangxi, the PRC's second most numerous ethnic group; to strengthen; strong; robust#923. 韦[wei2] surname Wei; soft leather#924. 嘛[ma2] (口#3 麻#632) used in 唵嘛呢叭咪吽[an3 ma2 ni2 ba1 mi1 hong1]; (Tw) (coll.) what?; modal particle indicating that sth is obvious; particle indicating a pause for emphasis#925. 还是[hai2 shi5] (还#163 是#39) still (as before); had better; unexpectedly; or#926. 跑[pao2] (𧾷#262 包#422) (of an animal) to paw (the ground); to run; to run away; to escape; to run around (on errands etc); (of a gas or liquid) to leak or evaporate; (verb complement) away; off#927. 度[du4] (广#194 廿#801 又#34) to pass; to spend (time); measure; limit; extent; degree of intensity; degree (angles, temperature etc); kilowatt-hour; classifier for events and occurrences; to estimate; Taiwan pr. [duo4]#928. 杯[bei1] (木#38 不#23) cup; trophy cup; classifier for certain containers of liquids: glass, cup; variant of 杯[bei1]; variant of 杯[bei1]; trophy cup; classifier for certain containers of liquids: glass, cup#929. 划[hua2] (戈#159 刂#67) to row; to paddle; profitable; worth (the effort); it pays (to do sth); to cut; to slash; to scratch (cut into the surface of sth); to strike (a match); to delimit; to transfer; to assign; to plan; to draw (a line); stroke of a Chinese character#930. 小时[xiao3 shi2] (小#16 时#224) hour; CL:個|个[ge4]#931. 达[da2] (辶#33 大#35) surname Da; to attain; to reach; to amount to; to communicate; eminent#932. 室[shi4] (宀#66 至#108) surname Shi; room; work unit; grave; scabbard; family or clan; one of the 28 constellations of Chinese astronomy#933. 过来[guo4 lai2] (过#148 来#87) to come over; to manage; to handle; to be able to take care of; see 過來|过来[guo4 lai2]#934. 肯定[ken3 ding4] (肯#793 定#347) to be certain; to be positive; assuredly; definitely; to give recognition; to affirm; affirmative (answer)#935. 寅[yin2] (宀#66 一#1 由#368 八#41) 3rd earthly branch: 3-5 a.m., 1st solar month (4th February-5th March), year of the Tiger; ancient Chinese compass point: 60°#936. 演[yan3] (氵#60 寅#935) to perform (a play etc); to stage (a show); (bound form) to develop; to play out; to carry out (a task)#937. 出去[chu1 qu4] (出#192 去#80) to go out#938. 任何[ren4 he2] (任#583 何#555) any; whatever; whichever#939. 拍[pai1] (扌#52 白#20) to pat; to clap; to slap; to swat; to take (a photo); to shoot (a film); racket (sports); beat (music)#940. 人们[ren2 men5] (人#6 们#64) people#941. 关于[guan1 yu2] (关#329 于#342) pertaining to; concerning; with regard to; about; a matter of#942. 转[zhuai3] (车#180 专#560) see 轉文|转文[zhuai3 wen2]; to turn; to change direction; to transfer; to forward (mail); (Internet) to share (sb else's content); to revolve; to turn; to circle about; to walk about; classifier for revolutions (per minute etc): revs, rpm; classifier for repeated actions#943. 百[bai3] (一#1 白#20) surname Bai; hundred; numerous; all kinds of#944. 那儿[na4 r5] (那#79 儿#50) there#945. 线[xian4] (纟#91 戋#418) variant of 線|线[xian4]; thread; string; wire; line; CL:條|条[tiao2],股[gu3],根[gen1]; (after a number) tier (unofficial ranking of a Chinese city)#946. 生活[sheng1 huo2] (生#167 活#546) to live; life; livelihood#947. 歉[qian4] (兼#788 欠#183) to apologize; to regret; deficient#948. 舛[chuan3] (夕#71 㐄#847) mistaken; erroneous; contradictory#949. 哇[wa1] (口#3 圭#519) Wow!; sound of a child's crying; sound of vomiting; replaces 啊[a5] when following the vowel "u" or "ao"#950. 近[jin4] (辶#33 斤#117) near; close to; approximately#951. 过去[guo4 qu4] (过#148 去#80) (in the) past; former; previous; to go over; to pass by; (verb suffix)#952. 护[hu4] (扌#52 户#358) to protect#953. 考[kao3] (耂#121 丂#379) to beat; to hit; variant of 考[kao3]; to inspect; to test; to take an exam; to check; to verify; to test; to examine; to take an exam; to take an entrance exam for; deceased father#954. 产[chan3] (亠#26 丷#31 厂#219) to give birth; to reproduce; to produce; product; resource; estate; property; variant of 產|产[chan3]#955. 曲[qu1] surname Qu; bent; crooked; wrong; tune; song; CL:支[zhi1]; variant of 麴|曲[qu1]; fermentation starter; leaven (molds, yeasts or bacteria used in fermenting soy products or brewing etc); Taiwan pr. [qu2]#956. 哈[ha1] (口#3 合#153) abbr. for 哈薩克斯坦|哈萨克斯坦[Ha1sa4ke4si1tan3], Kazakhstan; abbr. for 哈爾濱|哈尔滨[Ha1er3bin1], Harbin; (interj.) ha!; (onom. for laughter); (slang) to be infatuated with; to adore; (bound form) husky (dog) (abbr. for 哈士奇[ha1shi4qi2]); a Pekinese; a pug; (dialect) to scold#957. 公司[gong1 si1] (公#419 司#621) company; firm; corporation; CL:家[jia1]#958. 务[wu4] (夂#165 力#78) affair; business; matter; to be engaged in; to attend to; by all means#959. 不错[bu4 cuo4] (不#23 错#450) correct; right; not bad; pretty good#960. 𠂢(𠂆#83 ④) #961. 绝[jue2] (纟#91 色#594) to cut short; extinct; to disappear; to vanish; absolutely; by no means; variant of 絕|绝[jue2]#962. 托[tuo1] (扌#52 乇#921) to hold up in one's hand; to support with one's palm; sth serving as a support: a prop, a rest (e.g. arm rest); (bound form) a shill; to ask; to beg; to entrust (variant of 託|托[tuo1]); torr (unit of pressure); to trust; to entrust; to be entrusted with; to act as trustee#963. 派[pa1] (氵#60 𠂢#960) used in 派司[pa1si5]; (literary) tributary; branch of a river; clique; school; group; faction; (bound form) style; manner; to send (a person or resource); to dispatch; to allocate (a resource or task); to appoint (sb); classifier for factions, groups etc; (preceded by 一[yi1]) classifier used in characterizing a scene, atmosphere, demeanor, sound, remark etc; (loanword) pi (Greek letter Ππ); the circular ratio 𝜋 = 3.14159...; (loanword) pie#964. 往[wang3] (彳#75 主#295) to go (in a direction); to; towards; (of a train) bound for; past; previous; old variant of 往[wang3]#965. 央[yang1] center; end; to beg; to plead#966. 担心[dan1 xin1] (担#885 心#61) anxious; worried; uneasy; to worry; to be anxious#967. 界[jie4] (田#168 介#609) (bound form) boundary; border; (bound form) realm#968. 女孩[nu:3 hai2] (女#29 孩#400) girl; lass#969. 再见[zai4 jian4] (再#244 见#123) goodbye; see you again later#970. 持[chi2] (扌#52 寺#276) to hold; to grasp; to support; to maintain; to persevere; to manage; to run (i.e. administer); to control#971. 卌[xi4] forty#972. 舞[wu3] (𠂉#82 卌#971 一#1 舛#948) to dance; to wield; to brandish#973. 清[qing1] (氵#60 青#253) Qing (Wade-Giles: Ch'ing) dynasty of China (1644-1911); surname Qing; (of water etc) clear; clean; quiet; still; pure; uncorrupted; clear; distinct; to clear; to settle (accounts)#974. 议[yi4] (讠#36 义#659) to comment on; to discuss; to suggest#975. 其他[qi2 ta1] (其#338 他#48) other; (sth or sb) else; the rest#976. 录[lu4] (彐#217 氺#333) to carve wood; surname Lu; diary; record; to hit; to copy#977. 仅[jin3] (亻#7 又#34) barely; only; merely#978. 对不起[dui4 bu5 qi3] (对#113 不#23 起#285) I'm sorry; excuse me; I beg your pardon; to let (sb) down; to disappoint#979. 局[ju2] (尸#99 𠃌#30 口#3) narrow; office; situation; classifier for games: match, set, round etc; cramped; narrow#980. 赛[sai4] (𡨄#845 贝#189) to compete; competition; match; to surpass; better than; superior to; to excel#981. 传[chuan2] (亻#7 专#560) to pass on; to spread; to transmit; to infect; to transfer; to circulate; to conduct (electricity); biography; historical narrative; commentaries; relay station#982. 婚[hun1] (女#29 昏#913) to marry; marriage; wedding; to take a wife#983. 除[chu2] (阝#46 余#772) to get rid of; to remove; to exclude; to eliminate; to wipe out; to divide; except; not including#984. 床[chuang2] (广#194 木#38) bed; couch (furniture that one can lie down on) (CL:張|张[zhang1]); bed; bottom (of rivers, oceans, gardens etc); frame; chassis; classifier for blankets, quilts etc; variant of 床[chuang2]#985. 洛[luo4] (氵#60 各#355) surname Luo; old name of several rivers (in Henan, Shaanxi, Sichuan and Anhui); used in transliteration#986. 息[xi1] (自#142 心#61) breath; news; interest (on an investment or loan); to cease; to stop; to rest; Taiwan pr. [xi2]#987. 民[min2] surname Min; (bound form) the people; inhabitants of a country#988. 助[zhu4] (且#136 力#78) to help; to assist#989. 龹(丷#31 夫#287) #990. 眼[yan3] (目#72 艮#98) eye (CL:隻|只[zhi1],雙|双[shuang1]); (often used with 一[yi1]) a look; a glance; small hole; (bound form) salient point; classifier for wells, cave-dwellings etc#991. 𠬤(又#34 二#27 丨#11) #992. 客[ke4] (宀#66 各#355) customer; visitor; guest; classifier for servings or portions (when ordering food)#993. 礼[li3] (礻#394 乚#18) surname Li; abbr. for 禮記|礼记[Li3ji4], Classic of Rites; gift; rite; ceremony; CL:份[fen4]; propriety; etiquette; courtesy#994. 奴[nu2] (女#29 又#34) slave#995. 虍[hu1] (⺊#45 ② 七#294) stripes of a tiger; "tiger" radical in Chinese characters (Kangxi radical 141)#996. 建[jian4] (廴#574 聿#720) to establish; to found; to set up; to build; to construct#997. 高兴[gao1 xing4] (高#454 兴#677) happy; glad; willing (to do sth); in a cheerful mood#998. 那样[na4 yang4] (那#79 样#264) that kind; that sort#999. 丈[zhang4] measure of length, ten Chinese feet (3.3 m); to measure; husband; polite appellation for an older male#1000. 装[zhuang1] (壮#922 衣#544) adornment; to adorn; dress; clothing; costume (of an actor in a play); to play a role; to pretend; to install; to fix; to wrap (sth in a bag); to load; to pack#1001. 垂[chui2] (丿#2 ⑥ 一#1) to hang (down); droop; dangle; bend down; hand down; bequeath; nearly; almost; to approach#1002. 俩[lia3] (亻#7 两#320) two (colloquial equivalent of 兩個|两个); both; some; used in 伎倆|伎俩[ji4liang3]#1003. 极[ji2] (木#38 及#465) extremely; pole (geography, physics); utmost; top#1004. 格[ge2] (木#38 各#355) square; frame; rule; (legal) case; style; character; standard; pattern; (grammar) case; (classical) to obstruct; to hinder; (classical) to arrive; to come; (classical) to investigate; to study exhaustively#1005. 易[yi4] (日#15 勿#491) surname Yi; abbr. for 易經|易经[Yi4jing1], the Book of Changes; easy; amiable; to change; to exchange; prefix corresponding to the English adjective suffix "-able" or "-ible"#1006. 成为[cheng2 wei2] (成#335 为#104) to become; to turn into#1007. 消[xiao1] (氵#60 肖#758) to diminish; to subside; to consume; to reduce; to idle away (the time); (after 不[bu4] or 只[zhi3] or 何[he2] etc) to need; to require; to take#1008. 小心[xiao3 xin1] (小#16 心#61) to be careful; to take care#1009. 匹[pi3] (匚#367 儿#50) (bound form) matching; comparable to; (bound form) alone; single; one of a pair; classifier for horses, mules etc (Taiwan pr. [pi1]); classifier for cloth: bolt; horsepower; variant of 匹[pi3]; classifier for cloth: bolt#1010. 组[zu3] (纟#91 且#136) surname Zu; to form; to organize; group; team; classifier for sets, series, groups of people, batteries#1011. 畏[wei4] (田#168 一#1 𠄌#664 乀#49 丿#2) to fear#1012. 多少[duo1 shao3] (多#204 少#360) number; amount; somewhat; how much?; how many?; (phone number, student ID etc) what number?#1013. 宝贝[bao3 bei4] (宝#825 贝#189) treasured object; treasure; darling; baby; cowry; good-for-nothing or queer character#1014. 蛋[dan4] (疋#698 虫#410) variant of 蜑[Dan4]; egg; CL:個|个[ge4],打[da2]; oval-shaped thing#1015. 改[gai3] (己#229 攵#114) to change; to alter; to transform; to correct#1016. 它们[ta1 men5] (它#246 们#64) they; them#1017. 很多(很#145 多#204) #1018. 拜[bai4] (龵#170 一#1 丰#303) to bow to; to pay one's respects; (bound form) to extend greetings (on a specific occasion); to make a courtesy call; (bound form) (of a monarch) to appoint sb to (a position) by performing a ceremony; to acknowledge sb as one's (master, godfather etc); (used before some verbs to indicate politeness)#1019. 抱歉[bao4 qian4] (抱#830 歉#947) to be sorry; to feel apologetic; sorry!#1020. 制[zhi4] (牛#216 冂#57 刂#67) system; to control; to regulate; variant of 製|制[zhi4]; to manufacture; to make#1021. 巨[ju4] very large; huge; tremendous; gigantic; variant of 巨[ju4]#1022. 景[jing3] (日#15 京#131) surname Jing; (bound form) scenery; circumstance; situation; scene (of a play); (literary) sunlight#1023. 秀[xiu4] (禾#107 乃#485) (bound form) refined; elegant; graceful; beautiful; (bound form) superior; excellent; (loanword) show; (literary) to grow; to bloom; (of grain crops) to produce ears#1024. 下去[xia4 qu4] (下#109 去#80) to go down; to descend; to go on; to continue; (of a servant) to withdraw#1025. 感觉[gan3 jue2] (感#578 觉#464) feeling; impression; sensation; to feel; to perceive#1026. 吾[wu2] (五#536 口#3) surname Wu; (old) I; my#1027. 讨[tao3] (讠#36 寸#42) to invite; to provoke; to demand or ask for; to send armed forces to suppress; to denounce or condemn; to marry (a woman); to discuss or study#1028. 强[qiang2] (弓#237 虽#899) surname Qiang; stubborn; unyielding; strong; powerful; better; slightly more than; vigorous; violent; best in their category, e.g. see 百強|百强[bai3 qiang2]; to force; to compel; to strive; to make an effort; variant of 強|强[jiang4]; variant of 強|强[qiang2]; variant of 強|强[qiang3]#1029. 机会[ji1 hui4] (机#471 会#76) opportunity; chance; occasion; CL:個|个[ge4]#1030. 德[de2] (彳#75 𢛳#1031) Germany; German; abbr. for 德國|德国[De2 guo2]; virtue; goodness; morality; ethics; kindness; favor; character; kind; variant of 德[de2]; variant of 德[de2]#1031. 𢛳(十#10 罒#396 一#1 心#61) #1032. 釆[bian4] (丿#2 米#240) old variant of 辨[bian4]#1033. 怎么样[zen3 me5 yang4] (怎#275 么#58 样#264) how?; how about?; how was it?; how are things?#1034. 父亲[fu4 qin1] (父#263 亲#402) father; also pr. [fu4 qin5]; CL:個|个[ge4]#1035. 卬[ang2] (② 卩#254) surname Ang; I (regional colloquial); me; variant of 昂[ang2]#1036. 奂[huan4] (𠂊#12 冂#57 大#35) surname Huan; excellent#1037. 监[jian1] (〢#588 𠂉#82 丶#4 皿#456) to supervise; to inspect; jail; prison; (bound form) supervisor; supervisory office (in imperial China)#1038. 脑[nao3] (月#40 㐫#502) brain; mind; head; essence#1039. 喂[wei2] (口#3 畏#1011) hello (when answering the phone); hey; to feed (an animal, baby, invalid etc); variant of 餵|喂[wei4]; to feed#1040. 段[duan4] (⑤ 殳#95) surname Duan; paragraph; section; segment; stage (of a process); classifier for stories, periods of time, lengths of thread etc#1041. 今晚[jin1 wan3] (今#370 晚#528) tonight#1042. 夜[ye4] (亠#26 亻#7 夂#165 丶#4) variant of 夜[ye4]; night#1043. 视[shi4] (礻#394 见#123) variant of 視|视[shi4]; variant of 示[shi4]; old variant of 視|视[shi4]; (literary, or bound form) to look at#1044. 便[bian4] (亻#7 更#362) plain; informal; suitable; convenient; opportune; to urinate or defecate; equivalent to 就[jiu4]: then; in that case; even if; soon afterwards; used in 便宜[pian2yi5]; used in 便便[pian2pian2]; used in 便嬛[pian2xuan1]#1045. 刍[chu2] (𠂊#12 彐#217) to mow or cut grass; hay; straw; fodder#1046. 昆[kun1] (日#15 比#261) variant of 崑|昆[kun1]; used in place names, notably Kunlun Mountains 崑崙|昆仑[Kun1 lun2]; (also used for transliteration); descendant; elder brother; a style of Chinese poetry#1047. 否[fou3] (不#23 口#3) to negate; to deny; not; clogged; evil#1048. 类[lei4] (米#240 大#35) kind; type; class; category; (classifier) kind; type; (bound form) to resemble; to be similar to#1049. 完全[wan2 quan2] (完#451 全#458) complete; whole; totally; entirely#1050. 㐬(𠫓#557 𫶧#797) #1051. 列[lie4] (歹#248 刂#67) to arrange; to line up; file; series; (in data tables) column; (Tw) row#1052. 店[dian4] (广#194 占#184) inn; old-style hotel (CL:家[jia1]); (bound form) shop; store#1053. 食[shi2] (人#6 良#648) to eat; food; animal feed; eclipse; to feed (a person or animal)#1054. 权[quan2] (木#38 又#34) surname Quan; authority; power; right; (literary) to weigh; expedient; temporary#1055. 龙[long2] (尤#130 丿#2) surname Long; Chinese dragon; loong; (fig.) emperor; dragon; (bound form) dinosaur#1056. 计划[ji4 hua4] (计#525 划#929) plan; project; program; to plan; to map out; CL:個|个[ge4],項|项[xiang4]#1057. 睡[shui4] (目#72 垂#1001) to sleep; to lie down#1058. 敢[gan3] (乛#8 耳#235 攵#114) to dare; daring; (polite) may I venture#1059. 敕[chi4] (束#636 攵#114) variant of 敕[chi4]; variant of 敕[chi4]; imperial orders#1060. 曾[zeng1] (丷#31 𭥴#1061) surname Zeng; once; already; ever (in the past); former; previously; (past tense marker used before verb or clause); great- (grandfather, grandchild etc)#1061. 𭥴(囗#86 ⺌#179 日#15) #1062. 禺[ou3] old variant of 偶[ou3]; (archaic) district; (old) type of monkey#1063. 倒[dao3] (亻#7 到#127) to fall; to collapse; to lie horizontally; to fail; to go bankrupt; to overthrow; to change (trains or buses); to move around; to resell at a profit; to invert; to place upside down or frontside back; to pour out; to tip out; to dump; inverted; upside down; reversed; to go backward; contrary to what one might expect; but; yet#1064. 扔[reng1] (扌#52 乃#485) to throw; to throw away#1065. 引[yin3] (弓#237 丨#11) to draw (e.g. a bow); to pull; to stretch sth; to extend; to lengthen; to involve or implicate in; to attract; to lead; to guide; to leave; to provide evidence or justification for; old unit of distance equal to 10 丈[zhang4], one-thirtieth of a km or 33.33 meters#1066. 乔[qiao2] (夭#595 丿#2 丨#11) surname Qiao; tall#1067. 英[ying1] (艹#150 央#965) United Kingdom; British; England; English; abbr. for 英國|英国[Ying1 guo2]; hero; outstanding; excellent; (literary) flower; blossom#1068. 投[tou2] (扌#52 殳#95) to throw (sth in a specific direction: ball, javelin, grenade etc); to cast (a ballot); to cast (a glance, a shadow etc); to put in (money for investment, a coin to operate a slot machine); to send (a letter, a manuscript etc); to throw oneself into (a river, a well etc to commit suicide); to go to; to seek refuge; to place oneself into the hands of; (coll.) to rinse (clothes) in water#1069. 期[qi1] (其#338 月#40) variant of 期[qi1]; period; cycle; a period of time; phase; stage; classifier for issues of a periodical, courses of study; time; term; period; to hope; Taiwan pr. [qi2]#1070. 注[zhu4] (氵#60 主#295) to inject; to pour into; to concentrate; to pay attention; stake (gambling); classifier for sums of money; variant of 註|注[zhu4]; to register; to annotate; note; comment#1071. 並(䒑#77 业#413) #1072. 整[zheng3] (敕#1059 正#251) (bound form) whole; complete; entire; (before a measure word) whole; (before or after number + measure word) exactly; (bound form) in good order; tidy; neat; (bound form) to put in order; to straighten; (bound form) to repair; to mend; to renovate; (coll.) to fix sb; to give sb a hard time; to mess with sb; (dialect) to tinker with; to do sth to#1073. 冲[chong1] (冫#81 中#174) (of water) to dash against; to mix with water; to infuse; to rinse; to flush; to develop (a film); to rise in the air; to clash; to collide with; thoroughfare; to go straight ahead; to rush; to clash; powerful; vigorous; pungent; towards; in view of#1074. 若[re3] (艹#150 右#771) used in 般若[bo1re3]; used in 蘭若|兰若[lan2re3]; to seem; like; as; if#1075. 以前[yi3 qian2] (以#172 前#346) before; formerly; previous; ago#1076. 吸[xi1] (口#3 及#465) to breathe; to suck in; to absorb; to inhale#1077. 药[yao4] (艹#150 约#575) leaf of the iris; variant of 藥|药[yao4]; medicine; drug; substance used for a specific purpose (e.g. poisoning, explosion, fermenting); CL:種|种[zhong3],服[fu4],味[wei4]; to poison#1078. 跳[tiao4] (𧾷#262 兆#692) to jump; to hop; to skip over; to bounce; to palpitate#1079. 看见[kan4 jian4] (看#176 见#123) to see; to catch sight of#1080. 复[fu4] (𠂉#82 日#15 夂#165) to go and return; to return; to resume; to return to a normal or original state; to repeat; again; to recover; to restore; to turn over; to reply; to answer; to reply to a letter; to retaliate; to carry out; to repeat; to double; to overlap; complex (not simple); compound; composite; double; diplo-; duplicate; overlapping; to duplicate; variant of 復|复[fu4]; to reply to a letter#1081. 紧[jin3] (〢#588 又#34 糸#473) tight; strict; close at hand; near; urgent; tense; hard up; short of money; to tighten#1082. 意思[yi4 si5] (意#417 思#784) idea; opinion; meaning; wish; desire; interest; fun; token of appreciation, affection etc; CL:個|个[ge4]; to give as a small token; to do sth as a gesture of goodwill etc#1083. 羽[yu3] (习#630 习#630) feather; 5th note in pentatonic scale#1084. 退[tui4] (辶#33 艮#98) to retreat; to withdraw; to reject; to return (sth); to decline#1085. 急[ji2] (刍#1045 心#61) urgent; pressing; rapid; hurried; worried; to make (sb) anxious#1086. 丈夫[zhang4 fu5] (丈#999 夫#287) husband#1087. 戏[xi4] (又#34 戈#159) variant of 戲|戏[xi4]; trick; drama; play; show; CL:齣|出[chu1],場|场[chang3],臺|台[tai2]#1088. 幸[xing4] (土#13 𢆉#836) trusted; intimate; (of the emperor) to visit; variant of 幸[xing4]; surname Xing; fortunate; lucky#1089. 宓[mi4] (宀#66 必#504) surname Mi; still; silent#1090. 缶[fou3] pottery#1091. 记得[ji4 de5] (记#516 得#202) to remember#1092. 每个[mei3 ge4] (每#345 个#43) each; every#1093. 探[tan4] (扌#52 罙#848) to explore; to search out; to scout; to visit; to stretch forward#1094. 州[zhou1] prefecture; (old) province; (old) administrative division; state (e.g. of US); oblast (Russia); canton (Switzerland)#1095. 家伙[jia1 huo5] (家#307 伙#547) variant of 家伙[jia1 huo5]; household dish, implement or furniture; domestic animal; (coll.) guy; chap; weapon#1096. 昌[chang1] (日#15 日#15) surname Chang; (bound form) prosperous; flourishing#1097. 统[tong3] (纟#91 充#909) to gather; to unite; to unify; whole#1098. 见到[jian4 dao4] (见#123 到#127) to see#1099. 这种[zhe4 zhong3] (这#68 种#527) this kind of#1100. 功[gong1] (工#144 力#78) meritorious deed or service; achievement; result; service; accomplishment; work (physics)#1101. 或者[huo4 zhe3] (或#601 者#161) or; possibly; maybe; perhaps#1102. 分钟[fen1 zhong1] (分#306 钟#914) minute#1103. 责[ze2] (龶#195 贝#189) duty; responsibility; to reproach; to blame#1104. 夫人[fu1 ren5] (夫#287 人#6) lady; madam; Mrs.; CL:位[wei4]#1105. 换[huan4] (扌#52 奂#1036) to exchange; to change (clothes etc); to substitute; to switch; to convert (currency)#1106. 最后[zui4 hou4] (最#380 后#270) final; last; finally; ultimate#1107. 杰[jie2] (木#38 灬#134) (bound form) hero; heroic; outstanding person; prominent; distinguished; variant of 傑|杰[jie2]#1108. 丢[diu1] (丿#2 去#80) to lose; to put aside; to throw#1109. 明天[ming2 tian1] (明#411 天#124) tomorrow#1110. 采[cai3] (爫#266 木#38) to pick; to pluck; to collect; to select; to choose; to gather; color; complexion; looks; variant of 彩[cai3]; variant of 採|采[cai3]; used in 采邑[cai4yi4] and 采地[cai4di4]#1111. 饭[fan4] (饣#635 反#481) cooked rice; CL:碗[wan3]; meal; CL:頓|顿[dun4]; (loanword) fan; devotee#1112. 调[diao4] (讠#36 周#570) to transfer; to move (troops or cadres); to investigate; to enquire into; accent; view; argument; key (in music); mode (music); tune; tone; melody; to harmonize; to reconcile; to blend; to suit well; to adjust; to regulate; to season (food); to provoke; to incite#1113. 可是[ke3 shi4] (可#84 是#39) but; however; (used for emphasis) indeed#1114. 世界[shi4 jie4] (世#689 界#967) world; CL:個|个[ge4]#1115. 如何[ru2 he2] (如#292 何#555) how; what way; what#1116. 唱[chang4] (口#3 昌#1096) to sing; to call loudly; to chant#1117. 曼[man4] (日#15 罒#396 又#34) handsome; large; long#1118. 校[jiao4] (木#38 交#499) to check; to collate; to proofread; (bound form) school; college; (bound form) (military) field officer#1119. 尧[yao2] (𭠍#1120 兀#220) surname Yao; Yao or Tang Yao (c. 2200 BC), one of the Five legendary Emperors 五帝[Wu3 Di4], second son of Di Ku 帝嚳|帝喾[Di4 Ku4]#1120. 𭠍(𫠠#129 丿#2) #1121. 红[hong2] (纟#91 工#144) surname Hong; used in 女紅|女红[nu:3gong1]; red; popular; revolutionary; bonus#1122. 肉[rou4] meat; flesh; pulp (of a fruit); (coll.) (of a fruit) squashy; (of a person) flabby; irresolute; Kangxi radical 130#1123. 混[hun2] (氵#60 昆#1046) muddy; turbid (variant of 渾|浑[hun2]); brainless; foolish (variant of 渾|浑[hun2]); Taiwan pr. [hun4]; to mix; to mingle; muddled; to drift along; to muddle along; to pass for; to get along with sb; thoughtless; reckless#1124. 流[liu2] (氵#60 㐬#1050) to flow; to disseminate; to circulate or spread; to move or drift; to degenerate; to banish or send into exile; stream of water or sth resembling one; class, rate or grade#1125. 奶[nai3] (女#29 乃#485) breast; milk; to breastfeed; variant of 嬭|奶[nai3]; mother; variant of 奶[nai3]#1126. 艾[ai4] (艹#150 乂#53) surname Ai; Chinese mugwort or wormwood; moxa; to stop or cut short; phonetic "ai" or "i"; abbr. for 艾滋病[ai4 zi1 bing4], AIDS; variant of 刈[yi4]; variant of 乂[yi4]#1127. 终[zhong1] (纟#91 冬#697) end; finish#1128. 存[cun2] (③ 子#47) to exist; to deposit; to store; to keep; to survive#1129. 关系[guan1 xi5] (关#329 系#700) relation; relationship; to concern; to affect; to have to do with; guanxi; CL:個|个[ge4]; variant of 關係|关系[guan1 xi5]#1130. 她们[ta1 men5] (她#94 们#64) they; them (females)#1131. 叚(⑤ コ#293 又#34) #1132. 油[you2] (氵#60 由#368) oil; fat; grease; petroleum; to apply tung oil, paint or varnish; oily; greasy; glib; cunning#1133. 小子[xiao3 zi3] (小#16 子#47) (literary) youngster; (old) young fellow (term of address used by the older generation); (old) I, me (used in speaking to one's elders); (coll.) boy; (derog.) joker; guy; (despicable) fellow#1134. 负[fu4] (𠂊#12 贝#189) to bear; to carry (on one's back); to turn one's back on; to be defeated; negative (math. etc)#1135. 厃(𠂊#12 厂#219) #1136. 歌[ge1] (哥#722 欠#183) song (CL:首[shou3],支[zhi1]); (bound form) to sing; variant of 歌[ge1]#1137. 治[zhi4] (氵#60 台#378) to rule; to govern; to manage; to control; to harness (a river); to treat (a disease); to wipe out (a pest); to punish; to research#1138. 罪[zui4] (罒#396 非#387) guilt; crime; fault; blame; sin; variant of 罪[zui4], crime#1139. 安全[an1 quan2] (安#407 全#458) safe; secure; safety; security#1140. 卫[wei4] (𠃌#30 丨#11 一#1) surname Wei; vassal state during the Zhou Dynasty (1066-221 BC), located in present-day Henan and Hebei Provinces; to guard; to protect; to defend; abbr. for 衛生|卫生, hygiene; health; abbr. for 衛生間|卫生间, toilet#1141. 屯[tun2] (丿#2 𡳾#1142) to station (soldiers); to store up; village; used in 屯邅[zhun1zhan1]#1142. 𡳾(凵#90 乚#18) #1143. 哪里[na3 li3] (哪#405 里#158) where?; somewhere; anywhere; wherever; nowhere (negative answer to question); humble expression denying compliment; also written 哪裡|哪里; where?; somewhere; anywhere; wherever; nowhere (negative answer to question); humble expression denying compliment#1144. 以后[yi3 hou4] (以#172 后#270) after; later; afterwards; following; later on; in the future#1145. 差[cha1] (羊#152 工#144) difference; discrepancy; (math.) difference (amount remaining after a subtraction); (literary) a little; somewhat; slightly; different; wrong; mistaken; to fall short; to lack; not up to standard; inferior; Taiwan pr. [cha1]; to send (on an errand); (archaic) person sent on such an errand; job; official post; used in 參差|参差[cen1ci1]#1146. 唯[wei2] (口#3 隹#209) only; alone; -ism (in Chinese, a prefix, often combined with a suffix such as 主義|主义[zhu3 yi4] or 論|论[lun4], e.g. 唯理論|唯理论[wei2 li3 lun4], rationalism); yes#1147. 吓[he4] (口#3 下#109) to scare; to intimidate; to threaten; (interjection showing disapproval) tut-tut; (interjection showing astonishment); to frighten; to scare#1148. 革[ge2] animal hide; leather; to reform; to remove; to expel (from office)#1149. 狂[kuang2] (犭#312 王#97) mad; wild; violent#1150. 假[gei1] (亻#7 叚#1131) used in 假掰[gei1 bai1]; fake; false; artificial; to borrow; if; suppose; vacation; variant of 假[jia3]; to borrow#1151. 数[shu3] (娄#821 攵#114) to count; to count as; to regard as; to enumerate; to list; number; figure; several; a few; (literary) frequently; repeatedly#1152. 从来[cong2 lai2] (从#133 来#87) always; at all times; never (if used in negative sentence)#1153. 挺[ting3] (扌#52 廷#831) straight; erect; to stick out (a part of the body); to (physically) straighten up; to support; to withstand; outstanding; (coll.) quite; very; classifier for machine guns#1154. 波[bo1] (氵#60 皮#289) (bound form) Poland (abbr. for 波蘭|波兰[Bo1lan2]); surname Bo; wave; ripple; storm; surge#1155. 况[kuang4] (冫#81 兄#111) moreover; situation#1156. 妻[qi1] (十#10 コ#293 一#1 女#29) (bound form) wife; to marry off (a daughter)#1157. 开心[kai1 xin1] (开#157 心#61) to feel happy; to rejoice; to have a great time; to make fun of sb#1158. 般[ban1] (舟#631 殳#95) sort; kind; class; way; manner; used in 般若[bo1re3]; see 般樂|般乐[pan2 le4]#1159. 历[li4] (厂#219 力#78) old variant of 曆|历[li4]; old variant of 歷|历[li4]; calendar; old variant of 歷|历[li4]; to experience; to undergo; to pass through; all; each; every; history#1160. 永远[yong3 yuan3] (永#882 远#718) forever; eternal#1161. 影[ying3] (景#1022 彡#373) picture; image; film; movie; photograph; reflection; shadow; trace#1162. 愿[yuan4] (原#646 心#61) honest and prudent; variant of 願|愿[yuan4]; (bound form) wish; hope; desire; to be willing; to wish (that sth may happen); may ...; vow; pledge#1163. 毒[du2] (龶#195 母#283) poison; to poison; poisonous; malicious; cruel; fierce; narcotics#1164. 城[cheng2] (土#13 成#335) city walls; city; town; CL:座[zuo4],道[dao4],個|个[ge4]#1165. 小姐[xiao3 jie5] (小#16 姐#895) young lady; miss; (slang) prostitute; CL:個|个[ge4],位[wei4]#1166. 险[xian3] (阝#46 佥#561) danger; dangerous; rugged#1167. 院[yuan4] (阝#46 完#451) courtyard; institution; CL:個|个[ge4]#1168. 密[mi4] (宓#1089 山#334) surname Mi; name of an ancient state; dense; close; thick; intimate; close; (bound form) secret; confidential; (Internet slang) to send a private message to (sb); to DM#1169. 续[xu4] (纟#91 卖#606) to continue; to replenish#1170. 刑[xing2] (开#157 刂#67) surname Xing; punishment; penalty; sentence; torture; corporal punishment#1171. 𫠣#1172. 律[lu:4] (彳#75 聿#720) surname Lü; law#1173. 乱[luan4] (舌#199 乚#18) in confusion or disorder; in a confused state of mind; disorder; upheaval; riot; illicit sexual relations; to throw into disorder; to mix up; indiscriminate; random; arbitrary#1174. 圡(土#13 丶#4) #1175. 丘[qiu1] surname Qiu; mound; hillock; grave; classifier for fields; hillock; mound (variant of 丘[qiu1])#1176. 享[xiang3] (亠#26 口#3 子#47) to enjoy; to benefit; to have the use of; old variant of 享[xiang3]#1177. 压[ya1] (厂#219 圡#1174) to press; to push down; to keep under (control); pressure; used in 壓根兒|压根儿[ya4gen1r5]; used in 壓馬路|压马路[ya4ma3lu4]; used in 壓板|压板[ya4ban3]#1178. 猜[cai1] (犭#312 青#253) to guess#1179. 偷[tou1] (亻#7 俞#855) to steal; to pilfer; to snatch; thief; stealthily#1180. 房子[fang2 zi5] (房#699 子#47) house; building (single- or two-story); apartment; room; CL:棟|栋[dong4],幢[zhuang4],座[zuo4],套[tao4],間|间[jian1]#1181. 轻[qing1] (车#180 𢀖#322) light; easy; gentle; soft; reckless; unimportant; frivolous; small in number; unstressed; neutral; to disparage#1182. 左[zuo3] (𠂇#54 工#144) surname Zuo; left; the Left (politics); east; unorthodox; queer; wrong; differing; opposite; variant of 佐[zuo3]#1183. 船[chuan2] (舟#631 𠘧#93 口#3) variant of 船[chuan2]; boat; vessel; ship; CL:條|条[tiao2],艘[sou1],隻|只[zhi1]#1184. 集[ji2] (隹#209 木#38) to gather; to collect; collected works; classifier for sections of a TV series etc: episode#1185. 足[ju4] (口#3 龰#32) excessive; (bound form) foot; leg; sufficient; ample; as much as; fully#1186. 刻[ke4] (亥#212 刂#67) quarter (hour); moment; to carve; to engrave; to cut; oppressive; classifier for short time intervals#1187. 决定[jue2 ding4] (决#792 定#347) to decide (to do something); to resolve; decision; CL:個|个[ge4],項|项[xiang4]; certainly#1188. 量[liang2] (旦#102 里#158) to measure; capacity; quantity; amount; to estimate; abbr. for 量詞|量词[liang4 ci2], classifier (in Chinese grammar); measure word#1189. 费[fei4] (弗#852 贝#189) surname Fei; to cost; to spend; fee; wasteful; expenses#1190. 班[ban1] (王#97 ② 王#97) surname Ban; team; class; grade; (military) squad; work shift; CL:個|个[ge4]; classifier for groups of people and scheduled transport vehicles#1191. 设[she4] (讠#36 殳#95) to set up; to put in place; (math.) given; suppose; if#1192. 亮[liang4] (亠#26 口#3 冖#96 几#141) bright; light; to shine; to flash; loud and clear; to show (one's passport etc); to make public (one's views etc)#1193. 努[nu3] (奴#994 力#78) to exert; to strive#1194. 竟[jing4] (音#337 儿#50) unexpectedly; actually; to go so far as to; indeed#1195. 只要[zhi3 yao4] (只#164 要#103) so long as; provided; if#1196. 尃[fu1] (甫#912 寸#42) to state to, to announce#1197. 词[ci2] (讠#36 司#621) old variant of 詞|词[ci2]; word; statement; speech; lyrics; a form of lyric poetry, flourishing in the Song dynasty 宋朝[Song4chao2] (CL:首[shou3])#1198. 回去[hui2 qu5] (回#260 去#80) to return; to go back#1199. 级[ji2] (纟#91 及#465) level; grade; rank; step (of stairs); CL:個|个[ge4]; classifier: step, level#1200. 之一[zhi1 yi1] (之#256 一#1) one of (sth); one out of a multitude; one (third, quarter, percent etc)#1201. 𬜯(艹#150 两#320) #1202. 继[ji4] (纟#91 𠃊#258 米#240) to continue; to follow after; to go on with; to succeed; to inherit; then; afterwards#1203. 季[ji4] (禾#107 子#47) surname Ji; season; the last month of a season; fourth or youngest amongst brothers; classifier for seasonal crop yields#1204. 身上[shen1 shang5] (身#281 上#56) on the body; at hand; among#1205. 危[wei1] (厃#1135 㔾#252) surname Wei; danger; to endanger; Taiwan pr. [wei2]#1206. 恶[e3] (亚#732 心#61) used in 惡心|恶心[e3 xin1]; evil; fierce; vicious; ugly; coarse; to harm; to hate; to loathe; ashamed; to fear; to slander#1207. 个人[ge4 ren2] (个#43 人#6) individual; personal; oneself#1208. 兄弟[xiong1 di4] (兄#111 弟#756) brothers; younger brother; CL:個|个[ge4]; I, me (humble term used by men in public speech); brotherly; fraternal#1209. 显[xian3] (日#15 业#413) to make visible; to reveal; prominent; conspicuous; (prefix) phanero-#1210. 团[tuan2] (囗#86 才#193) round; lump; ball; to roll into a ball; to gather; regiment; group; society; classifier for a lump or a soft mass: wad (of paper), ball (of wool), cloud (of smoke); dumpling#1211. 美国[mei3 guo2] (美#541 国#612) United States; USA; US#1212. 联[lian2] (耳#235 关#329) (bound form) to ally oneself with; to unite; to combine; to join; (bound form) (poetry) antithetical couplet#1213. 脸[lian3] (月#40 佥#561) face; CL:張|张[zhang1],個|个[ge4]#1214. 热[re4] (执#826 灬#134) to warm up; to heat up; hot (of weather); heat; fervent#1215. 弹[dan4] (弓#237 单#693) crossball; bullet; shot; shell; ball; to pluck (a string); to play (a string instrument); to spring or leap; to shoot (e.g. with a catapult); (of cotton) to fluff or tease; to flick; to flip; to accuse; to impeach; elastic (of materials)#1216. 吕[lu:3] (口#3 口#3) surname Lü; pitchpipe, pitch standard, one of the twelve semitones in the traditional tone system#1217. 图[tu2] (囗#86 冬#697) diagram; picture; drawing; chart; map; CL:張|张[zhang1]; to plan; to scheme; to attempt; to pursue; to seek#1218. 祭[zhai4] (𠂊#12 冫#81 ② 示#391) surname Zhai; to offer a sacrifice to (gods or ancestors); (in classical novels) to recite an incantation to activate a magic weapon; to wield (sth magic); (bound form) ceremony; (Tw) (bound form) (celebratory) festival#1219. 超[chao1] (走#147 召#582) to exceed; to overtake; to surpass; to transcend; to pass; to cross; ultra-; super-#1220. 𢦏(戈#159 十#10) #1221. 努力[nu3 li4] (努#1193 力#78) to make an effort; to try hard; to strive; hard-working; conscientious#1222. 破[po4] (石#348 皮#289) broken; damaged; worn out; lousy; rotten; to break, split or cleave; to get rid of; to destroy; to break with; to defeat; to capture (a city etc); to expose the truth of#1223. 据[ju4] (扌#52 居#768) variant of 據|据[ju4]; used in 拮据[jie2 ju1]; variant of 據|据[ju4]; according to; to act in accordance with; to depend on; to seize; to occupy#1224. 基[ji1] (其#338 土#13) (bound form) base; foundation; (bound form) radical (chemistry); (bound form) gay (loanword from English into Cantonese, Jyutping: gei1, followed by orthographic borrowing from Cantonese)#1225. 曹[cao2] (一#1 曲#955 日#15) surname Cao; Zhou Dynasty vassal state; class or grade; generation; plaintiff and defendant (old); government department (old)#1226. 语[yu3] (讠#36 吾#1026) dialect; language; speech; (literary) to tell; to let (sb) know#1227. 画[hua4] (一#1 凵#90 田#168) to draw; to paint; picture; painting (CL:幅[fu2],張|张[zhang1]); to draw (a line) (variant of 劃|划[hua4]); stroke of a Chinese character (variant of 劃|划[hua4]); (calligraphy) horizontal stroke (variant of 劃|划[hua4])#1228. 刚才[gang1 cai2] (刚#495 才#193) just now; a moment ago; just now (variant of 剛才|刚才[gang1 cai2])#1229. 烦[fan2] (火#187 页#311) to feel vexed; to bother; to trouble; superfluous and confusing; edgy#1230. 沙[sha1] (氵#60 少#360) surname Sha; granule; hoarse; raspy; sand; powder; CL:粒[li4]; abbr. for Tsar or Tsarist Russia; (dialect) to sift; to sieve#1231. 屁[pi4] (尸#99 比#261) fart; flatulence; nonsense; (usu. in the negative) what; (not) a damn thing#1232. 器[qi4] (吅#498 犬#279 吅#498) device; tool; utensil; CL:臺|台[tai2]#1233. 练[lian4] (纟#91 𫠣#1171) to practice; to train; to drill; to perfect (one's skill); exercise; (literary) white silk; to boil and scour raw silk#1234. 如此[ru2 ci3] (如#292 此#221) like this; so; such#1235. 味[wei4] (口#3 未#596) taste; smell; (fig.) (noun suffix) feel; quality; sense; (TCM) classifier for ingredients of a medicine prescription#1236. 仍[reng2] (亻#7 乃#485) still; yet; to remain; (literary) frequently; often#1237. 根本[gen1 ben3] (根#892 本#343) fundamental; basic; root; simply; absolutely (not); (not) at all; CL:個|个[ge4]#1238. 亢[kang4] (亠#26 几#141) surname Kang; Kang, one of the 28 constellations; high; overbearing; excessive#1239. 嘴[zui3] (口#3 觜#1240) mouth; beak; nozzle; spout (of teapot etc); CL:張|张[zhang1],個|个[ge4]#1240. 觜[zi1] (此#221 角#390) number 20 of the 28 constellations 二十八宿, approx. Orion 獵戶座|猎户座; variant of 嘴[zui3]#1241. 无法[wu2 fa3] (无#424 法#443) unable to; incapable of#1242. 冷[leng3] (冫#81 令#496) surname Leng; cold#1243. 容[rong2] (宀#66 谷#888) surname Rong; to hold; to contain; to allow; to tolerate; appearance; look; countenance#1244. 晚上[wan3 shang5] (晚#528 上#56) evening; night; CL:個|个[ge4]; in the evening#1245. 梦[meng4] (林#421 夕#71) dream (CL:場|场[chang2],個|个[ge4]); (bound form) to dream#1246. 迎[ying2] (辶#33 卬#1035) to welcome; to meet; to forge ahead (esp. in the face of difficulties); to meet face to face#1247. 没什么[mei2 shen2 me5] (没#105 什#89 么#58) it doesn't matter; it's nothing; never mind; think nothing of it; it's my pleasure; you're welcome#1248. 了解[liao3 jie3] (了#9 解#706) to understand; to realize; to find out; to understand; to realize; to find out#1249. 至少[zhi4 shao3] (至#108 少#360) at least; (to say the) least#1250. 造[zao4] (辶#33 告#336) to make; to build; to manufacture; to invent; to fabricate; to go to; party (in a lawsuit or legal agreement); crop; classifier for crops#1251. 亲爱[qin1 ai4] (亲#402 爱#406) dear; beloved; darling#1252. 君[jun1] (尹#857 口#3) monarch; lord; gentleman; ruler#1253. 丽[li2] (一#1 冂#57 丶#4 冂#57 丶#4) Korea; beautiful#1254. 伊[yi1] (亻#7 尹#857) surname Yi; abbr. for 伊拉克[Yi1la1ke4], Iraq; abbr. for 伊朗[Yi1lang3], Iran; (old) third person singular pronoun ("he" or "she"); second person singular pronoun ("you"); (May 4th period) third person singular feminine pronoun ("she"); (Classical Chinese) introductory particle with no specific meaning; (preceding a noun) that#1255. 办法[ban4 fa3] (办#490 法#443) method; way (of doing sth); means; CL:條|条[tiao2],個|个[ge4]#1256. 唯一[wei2 yi1] (唯#1146 一#1) only; sole#1257. 斿[you2] (方#198 𠂉#82 子#47) scallops along lower edge of flag#1258. 游[you2] (氵#60 斿#1257) surname You; to swim; variant of 遊|游[you2]; to walk; to tour; to roam; to travel#1259. 价[jie4] (亻#7 介#609) (literary) messenger; servant; price; value; (chemistry) valence; particle used between an adverb and a verb or adjective; (dialect) particle used after a negative adverb such as 不[bu4] or 別|别[bie2] without any other following element#1260. 舍[she3] (人#6 舌#199) to give up; to abandon; to give alms; surname She; old variant of 捨|舍[she3]; (bound form) residence; house; (bound form) my (in speaking of relatives younger than oneself); (archaic) unit of distance equal to 30 li 里[li3]#1261. 控[kong4] (扌#52 空#716) to control; to accuse; to charge; to sue; to invert a container to empty it; (suffix) (slang) buff; enthusiast; devotee; -phile or -philia#1262. 排[pai2] (扌#52 非#387) a row; a line; to set in order; to arrange; to line up; to eliminate; to drain; to push open; platoon; raft; classifier for lines, rows etc#1263. 等等[deng3 deng3] (等#439 等#439) et cetera; and so on ...; wait a minute!; hold on!#1264. 科[ke1] (禾#107 斗#709) branch of study; administrative section; division; field; branch; stage directions; family (taxonomy); rules; laws; to mete out (punishment); to levy (taxes etc); to fine sb; CL:個|个[ge4]#1265. 察[cha2] (宀#66 祭#1218) short name for Chahar Province 察哈爾|察哈尔[Cha2 ha1 er3]; to examine; to inquire; to observe; to inspect; to look into; obvious; clearly evident; variant of 察[cha2]#1266. 戉[yue4] variant of 鉞|钺[yue4]#1267. 越[yue4] (走#147 戉#1266) generic word for peoples or states of south China or south Asia at different historical periods; abbr. for Vietnam 越南; to exceed; to climb over; to surpass; the more... the more#1268. 丝[si1] (② ② 一#1) silk; thread-like thing; (cuisine) shreds or julienne strips; classifier: a trace (of smoke etc), a tiny bit etc#1269. 赶[gan3] (走#147 干#162) to overtake; to catch up with; to hurry; to rush; to try to catch (the bus etc); to drive (cattle etc) forward; to drive (sb) away; to avail oneself of (an opportunity); until; by (a certain time)#1270. 厌[yan4] (厂#219 犬#279) (bound form) to loathe; to be fed up with; (literary) to satiate; to satisfy#1271. 卷[juan3] (龹#989 㔾#252) to roll up; roll; classifier for small rolled things (wad of paper money, movie reel etc); scroll; book; volume; chapter; examination paper; classifier for books, paintings: volume, scroll; to roll up; to sweep up; to carry along; a roll; classifier for rolls, spools etc#1272. 祝[zhu4] (礻#394 兄#111) surname Zhu; to pray for; to wish (sb bon voyage, happy birthday etc); person who invokes the spirits during sacrificial ceremonies#1273. 私[si1] (禾#107 厶#17) personal; private; selfish#1274. 码[ma3] (石#348 马#70) weight; number; code; to pile; to stack; classifier for length or distance (yard), happenings etc#1275. 兵[bing1] (丘#1175 八#41) soldiers; a force; an army; weapons; arms; military; warlike; CL:個|个[ge4]#1276. 重要[zhong4 yao4] (重#566 要#103) important; significant; major#1277. 不能[bu4 neng2] (不#23 能#155) cannot; must not; should not#1278. 满[man3] (氵#60 𬜯#1201) Manchu ethnic group; to fill; full; filled; packed; fully; completely; quite; to reach the limit; to satisfy; satisfied; contented#1279. 好好[hao3 hao3] (好#69 好#69) well; carefully; nicely; properly#1280. 鸡[ji1] (又#34 鸟#804) fowl; chicken; CL:隻|只[zhi1]; (slang) prostitute#1281. 答[da1] (竹#191 合#153) bound form having the same meaning as the free word 答[da2], used in 答應|答应[da1ying5], 答理[da1li5] etc; to answer; to reply; to respond#1282. 里面[li3 mian4] (里#158 面#428) variant of 裡面|里面[li3mian4]; inside; interior; also pr. [li3 mian5]#1283. 众[zhong4] (人#6 从#133) abbr. for 眾議院|众议院[Zhong4 yi4 yuan4], House of Representatives; (bound form) crowd; multitude; (bound form) many; numerous; variant of 眾|众[zhong4]#1284. 观[guan4] (又#34 见#123) surname Guan; to look at; to watch; to observe; to behold; to advise; concept; point of view; outlook; Taoist monastery; palace gate watchtower; platform#1285. 有些[you3 xie1] (有#63 些#277) some; somewhat#1286. 库[ku4] (广#194 车#180) warehouse; storehouse; (file) library#1287. 到底[dao4 di3] (到#127 底#800) finally; in the end; when all is said and done; after all; to the end; to the last#1288. 灵[ling2] (彐#217 火#187) quick; alert; efficacious; effective; to come true; spirit; departed soul; coffin#1289. 骨[gu1] (⑤ 月#40) used in 骨碌碌[gu1lu4lu4]; used in 骨碌[gu1lu5]; bone#1290. 失去[shi1 qu4] (失#618 去#80) to lose#1291. 洗[xi3] (氵#60 先#259) to wash; to bathe; to develop (photographs); to shuffle (cards etc); to erase (a recording)#1292. 继续[ji4 xu4] (继#1202 续#1169) to continue; to proceed with; to go on with#1293. 一一[yi1 yi1] (一#1 一#1) one by one; one after another#1294. 只有[zhi3 you3] (只#164 有#63) only have ...; there is only ...; (used in combination with 才[cai2]) it is only if one ... (that one can ...) (Example: 只有通過治療才能痊愈|只有通过治疗才能痊愈[zhi3 you3 tong1 guo4 zhi4 liao2 cai2 neng2 quan2 yu4] "the only way to cure it is with therapy"); it is only ... (who ...) (Example: 只有男性才有此需要[zhi3 you3 nan2 xing4 cai2 you3 ci3 xu1 yao4] "only men would have such a requirement"); (used to indicate that one has no alternative) one can only (do a certain thing) (Example: 只有屈服[zhi3 you3 qu1 fu2] "the only thing you can do is give in")#1295. 结束[jie2 shu4] (结#687 束#636) termination; to finish; to end; to conclude; to close#1296. 卑[bei1] (白#20 丿#2 十#10) low; base; vulgar; inferior; humble#1297. 打电话[da3 dian4 hua4] (打#272 电#433 话#296) to make a telephone call#1298. 昨[zuo2] (日#15 乍#186) yesterday#1299. 来说(来#87 说#125) #1300. 呈[cheng2] (口#3 王#97) to present to a superior; memorial; petition; to present (a certain appearance); to assume (a shape); to be (a certain color)#1301. 节目[jie2 mu4] (节#766 目#72) (TV or radio) program; show; item; act; segment; number (on the program of a concert, variety show or cultural event); a planned activity (in one's schedule); CL:個|个[ge4],場|场[chang3],項|项[xiang4],臺|台[tai2],套[tao4],檔|档[dang4]#1302. 板[ban3] (木#38 反#481) board; plank; plate; shutter; table tennis bat; clappers (music); CL:塊|块[kuai4]; accented beat in Chinese music; hard; stiff; to stop smiling or look serious; see 老闆|老板, boss; to catch sight of in a doorway (old)#1303. 参加[can1 jia1] (参#917 加#408) to participate; to take part; to join#1304. 妹[mei4] (女#29 未#596) younger sister#1305. 之间[zhi1 jian1] (之#256 间#384) (after a noun) between; among; amid; (used after certain bisyllabic words to form expressions indicating a short period of time, e.g. 彈指之間|弹指之间[tan2zhi3 zhi1 jian1])#1306. 镸[chang2] (④ 𠫔#106) "long" or "to grow" radical in Chinese characters (Kangxi radical 168)#1307. 欢迎[huan1 ying2] (欢#518 迎#1246) to welcome; welcome#1308. 标[biao1] (木#38 示#391) mark; sign; label; to mark with a symbol, label, lettering etc; to bear (a brand name, registration number etc); prize; award; bid; target; quota; (old) the topmost branches of a tree; visible symptom; classifier for military units#1309. 即[ji2] (⑤ 卩#254) namely; that is; i.e.; prompt; at once; at present; even if; prompted (by the occasion); to approach; to come into contact; to assume (office); to draw near#1310. 齐[qi2] (文#65 丿#2 丨#11) (name of states and dynasties at several different periods); surname Qi; neat; even; level with; identical; simultaneous; all together; to even sth out#1311. 迶[you4] (辶#33 有#63) to walk#1312. 随[sui2] (阝#46 迶#1311) surname Sui; to follow; to comply with; varying according to...; to allow; subsequently#1313. 勾[gou1] (勹#19 厶#17) surname Gou; to attract; to arouse; to tick; to strike out; to delineate; to collude; variant of 鉤|钩[gou1], hook; used in 勾當|勾当[gou4dang4]#1314. 松[song1] (木#38 公#419) surname Song; pine; CL:棵[ke1]; loose; to loosen; to relax; floss (dry, fluffy food product made from shredded, seasoned meat or fish, used as a topping or filling)#1315. 𠀐(中#174 一#1) #1316. 休[xiu1] (亻#7 木#38) surname Xiu; to rest; to stop doing sth for a period of time; to cease; (imperative) don't#1317. 弃[qi4] (𠫓#557 廾#128) to abandon; to relinquish; to discard; to throw away#1318. 𫇦(艹#150 冖#96) #1319. 𠦝(十#10 早#350) #1320. 印[yin4] (③ 卩#254) surname Yin; abbr. for 印度[Yin4du4], India; to print; to mark; to engrave; a seal; a print; a stamp; a mark; a trace; image#1321. 读[dou4] (讠#36 卖#606) comma; phrase marked by pause; to read out; to read aloud; to read; to attend (school); to study (a subject in school); to pronounce#1322. 甚[shen2] (⑤ 匹#1009) variant of 什[shen2]; excessive; undue; to exceed; to be more than; very; extremely; (dialect) what; whatever (Taiwan pr. [shen2])#1323. 正在[zheng4 zai4] (正#251 在#55) to be in the process of (doing sth); to be currently ...-ing#1324. 精[jing1] (米#240 青#253) essence; extract; vitality; energy; semen; sperm; mythical goblin spirit; highly perfected; elite; the pick of sth; proficient (refined ability); extremely (fine); selected rice (archaic)#1325. 断[duan4] (𠃊#258 米#240 斤#117) to break; to snap; to cut off; to give up or abstain from sth; to judge; (usu. used in the negative) absolutely; definitely; decidedly#1326. 威[wei1] (戌#483 女#29) power; might; prestige#1327. 迪[di2] (辶#33 由#368) to enlighten#1328. 怀[huai2] (忄#140 不#23) surname Huai; bosom; heart; mind; to think of; to harbor in one's mind; to conceive (a child)#1329. 而已[er2 yi3] (而#231 已#324) that's all; nothing more#1330. 架[jia4] (加#408 木#38) to support; frame; rack; framework; classifier for planes, large vehicles, radios etc#1331. 宗[zong1] (宀#66 示#391) surname Zong; school; sect; purpose; model; ancestor; clan; to take as one's model (in academic or artistic work); classifier for batches, items, cases (medical or legal), reservoirs#1332. 折[she2] (扌#52 斤#117) to snap; to break (a stick, a bone etc); (bound form) to sustain a loss (in business); to turn sth over; to turn upside down; to tip sth out (of a container); to break; to fracture; to snap; to suffer loss; to bend; to twist; to turn; to change direction; convinced; to convert into (currency); discount; rebate; tenth (in price); classifier for theatrical scenes; to fold; accounts book; variant of 折[zhe2]; to fold#1333. 比赛[bi3 sai4] (比#261 赛#980) competition (sports etc); match; CL:場|场[chang3],次[ci4]; to compete#1334. 街[jie1] (彳#75 圭#519 亍#300) street; CL:條|条[tiao2]#1335. 辆[liang4] (车#180 两#320) classifier for vehicles#1336. 耶[ye1] (耳#235 阝#46) (phonetic ye); interrogative particle (classical); final particle indicating enthusiasm etc#1337. 或许[huo4 xu3] (或#601 许#437) perhaps; maybe#1338. 巟[huang1] (亡#330 𫶧#797) a watery waste; to reach#1339. 荒[huang1] (艹#150 巟#1338) desolate; shortage; scarce; out of practice; absurd; uncultivated; to neglect#1340. 情况[qing2 kuang4] (情#489 况#1155) circumstances; state of affairs; situation; CL:個|个[ge4],種|种[zhong3]#1341. 荅[da1] (艹#150 合#153) variant of 答[da1]; variant of 答[da2]#1342. 逃[tao2] (辶#33 兆#692) to escape; to run away; to flee#1343. 妻子[qi1 zi3] (妻#1156 子#47) wife and children; wife#1344. 帮助[bang1 zhu4] (帮#447 助#988) assistance; aid; to help; to assist#1345. 得到[de2 dao4] (得#202 到#127) to get; to obtain; to receive#1346. 吂(亡#330 口#3) #1347. 赢[ying2] (吂#1346 月#40 贝#189 凡#833) to beat; to win; to profit#1348. 套[tao4] (大#35 镸#1306) to cover; to encase; cover; sheath; to overlap; to interleave; to model after; to copy; formula; harness; loop of rope; (fig.) to fish for; to obtain slyly; classifier for sets, collections; bend (of a river or mountain range, in place names); tau (Greek letter Ττ)#1349. 冃[mao4] (冂#57 二#27) old variant of 帽[mao4]; hat; cap#1350. 回家[hui2 jia1] (回#260 家#307) to return home#1351. 汤[tang1] (氵#60 𠃓#435) surname Tang; rushing current; soup; hot or boiling water; decoction of medicinal herbs; water in which sth has been boiled#1352. 旡[ji4] choke on something eaten#1353. 既[ji4] (⑤ 旡#1352) already; since; both... (and...)#1354. 衣服[yi1 fu5] (衣#544 服#769) clothes; CL:件[jian4],套[tao4]#1355. 呼[hu1] (口#3 乎#755) to call; to cry; to shout; to breath out; to exhale; variant of 呼[hu1]; to shout; to call out#1356. 简[jian3] (竹#191 间#384) simple; uncomplicated; letter; to choose; to select; bamboo strips used for writing (old)#1357. 承[cheng2] surname Cheng; Cheng (c. 2000 BC), third of the legendary Flame Emperors 炎帝[Yan2 di4] descended from Shennong 神農|神农[Shen2 nong2] Farmer God; to bear; to carry; to hold; to continue; to undertake; to take charge; owing to; due to; to receive#1358. 楼[lou2] (木#38 娄#821) surname Lou; house with more than 1 story; storied building; floor; CL:層|层[ceng2],座[zuo4],棟|栋[dong4]#1359. 庄[zhuang1] (广#194 土#13) variant of 莊|庄[zhuang1]; surname Zhuang; farmstead; village; manor; place of business; banker (in a gambling game); grave or solemn; holdings of a landlord (in imperial China)#1360. 贵[gui4] (𠀐#1315 贝#189) abbr. for Guizhou Province 貴州|贵州[Gui4zhou1]; expensive; (bound form) highly valued; precious; (bound form) noble; of high rank; (prefix) (honorific) your#1361. 极了[ji2 le5] (极#1003 了#9) extremely; exceedingly#1362. 冒[mao4] (冃#1349 目#72) old variant of 冒[mao4]; surname Mao; to emit; to give off; to send out (or up, forth); to brave; to face; (bound form) reckless; to falsely adopt (sb's identity etc); to feign; (literary) to cover#1363. 成功[cheng2 gong1] (成#335 功#1100) Chenggong or Chengkung town in Taitung County 臺東縣|台东县[Tai2 dong1 Xian4], southeast Taiwan; to succeed; success; successful; fruitful#1364. 迷[mi2] (辶#33 米#240) to bewilder; crazy about; fan; enthusiast; lost; confused#1365. 巩[gong3] (工#144 凡#833) surname Gong; (bound form) to fix in place; to make firm and secure#1366. 庭[ting2] (广#194 廷#831) main hall; front courtyard; law court#1367. 𠂎#1368. 背[bei1] (北#740 月#40) variant of 背[bei1]; to be burdened; to carry on the back or shoulder; the back of a body or object; to turn one's back; to hide something from; to learn by heart; to recite from memory; (slang) unlucky; hard of hearing#1369. 养[yang3] (䒑#77 夫#287 丿#2 丨#11) to raise (animals); to bring up (children); to keep (pets); to support; to give birth#1370. 长官[zhang3 guan1] (长#308 官#521) senior official; senior officer; commanding officer; CL:位[wei4]; sir (term of address for senior officer)#1371. 该死[gai1 si3] (该#327 死#271) Damn it!; damned; wretched#1372. 父母[fu4 mu3] (父#263 母#283) father and mother; parents#1373. 拜托[bai4 tuo1] (拜#1018 托#962) to request sb to do sth; please!#1374. 胡[hu2] (古#166 月#40) surname Hu; non-Han people, esp. from central Asia; reckless; outrageous; what?; why?; to complete a winning hand at mahjong (also written 和[hu2]); see 衚衕|胡同[hu2 tong4]; beard; mustache; whiskers#1375. 苗[miao2] (艹#150 田#168) Hmong or Miao ethnic group of southwest China; surname Miao; sprout#1376. 出现[chu1 xian4] (出#192 现#268) to appear; to arise; to emerge; to show up#1377. 雷[lei2] (雨#468 田#168) surname Lei; thunder; (bound form) (military) mine, as in 地雷[di4 lei2] land mine; (coll.) to shock; to stun; to astound; (Tw) (coll.) spoiler; (Tw) (coll.) to reveal plot details to (sb)#1378. 按[an4] (扌#52 安#407) to press; to push; to leave aside or shelve; to control; to restrain; to keep one's hand on; to check or refer to; according to; in the light of; (of an editor or author) to make a comment#1379. 耑(山#334 而#231) #1380. 醒[xing3] (酉#493 星#719) to wake up; to be awake; to become aware; to sober up; to come to#1381. 好像[hao3 xiang4] (好#69 像#434) as if; to seem like#1382. 尗[shu1] (上#56 小#16) old variant of 菽[shu1]; old variant of 叔[shu1]#1383. 散[san4] (龷#286 ⺼#149 攵#114) variant of 散[san4]; scattered; loose; to come loose; to fall apart; leisurely; powdered medicine; to scatter; to break up (a meeting etc); to disperse; to disseminate; to dispel; (coll.) to sack#1384. 喔[o1] (口#3 屋#898) (interjection) oh; I see (used to indicate realization, understanding); (Tw) (sentence-final particle) (used to convey a friendly tone when giving an admonition or correcting sb etc); (onom.) cry of a rooster (usu. reduplicated); Taiwan pr. [wo4]#1385. 咱[zan2] (口#3 自#142) variant of 咱[zan2]; see 咱[zan2]; I or me; we (including both the speaker and the person spoken to); variant of 咱[zan2]#1386. 独[du2] (犭#312 虫#410) alone; independent; single; sole; only#1387. 守[shou3] (宀#66 寸#42) to guard; to defend; to keep watch; to abide by the law; to observe (rules or ritual); nearby; adjoining#1388. 飞机[fei1 ji1] (飞#628 机#471) airplane; CL:架[jia4]#1389. 趣[qu4] (走#147 取#331) interesting; to interest#1390. 大人[da4 ren5] (大#35 人#6) adult; grownup; title of respect toward superiors#1391. 真是[zhen1 shi5] (真#222 是#39) indeed; truly; (coll.) (used to express disapproval, annoyance etc)#1392. 打开[da3 kai1] (打#272 开#157) to open; to show (a ticket); to turn on; to switch on#1393. 太太[tai4 tai5] (太#173 太#173) married woman; Mrs.; Madam; wife; CL:個|个[ge4],位[wei4]#1394. 𠂤(丿#2 㠯#470) #1395. 娘[niang2] (女#29 良#648) mother; young lady; (coll.) effeminate; variant of 娘[niang2]#1396. 静[jing4] (青#253 争#724) still; calm; quiet; not moving#1397. 修[xiu1] (亻#7 丨#11 夂#165 彡#373) surname Xiu; to decorate; to embellish; to repair; to build; to write; to cultivate; to study; to take (a class); variant of 修[xiu1]#1398. 似[shi4] (亻#7 以#172) used in 似的[shi4de5]; to seem; to appear; to resemble; similar; -like; pseudo-; (more) than; old variant of 似[si4]#1399. 㚘(夫#287 夫#287) #1400. 早上[zao3 shang5] (早#350 上#56) early morning; CL:個|个[ge4]#1401. 落[la4] (艹#150 洛#985) to leave out; to be missing; to leave behind or forget to bring; to lag or fall behind; colloquial reading for 落[luo4] in certain compounds; to fall or drop; (of the sun) to set; (of a tide) to go out; to lower; to decline or sink; to lag or fall behind; to fall onto; to rest with; to get or receive; to write down; whereabouts; settlement#1402. 靠[kao4] (告#336 非#387) to lean against or on; to stand by the side of; to come near to; to depend on; to trust; to fuck (vulgar); traditional military costume drama where the performers wear armor (old)#1403. 维[wei2] (纟#91 隹#209) abbr. for Uighur 維吾爾|维吾尔[Wei2wu2er3]; surname Wei; to preserve; to maintain; to hold together; dimension; vitamin (abbr. for 維生素|维生素[wei2 sheng1 su4])#1404. 丹[dan1] red; pellet; powder; cinnabar#1405. 进入[jin4 ru4] (进#412 入#505) to enter; to join; to go into#1406. 对于[dui4 yu2] (对#113 于#342) regarding; as far as (sth) is concerned; with regard to#1407. 替[ti4] (㚘#1399 日#15) to substitute for; to take the place of; to replace; for; on behalf of; to stand in for#1408. 朿[ci4] stab#1409. 糟[zao1] (米#240 曹#1225) dregs; draff; pickled in wine; rotten; messy; ruined#1410. 南[nan2] (十#10 冂#57 𢆉#836) surname Nan; used in 南無|南无[na1mo2]; Taiwan pr. [na2]; south#1411. 敫[jiao3] (白#20 方#198 攵#114) surname Jiao; bright; glittery; Taiwan pr. [jiao4]#1412. 型[xing2] (刑#1170 土#13) mold; type; style; model#1413. 乘[cheng2] (禾#107 北#740) surname Cheng; to ride; to mount; to make use of; to avail oneself of; to take advantage of; to multiply (math.); Buddhist sect or creed; (archaic) four horse military chariot; (archaic) four; generic term for history books; old variant of 乘[cheng2]#1414. 董[dong3] (艹#150 重#566) surname Dong; to supervise; to direct; director#1415. 展[zhan3] (尸#99 龷#286 𠄌#664 乀#49 丿#2) surname Zhan; to spread out; to open up; to exhibit; to put into effect; to postpone; to prolong; exhibition#1416. 不行[bu4 xing2] (不#23 行#316) won't do; be out of the question; be no good; not work; not be capable#1417. 岛[dao3] (④ 山#334) variant of 島|岛[dao3]; island; CL:個|个[ge4],座[zuo4]#1418. 追[dui1] (辶#33 𠂤#1394) to sculpt; to carve; musical instrument (old); to chase; to pursue; to look into; to investigate; to reminisce; to recall; to court (one's beloved); to binge-watch (a TV drama); retroactively; posthumously#1419. 刚刚[gang1 gang5] (刚#495 刚#495) just recently; just a moment ago#1420. 行动[xing2 dong4] (行#316 动#444) operation; action; CL:個|个[ge4]; to move about; mobile#1421. 当时[dang1 shi2] (当#299 时#224) then; at that time; while; at once; right away#1422. 瓦[wa3] roof tile; abbr. for 瓦特[wa3 te4]#1423. 作为[zuo4 wei2] (作#359 为#104) one's conduct; deed; activity; accomplishment; achievement; to act as; as (in the capacity of); qua; to view as; to look upon (sth as); to take sth to be#1424. 叔[shu1] (尗#1382 又#34) uncle; father's younger brother; husband's younger brother; Taiwan pr. [shu2]#1425. 脚[jiao3] (月#40 却#624) foot; leg (of an animal or an object); base (of an object); CL:雙|双[shuang1],隻|只[zhi1]; classifier for kicks; role (variant of 角[jue2])#1426. 㐌[ta1] (𠂉#82 也#28) variant of 它[ta1]#1427. 说话[shuo1 hua4] (说#125 话#296) to speak; to say; to talk; to gossip; to tell stories; talk; word#1428. 程[cheng2] (禾#107 呈#1300) surname Cheng; rule; order; regulations; formula; journey; procedure; sequence#1429. 冰[bing1] (冫#81 水#457) ice; CL:塊|块[kuai4]; to chill sth; (of an object or substance) to feel cold; (of a person) cold; unfriendly; (slang) methamphetamine; variant of 冰[bing1]#1430. 念[nian4] (今#370 心#61) variant of 念[nian4], to read aloud; to read; to study (a subject); to attend (a school); to read aloud; to give (sb) a tongue-lashing (CL:頓|顿[dun4]); to miss (sb); idea; remembrance; twenty (banker's anti-fraud numeral corresponding to 廿[nian4])#1431. 末[mo4] tip; end; final stage; latter part; inessential detail; powder; dust; opera role of old man#1432. 闻[wen2] (门#51 耳#235) surname Wen; to hear; news; well-known; famous; reputation; fame; to smell; to sniff at#1433. 纪[ji3] (纟#91 己#229) surname Ji; also pr. [Ji4]; order; discipline; age; era; period; to chronicle#1434. 约会[yue1 hui4] (约#575 会#76) appointment; engagement; date; CL:次[ci4],個|个[ge4]; to arrange to meet#1435. 骗[pian4] (马#70 扁#817) to cheat; to swindle; to deceive; to get on (a horse etc) by swinging one leg over#1436. 囟[xin4] (丿#2 囗#86 㐅#146) fontanel (gap between the bones of an infant's skull)#1437. 进去[jin4 qu4] (进#412 去#80) to go in#1438. 志[zhi4] (士#205 心#61) aspiration; ambition; the will; sign; mark; to record; to write a footnote#1439. 讨厌[tao3 yan4] (讨#1027 厌#1270) to dislike; to loathe; disagreeable; troublesome; annoying#1440. 杂[za2] (九#455 朩#197) variant of 雜|杂[za2]; mixed; miscellaneous; various; to mix#1441. 傻[sha3] (亻#7 𡕩#1444) foolish#1442. 夊[sui1] see 夂[zhi3]#1443. 𠒆(囟#1436 儿#50) #1444. 𡕩(𠒆#1443 夊#1442) #1445. 臣[chen2] surname Chen; state official or subject in dynastic China; I, your servant (used in addressing the sovereign); Kangxi radical 131#1446. 惊[jing1] (忄#140 京#131) to startle; to be frightened; to be scared; alarm#1447. 巧[qiao3] (工#144 丂#379) opportunely; coincidentally; as it happens; skillful; timely#1448. 网[wang3] (冂#57 㐅#146 㐅#146) net; network#1449. 童[tong2] (立#122 里#158) surname Tong; child#1450. 博[bo2] (十#10 尃#1196) (bound form) abundant; plentiful; extensive; wide; to win; to gain; to play; to gamble; learned; well-read; (bound form) doctoral degree (abbr. for 博士[bo2shi4]); (bound form) blog (abbr. for 博客[bo2ke4]); old variant of 博[bo2]#1451. 痛[tong4] (疒#389 甬#627) ache; pain; sorrow; deeply; thoroughly#1452. 卯[mao3] (𠂎#1367 卩#254) mortise (slot cut into wood to receive a tenon); 4th earthly branch: 5-7 a.m., 2nd solar month (6th March-4th April), Year of the Rabbit; ancient Chinese compass point: 90° (east); (coll.) to concentrate one's strength (variant of 鉚|铆[mao3]); variant of 卯[mao3]; old variant of 卯[mao3]#1453. 漂[piao1] (氵#60 票#835) to float; to drift; to bleach; used in 漂亮[piao4liang5]#1454. 吻[wen3] (口#3 勿#491) kiss; to kiss; mouth; variant of 吻[wen3]#1455. 深[shen1] (氵#60 罙#848) old variant of 深[shen1]; deep (lit. and fig.)#1456. 举[ju3] (兴#677 二#27 丨#11) variant of 舉|举[ju3]; to lift; to hold up; to cite; to enumerate; to act; to raise; to choose; to elect; act; move; deed#1457. 照片[zhao4 pian4] (照#870 片#572) photograph; picture; CL:張|张[zhang1],套[tao4],幅[fu2]#1458. 狱[yu4] (犭#312 讠#36 犬#279) prison#1459. 不同[bu4 tong2] (不#23 同#482) different; distinct; not the same; not alike#1460. 凶手[xiong1 shou3] (凶#426 手#211) murderer; assassin#1461. 玄[xuan2] (亠#26 幺#363) black; mysterious#1462. 帅[shuai4] (丨#11 丿#2 巾#151) surname Shuai; (bound form) commander-in-chief; (bound form) to lead; to command; handsome; graceful; dashing; elegant; (coll.) cool!; sweet!; (Chinese chess) general (on the red side, equivalent to a king in Western chess)#1463. 听说[ting1 shuo1] (听#273 说#125) to hear (sth said); one hears (that); hearsay; listening and speaking#1464. 那边[na4 bian5] (那#79 边#589) over there; yonder#1465. 抢[qiang1] (扌#52 仓#520) (literary) to knock against (esp. to knock one's head on the ground in grief or rage); opposite in direction; contrary; to fight over; to rush; to scramble; to grab; to rob; to snatch#1466. 择[ze2] (扌#52 𠬤#991) to select; to choose; to pick over; to pick out; to differentiate; to eliminate; also pr. [zhai2]#1467. 卒[zu2] (𠅃#1468 十#10) variant of 卒[zu2]; variant of 猝[cu4]; soldier; servant; to finish; to die; finally; at last; pawn in Chinese chess#1468. 𠅃(亠#26 从#133) #1469. 㳟(共#617 氺#333) #1470. 暴[bao4] (日#15 㳟#1469) surname Bao; sudden; violent; cruel; to show or expose; to injure; variant of 曝[pu4]#1471. 麦[mai4] (龶#195 夂#165) surname Mai; wheat; barley; oats; mic (abbr. for 麥克風|麦克风[mai4ke4feng1])#1472. 顿[dun4] (屯#1141 页#311) to stop; to pause; to arrange; to lay out; to kowtow; to stamp (one's foot); at once; classifier for meals, beatings, scoldings etc: time, bout, spell, meal#1473. 脱[tuo1] (月#40 兑#120) to shed; to take off; to escape; to get away from#1474. 伦[lun2] (亻#7 仑#644) human relationship; order; coherence#1475. 怎样[zen3 yang4] (怎#275 样#264) how; what kind#1476. ·(·#1476) #1477. 尸体[shi1 ti3] (尸#99 体#683) corpse; dead body#1478. 莱[lai2] (艹#150 来#87) name of weed plant (fat hen, goosefoot, pigweed etc); Chenopodium album#1479. 改变[gai3 bian4] (改#1015 变#600) to change; to alter; to transform#1480. 确定[que4 ding4] (确#739 定#347) definite; certain; fixed; to fix (on sth); to determine; to be sure; to ensure; to make certain; to ascertain; to clinch; to recognize; to confirm; OK (on computer dialog box)#1481. 懂[dong3] (忄#140 董#1414) to understand; to comprehend#1482. 导[dao3] (巳#200 寸#42) to transmit; to lead; to guide; to conduct; to direct#1483. 旁[pang2] (亠#26 丷#31 冖#96 方#198) one side; other; different; lateral component of a Chinese character (such as 刂[dao1], 亻[ren2] etc)#1484. 案子[an4 zi5] (案#795 子#47) long table; counter; (coll.) case (criminal, medical etc); matter; project; job#1485. 瓜[gua1] melon; gourd; squash; (slang) a piece of gossip#1486. 尚[shang4] (⺌#179 冋#425) surname Shang; still; yet; to value; to esteem#1487. 升[sheng1] (丿#2 廾#128) to ascend; to rise; to promote; to elevate; liter; unit of dry measure for grain (= one liter or one-tenth dou 斗[dou3]); to ascend; to rise (variant of 升[sheng1]); to promote; to elevate (variant of 升[sheng1]); to ascend; to rise (variant of 升[sheng1]); to promote; to elevate (variant of 升[sheng1])#1488. 第二[di4 er4] (第#539 二#27) second; number two; next; secondary#1489. 番[pan1] (釆#1032 田#168) surname Pan; (bound form) foreign (non-Chinese); barbarian; classifier for processes or actions that take time and effort; (classifier) a kind; a sort; (classifier) (used after the verb 翻[fan1] to indicate how many times a quantity doubles, as in 翻一番[fan1 yi1 fan1] "to double")#1490. 原因[yuan2 yin1] (原#646 因#242) cause; origin; root cause; reason; CL:個|个[ge4]#1491. 碰[peng4] (石#348 並#1071) variant of 碰[peng4]; to touch; to meet with; to bump; old variant of 碰[peng4]#1492. 恐[kong3] (巩#1365 心#61) afraid; frightened; to fear#1493. 㐱(人#6 彡#373) #1494. 加入[jia1 ru4] (加#408 入#505) to become a member; to join; to mix into; to participate in; to add in#1495. 多久[duo1 jiu3] (多#204 久#533) (of time) how long?; (not) a long time#1496. 隶[li4] variant of 隸|隶[li4]; (bound form) a person in servitude; low-ranking subordinate; (bound form) to be subordinate to; (bound form) clerical script (the style of characters intermediate between ancient seal and modern regular characters)#1497. 姆[m1] (女#29 母#283) used in 姆媽|姆妈[m1ma1]; (old) female tutor; used in 保姆[bao3mu3]#1498. 形[xing2] (开#157 彡#373) to appear; to look; form; shape#1499. 一旦[yi1 dan4] (一#1 旦#102) in case (sth happens); if; once (sth happens, then...); when; in a short time; in one day#1500. 辰[chen2] (厂#219 二#27 𠄌#664 乀#49 丿#2) 5th earthly branch: 7-9 a.m., 3rd solar month (5th April-4th May), year of the Dragon; ancient Chinese compass point: 120°#1501. 绝对[jue2 dui4] (绝#961 对#113) absolute; unconditional#1502. 困[kun4] (囗#86 木#38) to trap; to surround; hard-pressed; stranded; destitute; sleepy; tired#1503. 爻[yao2] (㐅#146 乂#53) the solid and broken lines of the eight trigrams 八卦[ba1 gua4], e.g. ☶#1504. 聊[liao2] (耳#235 卯#1452) (coll.) to chat; (literary) temporarily; for a while; (literary) somewhat; slightly; (literary) to depend upon#1505. 低[di1] (亻#7 氐#667) low; beneath; to lower (one's head); to let droop; to hang down; to incline#1506. 防[fang2] (阝#46 方#198) to protect; to defend; to guard against; to prevent#1507. 吴[wu2] (口#3 天#124) surname Wu; area comprising southern Jiangsu, northern Zhejiang and Shanghai; name of states in southern China at different historical periods#1508. 房间[fang2 jian1] (房#699 间#384) room; CL:間|间[jian1],個|个[ge4]#1509. 亏[kui1] (一#1 丂#379) to lose (money); to have a deficit; to be deficient; to treat unfairly; luckily; fortunately; thanks to; (used to introduce an ironic remark about sb who has fallen short of expectations)#1510. 漂亮[piao4 liang5] (漂#1453 亮#1192) pretty; beautiful#1511. 焦[jiao1] (隹#209 灬#134) surname Jiao; burnt; scorched; charred; worried; anxious; coke; joule (abbr. for 焦耳[jiao1 er3])#1512. 华[hua2] (化#488 十#10) abbr. for China; Mount Hua 華山|华山[Hua4 Shan1] in Shaanxi; surname Hua; old variant of 花[hua1]; flower; magnificent; splendid; flowery#1513. 检[jian3] (木#38 佥#561) to check; to examine; to inspect; to exercise restraint#1514. 轮[lun2] (车#180 仑#644) wheel; disk; ring; steamship; to take turns; to rotate; classifier for big round objects: disk, or recurring events: round, turn#1515. 总是[zong3 shi4] (总#625 是#39) always#1516. 死亡[si3 wang2] (死#271 亡#330) to die; death#1517. 喿[sao4] (品#858 木#38) chirping of birds#1518. 归[gui1] (丨#11 丿#2 彐#217) surname Gui; to return; to go back to; to give back to; (of a responsibility) to be taken care of by; to belong to; to gather together; (used between two identical verbs) despite; to marry (of a woman) (old); division on the abacus with a one-digit divisor#1519. 他妈的[ta1 ma1 de5] (他#48 妈#319 的#22) (taboo curse) damn it!; fucking#1520. 甚至[shen4 zhi4] (甚#1322 至#108) even; so much so that#1521. 真正[zhen1 zheng4] (真#222 正#251) genuine; real; true; really; indeed#1522. 陪[pei2] (阝#46 咅#576) to accompany; to keep sb company; to assist; old variant of 賠|赔[pei2]#1523. 剧[ju4] (居#768 刂#67) theatrical work (play, opera, TV series etc); dramatic (change, increase etc); acute; severe#1524. 苦[ku3] (艹#150 古#166) bitter; hardship; pain; to suffer; to bring suffering to; painstakingly#1525. 方式[fang1 shi4] (方#198 式#531) way; method; manner; mode; pattern (of behavior etc); CL:種|种[zhong3]#1526. 旧[jiu4] (丨#11 日#15) old; opposite: new 新; former; worn (with age)#1527. 保证[bao3 zheng4] (保#620 证#674) guarantee; to guarantee; to ensure; to safeguard; to pledge; CL:個|个[ge4]#1528. 验[yan4] (马#70 佥#561) variant of 驗|验[yan4]; to examine; to test; to check#1529. 歺[can1] (⺊#45 夕#71) second-round simplified character for 餐[can1]; old variant of 歹[dai3]#1530. 𣦼(歺#1529 又#34) #1531. 政[zheng4] (正#251 攵#114) political; politics; government#1532. 岂[kai3] (山#334 己#229) old variant of 愷|恺[kai3]; old variant of 凱|凯[kai3]; how? (emphatic question)#1533. 败[bai4] (贝#189 攵#114) to defeat; to damage; to lose (to an opponent); to fail; to wither#1534. 领[ling3] (令#496 页#311) neck; collar; to lead; to receive; classifier for clothes, mats, screens etc#1535. 进来[jin4 lai2] (进#412 来#87) to come in#1536. 餐[can1] (𣦼#1530 食#1053) meal; to eat; classifier for meals#1537. 咱们[zan2 men5] (咱#1385 们#64) we or us (including both the speaker and the person(s) spoken to); (dialect) I or me; (dialect) (in a coaxing or familiar way) you; also pr. [za2 men5]#1538. 𢆶(幺#363 幺#363) #1539. 料[liao4] (米#240 斗#709) material; stuff; grain; feed; to expect; to anticipate; to guess#1540. 寻[xun2] (彐#217 寸#42) to search; to look for; to seek#1541. 灯[deng1] (火#187 丁#62) lamp; light; lantern; CL:盞|盏[zhan3]#1542. 纸[zhi3] (纟#91 氏#472) variant of 紙|纸[zhi3]; paper (CL:張|张[zhang1],沓[da2]); classifier for documents, letters etc#1543. 看来[kan4 lai5] (看#176 来#87) apparently; it seems that#1544. 进行[jin4 xing2] (进#412 行#316) (of a process etc) to proceed; to be in progress; to be underway; (of people) to carry out; to conduct (an investigation or discussion etc); (of an army etc) to be on the march; to advance#1545. 炸[zha2] (火#187 乍#186) to deep fry; (coll.) to blanch (a vegetable); Taiwan pr. [zha4]; to burst; to explode; to blow up; to bomb; (coll.) to fly into a rage; (coll.) to scamper off; to scatter#1546. 延[yan2] (廴#574 丿#2 ③) surname Yan; to prolong; to extend; to delay#1547. 笔[bi3] (竹#191 毛#676) pen; pencil; writing brush; to write or compose; the strokes of Chinese characters; classifier for sums of money, deals; CL:支[zhi1],枝[zhi1]#1548. 刃[ren4] (刀#59 丿#2) edge of blade#1549. 甜[tian2] (舌#199 甘#696) sweet#1550. 判[pan4] (半#564 刂#67) (bound form) to differentiate; to distinguish; (bound form) clearly (different); to judge; to decide; to grade; (of a judge) to sentence#1551. 快乐[kuai4 le4] (快#290 乐#671) happy; joyful#1552. 座[zuo4] (广#194 坐#571) seat; base; stand; (bound form) constellation; (archaic) suffix used in a respectful form of address (e.g. 師座|师座[shi1zuo4]); classifier for large immovable objects such as buildings, mountains, bridges etc#1553. 适[kuo4] (辶#33 舌#199) see 李适[Li3 Kuo4]; surname Shi; to fit; suitable; proper; just (now); comfortable; well; to go; to follow or pursue#1554. 值[zhi2] (亻#7 直#403) value; (to be) worth; to happen to; to be on duty#1555. 评[ping2] (讠#36 平#705) to discuss; to comment; to criticize; to judge; to choose (by public appraisal)#1556. 纳[na4] (纟#91 内#414) surname Na; to receive; to accept; to enjoy; to bring into; to pay (tax etc); nano- (one billionth); to reinforce sole of shoes or stockings by close sewing#1557. 围[wei2] (囗#86 韦#923) surname Wei; to encircle; to surround; all around; to wear by wrapping around (scarf, shawl)#1558. 职[zhi2] (耳#235 只#164) office; duty#1559. 生命[sheng1 ming4] (生#167 命#712) life (as the characteristic of living beings); living being; creature (CL:個|个[ge4],條|条[tiao2])#1560. 滚[gun3] (氵#60 衮#1561) to boil; to roll; to take a hike; Get lost!#1561. 衮[gun3] (亠#26 公#419 𧘇#352) imperial robe#1562. 借[jie4] (亻#7 昔#388) to borrow; (used in combination with 給|给[gei3] or 出[chu1] etc) to lend; to make use of; to avail oneself of; (sometimes followed by 著|着[zhe5]) by; with; variant of 借[jie4]#1563. 虑[lu:4] (虍#995 心#61) to think over; to consider; anxiety#1564. 规[gui1] (夫#287 见#123) variant of 規|规[gui1]; compass; a rule; regulation; to admonish; to plan; to scheme#1565. 园[yuan2] (囗#86 元#257) surname Yuan; land used for growing plants; site used for public recreation; abbr. for a place ending in 園|园, such as a botanical garden 植物園|植物园, kindergarten 幼兒園|幼儿园 etc#1566. 索[suo3] (十#10 冖#96 糸#473) surname Suo; abbr. for 索馬里|索马里[Suo3ma3li3], Somalia; to search; to demand; to ask; to exact; large rope; isolated#1567. 律师[lu:4 shi1] (律#1172 师#750) lawyer#1568. 毁[hui3] (𬛸#1569 殳#95) to destroy; to ruin; to defame; to slander; to destroy by fire; variant of 毀|毁[hui3]; to defame; to slander#1569. 𬛸(臼#767 工#144) #1570. 不好[bu4 hao3] (不#23 好#69) no good#1571. 任务[ren4 wu5] (任#583 务#958) mission; assignment; task; duty; role; CL:項|项[xiang4],個|个[ge4]#1572. 日子[ri4 zi5] (日#15 子#47) day; a (calendar) date; days of one's life#1573. 项[xiang4] (工#144 页#311) surname Xiang; back of neck; item; thing; term (in a mathematical formula); sum (of money); classifier for principles, items, clauses, tasks, research projects etc#1574. 楚[chu3] (林#421 疋#698) surname Chu; abbr. for Hubei 湖北省[Hu2bei3 Sheng3] and Hunan 湖南省[Hu2nan2 Sheng3] provinces together; Chinese kingdom during the Spring and Autumn and Warring States Periods (722-221 BC); distinct; clear; orderly; pain; suffering; deciduous bush used in Chinese medicine (genus Vitex); punishment cane (old)#1575. 上面[shang4 mian4] (上#56 面#428) on top of; above-mentioned; also pr. [shang4 mian5]#1576. 听到[ting1 dao4] (听#273 到#127) to hear#1577. 保护[bao3 hu4] (保#620 护#952) to protect; to defend; to safeguard; protection; CL:種|种[zhong3]#1578. 㕣(八#41 口#3) #1579. 冏[jiong3] (冂#57 㕣#1578) velvetleaf (Abutilon avicennae), plant of the jute family; bright#1580. 恨[hen4] (忄#140 艮#98) to hate; to regret#1581. 表现[biao3 xian4] (表#652 现#268) to show; to show off; to display; to manifest; expression; manifestation; show; display; performance (at work etc); behavior#1582. 母亲[mu3 qin1] (母#283 亲#402) mother; also pr. [mu3 qin5]; CL:個|个[ge4]#1583. 武[wu3] (弋#132 一#1 止#92) surname Wu; martial; military#1584. 其实[qi2 shi2] (其#338 实#530) actually; in fact; really#1585. 谈谈[tan2 tan2] (谈#629 谈#629) to discuss; to have a chat#1586. 艺[yi4] (艹#150 乙#344) skill; art#1587. 扰[rao3] (扌#52 尤#130) to disturb#1588. 朵[duo3] (几#141 木#38) flower; earlobe; fig. item on both sides; classifier for flowers, clouds etc; variant of 朵[duo3]#1589. 胜[sheng4] (月#40 生#167) victory; success; to beat; to defeat; to surpass; victorious; superior to; to get the better of; better than; surpassing; superb (of vista); beautiful (scenery); wonderful (view); (Taiwan pr. [sheng1]) able to bear; equal to (a task)#1590. 细[xi4] (纟#91 田#168) thin or slender; finely particulate; thin and soft; fine; delicate; trifling; (of a sound) quiet; frugal#1591. 一半[yi1 ban4] (一#1 半#564) half#1592. 状[zhuang4] (丬#377 犬#279) (bound form) form; appearance; shape; (bound form) state; condition; (bound form) to describe; (bound form) written complaint; lawsuit; (bound form) certificate#1593. 选择[xuan3 ze2] (选#738 择#1466) to select; to pick; choice; option; alternative#1594. 干吗[gan4 ma2] (干#162 吗#85) variant of 幹嘛|干嘛[gan4ma2]#1595. 变成[bian4 cheng2] (变#600 成#335) to change into; to turn into; to become#1596. 货[huo4] (化#488 贝#189) goods; money; commodity; CL:個|个[ge4]#1597. 顺[shun4] (川#385 页#311) to obey; to follow; to arrange; to make reasonable; along; favorable#1598. 𡿨#1599. 封[feng1] (圭#519 寸#42) surname Feng; to confer; to grant; to bestow a title; to seal; classifier for sealed objects, esp. letters#1600. 𠤕(匕#44 矢#175) #1601. 疑[yi2] (𠤕#1600 龴#314 疋#698) (bound form) to doubt; to suspect#1602. 资[zi1] (次#284 贝#189) resources; capital; to provide; to supply; to support; money; expense#1603. 怎么办[zen3 me5 ban4] (怎#275 么#58 办#490) what's to be done#1604. 除了[chu2 le5] (除#983 了#9) apart from; besides; in addition to (used to exclude, as in 除了他,誰也沒來|除了他,谁也没来[chu2le5 ta1, shei2 ye3 mei2 lai2] "apart from him, nobody came", or to include, as in 除了英語,他也會法語|除了英语,他也会法语[chu2le5 Ying1yu3, ta1 ye3 hui4 Fa3yu3] "in addition to English, he also knows French"); (used to introduce one of two habitual alternatives in the pattern 除了[chu2le5] + A + 就是[jiu4shi4] + B, "either A or B")#1605. 不用[bu4 yong4] (不#23 用#196) need not#1606. 忆[yi4] (忄#140 乙#344) to recollect; to remember; memory#1607. 哭[ku1] (吅#498 犬#279) to cry; to weep#1608. 顾[gu4] (厄#478 页#311) surname Gu; to look after; to take into consideration; to attend to#1609. 生气[sheng1 qi4] (生#167 气#501) to get angry; to be furious; vitality; liveliness#1610. 凯[kai3] (岂#1532 几#141) surname Kai; (bound form) triumphal music; (Tw) (coll.) generous with money; lavish in spending; chi (Greek letter Χχ)#1611. 严[yan2] (一#1 ④ 厂#219) surname Yan; tight (closely sealed); stern; strict; rigorous; severe; father#1612. 坚[jian1] (〢#588 又#34 土#13) strong; solid; firm; unyielding; resolute#1613. 生日[sheng1 ri4] (生#167 日#15) birthday; CL:個|个[ge4]#1614. 阻[zu3] (阝#46 且#136) to hinder; to block; to obstruct#1615. 不再[bu4 zai4] (不#23 再#244) no more; no longer#1616. 特别[te4 bie2] (特#623 别#226) unusual; special; very; especially; particularly; expressly; for a specific purpose; (often followed by 是[shi4]) in particular#1617. 完成[wan2 cheng2] (完#451 成#335) to complete; to accomplish#1618. 际[ji4] (阝#46 示#391) border; edge; boundary; interval; between; inter-; to meet; time; occasion; to meet with (circumstances)#1619. 预[yu4] (予#910 页#311) to advance; in advance; beforehand; to prepare#1620. 下午[xia4 wu3] (下#109 午#383) afternoon; CL:個|个[ge4]; p.m.#1621. 消息[xiao1 xi5] (消#1007 息#986) (piece of) news; information; message; CL:條|条[tiao2]#1622. 学校[xue2 xiao4] (学#542 校#1118) school; CL:所[suo3]#1623. 结果[jie1 guo3] (结#687 果#332) to bear fruit; outcome; result; consequence; in the end; as a result; to kill; to dispatch#1624. 致[zhi4] (至#108 攵#114) (bound form) fine; delicate; exquisite; (literary) to send; to transmit; to convey; (bound form) to cause; to lead to; consequently#1625. 招[zhao1] (扌#52 召#582) to recruit; to provoke; to beckon; to incur; to infect; contagious; a move (chess); a maneuver; device; trick; to confess#1626. 秘[mi4] (禾#107 必#504) variant of 秘[mi4]; see 秘魯|秘鲁[Bi4 lu3]; secret; secretary#1627. 秒[miao3] (禾#107 少#360) second (unit of time); arc second (angular measurement unit); (coll.) instantly#1628. 推[tui1] (扌#52 隹#209) to push; to cut; to refuse; to reject; to decline; to shirk (responsibility); to put off; to delay; to push forward; to nominate; to elect; massage#1629. 纽[niu3] (纟#91 丑#850) to turn; to wrench; button; nu (Greek letter Νν)#1630. 称[chen4] (禾#107 尔#24) to fit; to match; to suit; (coll.) to have; to possess; Taiwan pr. [cheng4]; to weigh; to state; to name; name; appellation; to praise; old variant of 秤[cheng4]#1631. 中心[zhong1 xin1] (中#174 心#61) center; heart; core#1632. 迟[chi2] (辶#33 尺#670) surname Chi; late; delayed; slow#1633. 慢[man4] (忄#140 曼#1117) slow#1634. 别的[bie2 de5] (别#226 的#22) else; other#1635. 吵[chao3] (口#3 少#360) to quarrel; to make a noise; noisy; to disturb by making a noise#1636. 朱[zhu1] surname Zhu; vermilion; (bound form) cinnabar#1637. 疗[liao2] (疒#389 了#9) to treat; to cure; therapy#1638. 股[gu3] (月#40 殳#95) thigh; part of a whole; portion of a sum; (finance) stock; share; strand of a thread; low-level administrative unit, translated as "section" or "department" etc, ranked below 科[ke1]; classifier for long winding things like ropes, rivers etc; classifier for smoke, smells etc: thread, puff, whiff; classifier for bands of people, gangs etc; classifier for sudden forceful actions#1639. 激[ji1] (氵#60 敫#1411) to arouse; to incite; to excite; to stimulate; sharp; fierce; violent#1640. 手术[shou3 shu4] (手#211 术#869) (surgical) operation; surgery; CL:個|个[ge4]#1641. 样子[yang4 zi5] (样#264 子#47) appearance; manner; pattern; model#1642. 配[pei4] (酉#493 己#229) to join; to fit; to mate; to mix; to match; to deserve; to make up (a prescription); to allocate#1643. 挂[gua4] (扌#52 圭#519) to hang; to suspend (from a hook etc); to hang up (the phone); (of a line) to be dead; to be worried; to be concerned; (dialect) to make a phone call; to register (at a hospital); to make an appointment (with a doctor); (slang) to kill; to die; to be finished; to fail (an exam); classifier for sets or clusters of objects#1644. 清楚[qing1 chu5] (清#973 楚#1574) clear; distinct; to understand thoroughly; to be clear about#1645. 另外[ling4 wai4] (另#203 外#568) additional; in addition; besides; separate; other; moreover; furthermore#1646. 置[zhi4] (罒#396 直#403) to install; to place; to put; to buy#1647. 遇[yu4] (辶#33 禺#1062) surname Yu; (bound form) to encounter; to happen upon; to meet unplanned; (bound form) to treat; to receive#1648. 普[pu3] (並#1071 日#15) general; popular; everywhere; universal#1649. 奖[jiang3] (丬#377 夕#71 大#35) prize; award; bonus; reward; (bound form) to encourage; to commend; to praise; to award; to give as a reward#1650. 人生[ren2 sheng1] (人#6 生#167) life (one's time on earth)#1651. 点儿[dian3 r5] (点#225 儿#50) erhua variant of 點|点[dian3]#1652. 一生[yi1 sheng1] (一#1 生#167) all one's life; throughout one's life#1653. 处理[chu3 li3] (处#579 理#658) to handle; to deal with; to punish; to treat sth by a special process; to process; to sell at reduced prices#1654. 老兄[lao3 xiong1] (老#372 兄#111) elder brother (often used self-referentially); (form of address between male friends) old chap; buddy#1655. 罢[ba4] (罒#396 去#80) to stop; to cease; to dismiss; to suspend; to quit; to finish; (final particle, same as 吧)#1656. 脏[zang4] (月#40 庄#1359) viscera; (anatomy) organ; dirty; filthy; to get (sth) dirty#1657. 大学[da4 xue2] (大#35 学#542) the Great Learning, one of the Four Books 四書|四书[Si4 shu1] in Confucianism; university; college; CL:所[suo3]#1658. 烧[shao1] (火#187 尧#1119) to burn; to cook; to stew; to bake; to roast; to heat; to boil (tea, water etc); fever; to run a temperature; (coll.) to let things go to one's head#1659. 树[shu4] (木#38 对#113) tree; CL:棵[ke1]; to cultivate; to set up#1660. 模[mo2] (木#38 莫#920) to imitate; model; norm; pattern; mold; die; matrix; pattern#1661. 课[ke4] (讠#36 果#332) subject; course; CL:門|门[men2]; class; lesson; CL:堂[tang2],節|节[jie2]; to levy; tax; form of divination#1662. 谎[huang3] (讠#36 荒#1339) lies; to lie#1663. 质[zhi4] (𠂆#83 十#10 贝#189) character; nature; quality; plain; to pawn; pledge; hostage; to question; Taiwan pr. [zhi2]#1664. 灰[hui1] (𠂇#54 火#187) ash; dust; lime; gray; discouraged; dejected#1665. 谋[mou2] (讠#36 某#859) to plan; to seek; scheme#1666. 癶[bo1] (② ③) Kangxi radical 105, known as 登字頭|登字头[deng1 zi4 tou2]#1667. 拥[yong1] (扌#52 用#196) to hold in one's arms; to embrace; to surround; to gather around; to throng; to swarm; (bound form) to support (as in 擁護|拥护[yong1 hu4]); (literary) to have; to possess; Taiwan pr. [yong3]#1668. 夹[jia1] (夫#287 丷#31) to press from either side; to place in between; to sandwich; to carry sth under armpit; wedged between; between; to intersperse; to mix; to mingle; clip; folder; Taiwan pr. [jia2]; double-layered (quilt); lined (garment); Taiwan pr. used in 夾生|夹生[jia1 sheng1] and 夾竹桃|夹竹桃[jia1 zhu2 tao2]; variant of 夾|夹[jia2]#1669. 是否[shi4 fou3] (是#39 否#1047) whether (or not); if; is or isn't#1670. 几乎[ji1 hu1] (几#141 乎#755) almost; nearly; practically#1671. 以及[yi3 ji2] (以#172 及#465) and; as well as#1672. 释[shi4] (釆#1032 𠬤#991) to explain; to release; Buddha (abbr. for 釋迦牟尼|释迦牟尼[Shi4 jia1 mou2 ni2]); Buddhism#1673. 外面[wai4 mian4] (外#568 面#428) outside (also pr. [wai4 mian5] for this sense); surface; exterior; external appearance#1674. 技[ji4] (扌#52 支#634) skill#1675. 不管[bu4 guan3] (不#23 管#785) not to be concerned; regardless of; no matter#1676. 订[ding4] (讠#36 丁#62) to agree; to conclude; to draw up; to subscribe to (a newspaper etc); to order#1677. 委[wei3] (禾#107 女#29) surname Wei; used in 委蛇[wei1yi2]; to entrust; to cast aside; to shift (blame etc); to accumulate; roundabout; winding; dejected; listless; committee member; council; end; actually; certainly#1678. 证明[zheng4 ming2] (证#674 明#411) proof; certificate; identification; testimonial; CL:個|个[ge4]; to prove; to testify; to confirm the truth of#1679. 叟[sou3] (臼#767 丨#11 又#34) old gentleman; old man#1680. 顶[ding3] (丁#62 页#311) apex; crown of the head; top; roof; most; to carry on the head; to push to the top; to go against; to replace; to substitute; to be subjected to (an aerial bombing, hailstorm etc); (slang) to "bump" a forum thread to raise its profile; classifier for headwear, hats, veils etc#1681. 并且[bing4 qie3] (并#431 且#136) and; besides; moreover; furthermore; in addition#1682. 啥[sha2] (口#3 舍#1260) dialectal equivalent of 什麼|什么[shen2me5]; also pr. [sha4]#1683. 抽[chou1] (扌#52 由#368) to draw out; to pull out from in between; to remove part of the whole; (of certain plants) to sprout or bud; to whip or thrash#1684. 矣[yi3] (厶#17 矢#175) classical final particle, similar to modern 了[le5]#1685. 头发[tou2 fa5] (头#207 发#302) hair (on the head)#1686. 闪[shan3] (门#51 人#6) surname Shan; to dodge; to duck out of the way; to beat it; shaken (by a fall); to sprain; to pull a muscle; lightning; spark; a flash; to flash (across one's mind); to leave behind; (Internet slang) (of a display of affection) "dazzlingly" saccharine#1687. 毕[bi4] (比#261 十#10) surname Bi; the whole of; to finish; to complete; complete; full; finished#1688. 尝[chang2] (龸#479 云#73) to taste; to try (food); to experience; (literary) ever; once; to taste; to experience (variant of 嘗|尝[chang2]); old variant of 嘗|尝[chang2]#1689. 审[shen3] (宀#66 申#660) to examine; to investigate; carefully; to try (in court)#1690. 考虑[kao3 lu:4] (考#953 虑#1563) to think over; to consider; consideration#1691. 态[tai4] (太#173 心#61) (bound form); appearance; shape; form; state; attitude; (grammar) voice#1692. 有点[you3 dian3] (有#63 点#225) a little#1693. 挑[tiao1] (扌#52 兆#692) to carry on a shoulder pole; to choose; to pick; to nitpick; to raise; to dig up; to poke; to prick; to incite; to stir up#1694. 关心[guan1 xin1] (关#329 心#61) to be concerned about; to care about#1695. 接受[jie1 shou4] (接#639 受#585) to accept (a suggestion, punishment, bribe etc); to acquiesce#1696. 误[wu4] (讠#36 吴#1507) mistake; error; to miss; to harm; to delay; to neglect; mistakenly#1697. 异[yi4] (巳#200 廾#128) different; other; hetero-; unusual; strange; surprising; to distinguish; to separate; to discriminate#1698. 登[deng1] (癶#1666 豆#440) to scale (a height); to ascend; to mount; to publish or record; to enter (e.g. in a register); to press down with the foot; to step or tread on; to put on (shoes or trousers) (dialect); to be gathered and taken to the threshing ground (old)#1699. 商[shang1] (亠#26 丷#31 冏#1579) Shang Dynasty (c. 1600-1046 BC); surname Shang; commerce; merchant; dealer; to consult; 2nd note in pentatonic scale; quotient (as in 智商[zhi4 shang1], intelligence quotient)#1700. 诺[nuo4] (讠#36 若#1074) to consent; to promise; (literary) yes!#1701. 终于[zhong1 yu2] (终#1127 于#342) at last; in the end; finally; eventually#1702. 测[ce4] (氵#60 则#843) to survey; to measure; to conjecture#1703. 究[jiu1] (穴#392 九#455) after all; to investigate; to study carefully; Taiwan pr. [jiu4]#1704. 训[xun4] (讠#36 川#385) to teach; to train; to admonish; (bound form) instruction (from superiors); teachings; rule#1705. 供[gong1] (亻#7 共#617) to provide; to supply; to be for (the use or convenience of); to lay (sacrificial offerings); (bound form) offerings; to confess (Taiwan pr. [gong1]); confession; statement (Taiwan pr. [gong1])#1706. 故事[gu4 shi4] (故#228 事#182) old practice; narrative; story; tale#1707. 打算[da3 suan4] (打#272 算#759) to plan; to intend; to calculate; plan; intention; calculation; CL:個|个[ge4]#1708. 层[ceng2] (尸#99 云#73) to pile on top of one another; layer; stratum; floor (of a building); story; (math.) sheaf; classifier for layers#1709. 其中[qi2 zhong1] (其#338 中#174) among; in; included among these#1710. 旅[lu:3] (方#198 𠂉#82 ④) trip; travel; to travel; brigade (army)#1711. 杀人[sha1 ren2] (杀#366 人#6) homicide; to murder; to kill (a person)#1712. 兹[ci2] (䒑#77 𢆶#1538) used in 龜茲|龟兹[Qiu1ci2]; now; here; this; time; year#1713. 确实[que4 shi2] (确#739 实#530) indeed; really; reliable; real; true#1714. 玛[ma3] (王#97 马#70) agate; cornelian#1715. 異(田#168 共#617) #1716. 剩[sheng4] (乘#1413 刂#67) to remain; to be left; to have as remainder; variant of 剩[sheng4]#1717. 突[tu1] (穴#392 犬#279) to dash; to move forward quickly; to bulge; to protrude; to break through; to rush out; sudden; Taiwan pr. [tu2]#1718. 彑[ji4] variant of 彐[ji4]#1719. 刺[ci1] (朿#1408 刂#67) (onom.) whoosh; thorn; sting; thrust; to prick; to pierce; to stab; to assassinate; to murder#1720. 厅[ting1] (厂#219 丁#62) (reception) hall; living room; office; provincial government department#1721. 浪[lang4] (氵#60 良#648) wave; breaker; unrestrained; dissipated; to stroll; to ramble#1722. 攻[gong1] (工#144 攵#114) to attack; to accuse; to study; (LGBT) top#1723. 春[chun1] (𡗗#608 日#15) old variant of 春[chun1]; surname Chun; spring (season); gay; joyful; youthful; love; lust; life#1724. 瑞[rui4] (王#97 耑#1379) lucky; auspicious; propitious; rayl (acoustical unit)#1725. 牌[pai2] (片#572 卑#1296) signboard; plaque; plate; tablet (CL:塊|块[kuai4]); brand; trademark (CL:個|个[ge4]); mahjong tile; domino; playing card (CL:張|张[zhang1]); (bound form) fixed pattern for lyrics or set melody in classical poetry or music (used in 詞牌|词牌[ci2pai2] and 曲牌[qu3pai2])#1726. 一会儿[yi1 hui4 r5] (一#1 会#76 儿#50) a moment; a while; in a moment; now...now...; also pr. [yi1 hui3 r5]#1727. 一边[yi1 bian1] (一#1 边#589) one side; either side; on the one hand; on the other hand; doing while#1728. 戒[jie4] (戈#159 廾#128) to guard against; to exhort; to admonish or warn; to give up or stop doing sth; Buddhist monastic discipline; ring (for a finger)#1729. 每天[mei3 tian1] (每#345 天#124) every day#1730. 社[she4] (礻#394 土#13) (bound form) society; organization; agency; (old) god of the land#1731. 仔[zai3] (亻#7 子#47) variant of 崽[zai3]; (dialect) (bound form) young man; used in 仔肩[zi1 jian1]; (bound form) (of domestic animals or fowl) young; (bound form) fine; detailed#1732. 爷[ye2] (父#263 卩#254) grandpa; old gentleman#1733. 朝[chao2] (𠦝#1319 月#40) abbr. for 朝鮮|朝鲜[Chao2 xian3] Korea; imperial or royal court; government; dynasty; reign of a sovereign or emperor; court or assembly held by a sovereign or emperor; to make a pilgrimage to; facing; towards; morning#1734. 伴[ban4] (亻#7 半#564) partner; companion; comrade; associate; to accompany#1735. 瞧[qiao2] (目#72 焦#1511) to look at; to see; to see (a doctor); to visit#1736. 本来[ben3 lai2] (本#343 来#87) original; originally; at first; it goes without saying; of course#1737. 那天[na4 tian1] (那#79 天#124) that day; the other day#1738. 可爱[ke3 ai4] (可#84 爱#406) adorable; cute; lovely#1739. 恋[lian4] (亦#507 心#61) to feel attached to; to long for; to love#1740. 奇怪[qi2 guai4] (奇#734 怪#844) strange; odd; to marvel; to be baffled#1741. 忍[ren3] (刃#1548 心#61) to bear; to endure; to tolerate; to restrain oneself#1742. 响[xiang3] (口#3 向#484) echo; sound; noise; to make a sound; to sound; to ring; loud; classifier for noises#1743. 香[xiang1] (禾#107 日#15) fragrant; sweet smelling; aromatic; savory or appetizing; (to eat) with relish; (of sleep) sound; perfume or spice; joss or incense stick; CL:根[gen1]#1744. 开枪[kai1 qiang1] (开#157 枪#650) to open fire; to shoot a gun#1745. 蒂[di4] (艹#150 帝#751) stem (of fruit); variant of 蒂[di4]#1746. 手机[shou3 ji1] (手#211 机#471) cell phone; mobile phone; CL:部[bu4]#1747. 袋[dai4] (代#726 衣#544) pouch; bag; sack; pocket#1748. 留下[liu2 xia4] (留#717 下#109) to leave behind; to stay behind; to remain; to keep; not to let (sb) go#1749. 酋[qiu2] (丷#31 酉#493) tribal chief#1750. 电影[dian4 ying3] (电#433 影#1161) movie; film; CL:部[bu4],片[pian4],幕[mu4],場|场[chang3]#1751. 𡰪(尸#99 口#3) #1752. 辟[bi4] (𡰪#1751 辛#854) (literary) king; monarch; (literary) (of a sovereign) to summon to official service; (literary) to avoid (variant of 避[bi4]); (literary) to repel (variant of 避[bi4]); penal law; variant of 闢|辟[pi4]; to open (a door); to open up (for development); to dispel; to refute; to repudiate; (bound form) penetrating; incisive#1753. 爿[pan2] classifier for strips of land or bamboo, shops, factories etc; slit bamboo or chopped wood (dialect)#1754. 美元[mei3 yuan2] (美#541 元#257) American dollar; US dollar#1755. 吐[tu3] (口#3 土#13) to spit; to send out (silk from a silkworm, bolls from cotton flowers etc); to say; to pour out (one's grievances); to vomit; to throw up#1756. 签[qian1] (竹#191 佥#561) to sign one's name; to write brief comments on a document; inscribed bamboo stick (variant of 籤|签[qian1]); visa; Japanese variant of 籤|签[qian1]; inscribed bamboo stick (used in divination, gambling, drawing lots etc); small wood sliver; label; tag#1757. 搬[ban1] (扌#52 般#1158) to move (i.e. relocate oneself); to move (sth relatively heavy or bulky); to shift; to copy indiscriminately#1758. 帮忙[bang1 mang2] (帮#447 忙#725) to help; to lend a hand; to do a favor; to do a good turn#1759. 危险[wei1 xian3] (危#1205 险#1166) danger; dangerous#1760. 烂[lan4] (火#187 兰#856) soft; mushy; well-cooked and soft; to rot; to decompose; rotten; worn out; chaotic; messy; utterly; thoroughly; crappy; bad#1761. 戕[qiang1] (爿#1753 戈#159) to kill; to injure; Taiwan pr. [qiang2]#1762. 臧[zang1] (戕#1761 臣#1445) surname Zang; good; right; old variant of 藏[zang4]; old variant of 臟|脏[zang4]#1763. 堂[tang2] (𫩠#523 土#13) (main) hall; large room for a specific purpose; CL:間|间[jian1]; relationship between cousins etc on the paternal side of a family; of the same clan; classifier for classes, lectures etc; classifier for sets of furniture#1764. 从没[cong2 mei2] (从#133 没#105) never (in the past); never did#1765. 藏[zang4] (艹#150 臧#1762) Tibet; abbr. for Xizang or Tibet Autonomous Region 西藏[Xi1 zang4]; to conceal; to hide away; to harbor; to store; to collect; storehouse; depository; Buddhist or Taoist scripture#1766. 感谢[gan3 xie4] (感#578 谢#397) (express) thanks; gratitude; grateful; thankful; thanks#1767. 𭕆(⺌#179 贝#189) #1768. 害怕[hai4 pa4] (害#728 怕#860) to be afraid; to be scared#1769. 整个[zheng3 ge4] (整#1072 个#43) whole; entire; total#1770. 酷[ku4] (酉#493 告#336) ruthless; strong (e.g. of wine); (loanword) cool; hip#1771. 效[xiao4] (交#499 攵#114) variant of 傚|效[xiao4]; to imitate (variant of 效[xiao4]); variant of 效[xiao4]; effect; efficacy; to imitate#1772. 麻烦[ma2 fan5] (麻#632 烦#1229) trouble; inconvenience; inconvenient; troublesome; annoying; to bother sb; to put sb to trouble#1773. 纽约[niu3 yue1] (纽#1629 约#575) New York#1774. 现场[xian4 chang3] (现#268 场#503) the scene (of a crime, accident etc); (on) the spot; (at) the site#1775. 人类[ren2 lei4] (人#6 类#1048) humanity; human race; mankind#1776. 禹[yu3] Yu the Great (c. 21st century BC), mythical leader who tamed the floods; surname Yu#1777. 遍[bian4] (辶#33 扁#817) variant of 遍[bian4]; everywhere; all over; classifier for actions: one time#1778. 自由[zi4 you2] (自#142 由#368) freedom; liberty; free; unrestricted; CL:種|种[zhong3]#1779. 属[shu3] (尸#99 禹#1776) category; genus (taxonomy); family members; dependents; to belong to; subordinate to; affiliated with; be born in the year of (one of the 12 animals); to be; to prove to be; to constitute; to join together; to fix one's attention on; to concentrate on#1780. 杰克[jie2 ke4] (杰#1107 克#553) Jack (name)#1781. 干什么[gan4 shen2 me5] (干#162 什#89 么#58) what are you doing?; what's he up to?#1782. 事儿[shi4 r5] (事#182 儿#50) one's employment; business; matter that needs to be settled; (northern dialect) (of a person) demanding; trying; troublesome; erhua variant of 事[shi4]; CL:件[jian4],樁|桩[zhuang1]#1783. 亿[yi4] (亻#7 乙#344) 100 million#1784. 部分[bu4 fen5] (部#668 分#306) part; portion; piece; Taiwan pr. [bu4fen4]#1785. 妇[fu4] (女#29 彐#217) woman; old variant of 婦|妇[fu4]#1786. 阻止[zu3 zhi3] (阻#1614 止#92) to prevent; to block#1787. 方法[fang1 fa3] (方#198 法#443) method; way; means; CL:個|个[ge4]#1788. 烟[yan1] (火#187 因#242) cigarette or pipe tobacco; CL:根[gen1]; smoke; mist; vapour; CL:縷|缕[lu:3]; tobacco plant; (of the eyes) to be irritated by smoke; tobacco (variant of 煙|烟[yan1])#1789. 戴[dai4] (𢦏#1220 異#1715) surname Dai; to put on or wear (glasses, hat, gloves etc); to respect; to bear; to support#1790. 伤害[shang1 hai4] (伤#678 害#728) to injure; to harm#1791. 办公室[ban4 gong1 shi4] (办#490 公#419 室#932) office; business premises#1792. 汉[han4] (氵#60 又#34) Han ethnic group; Chinese (language); the Han dynasty (206 BC-220 AD); man#1793. 通过[tong1 guo4] (通#819 过#148) to pass through; to get through; to adopt (a resolution); to pass (legislation); to pass (a test); by means of; through; via#1794. 声音[sheng1 yin1] (声#796 音#337) voice; sound; CL:個|个[ge4]#1795. 赌[du3] (贝#189 者#161) to bet; to gamble#1796. 协[xie2] (十#10 办#490) to cooperate; to harmonize; to help; to assist; to join#1797. 尊[zun1] (酋#1749 寸#42) senior; of a senior generation; to honor; to respect; honorific; classifier for cannons and statues; ancient wine vessel#1798. 猫[mao1] (犭#312 苗#1375) cat (CL:隻|只[zhi1]); (dialect) to hide oneself; (loanword) (coll.) modem; used in 貓腰|猫腰[mao2yao1]#1799. 昨天[zuo2 tian1] (昨#1298 天#124) yesterday#1800. 能力[neng2 li4] (能#155 力#78) capability; ability; CL:個|个[ge4]#1801. 记录[ji4 lu4] (记#516 录#976) to record; record (written account); note-taker; record (in sports etc); CL:個|个[ge4]#1802. 放弃[fang4 qi4] (放#446 弃#1317) to renounce; to abandon; to give up#1803. 盯[ding1] (目#72 丁#62) to watch attentively; to fix one's attention on; to stare at; to gaze at#1804. 混蛋[hun2 dan4] (混#1123 蛋#1014) scoundrel; bastard; hoodlum; wretch#1805. 创[chuang4] (仓#520 刂#67) variant of 創|创[chuang4]; variant of 創|创[chuang4]; (bound form) a wound; to wound; to initiate; to create; to achieve (sth for the first time)#1806. 电视[dian4 shi4] (电#433 视#1043) television; TV; CL:臺|台[tai2],部[bu4]#1807. 来自[lai2 zi4] (来#87 自#142) to come from (a place); From: (in email header)#1808. 萨[sa4] (艹#150 阝#46 产#954) Bodhisattva; surname Sa#1809. 伯[ba4] (亻#7 白#20) variant of 霸[ba4]; one hundred (old); father's elder brother; senior; paternal elder uncle; eldest of brothers; respectful form of address; Count, third of five orders of nobility 五等爵位[wu3 deng3 jue2 wei4]#1810. 匝[za1] (匚#367 巾#151) (literary) to encircle; to go around; to surround; (literary) whole; full; (literary) classifier for a full circuit or a turn of a coil; variant of 匝[za1]#1811. 锁[suo3] (钅#227 𭕆#1767) to lock; to lock up; a lock (CL:把[ba3]); old variant of 鎖|锁[suo3]#1812. 回到[hui2 dao4] (回#260 到#127) to return to#1813. 有关[you3 guan1] (有#63 关#329) to have sth to do with; to relate to; related to; to concern; concerning#1814. 踪[zong1] (𧾷#262 宗#1331) variant of 蹤|踪[zong1]; (bound form) footprint; trace; tracks#1815. 速[su4] (辶#33 束#636) fast; rapid; quick; velocity#1816. 主意[zhu3 yi5] (主#295 意#417) plan; idea; decision; CL:個|个[ge4]; Beijing pr. [zhu2 yi5]#1817. 音乐[yin1 yue4] (音#337 乐#671) music; CL:張|张[zhang1],曲[qu3],段[duan4]#1818. 输[shu1] (车#180 俞#855) to lose; to be beaten; (bound form) to transport; (literary) to donate; to contribute; (coll.) to enter (a password)#1819. 愿意[yuan4 yi4] (愿#1162 意#417) to wish; to want; ready; willing (to do sth)#1820. 身体[shen1 ti3] (身#281 体#683) the body; one's health#1821. 劳[lao2] (𫇦#1318 力#78) (bound form) to toil; labor; (bound form) laborer; (bound form) meritorious deed; (bound form) fatigue; to put sb to the trouble (of doing sth); to express one's appreciation (Taiwan pr. [lao4])#1822. 行为[xing2 wei2] (行#316 为#104) action; conduct; behavior; activity#1823. 注意[zhu4 yi4] (注#1070 意#417) to take note of; to pay attention to#1824. 加油[jia1 you2] (加#408 油#1132) to add oil; to top up with gas; to refuel; to accelerate; to step on the gas; (fig.) to make an extra effort; to cheer sb on#1825. 警察[jing3 cha2] (警#908 察#1265) police; police officer#1826. 阳[yang2] (阝#46 日#15) positive (electric.); sun; male principle (Taoism); Yang, opposite: 陰|阴[yin1]#1827. 犾(犭#312 犬#279) #1828. 获[huo4] (艹#150 犾#1827) (literary) to catch; to capture; (literary) to get; to obtain; to win; (bound form) to reap; to harvest#1829. 抗[kang4] (扌#52 亢#1238) to resist; to fight; to defy; anti-#1830. 劲[jin4] (𢀖#322 力#78) strength; energy; enthusiasm; spirit; mood; expression; interest; CL:把[ba3]; Taiwan pr. [jing4]; stalwart; sturdy; strong; powerful#1831. 饼[bing3] (饣#635 并#431) round flat cake; cookie; cake; pastry; CL:張|张[zhang1]#1832. 妮[ni1] (女#29 尼#241) girl; phonetic "ni" (in female names); Taiwan pr. [ni2]#1833. 调查[diao4 cha2] (调#1112 查#680) investigation; inquiry; to investigate; to survey; survey; (opinion) poll; CL:項|项[xiang4],個|个[ge4]#1834. 府[fu3] (广#194 付#654) seat of government; government repository (archive); official residence; mansion; presidential palace; (honorific) Your home; prefecture (from Tang to Qing times)#1835. 操[cao1] (扌#52 喿#1517) old variant of 操[cao1]; to grasp; to hold; to operate; to manage; to control; to steer; to exercise; to drill (practice); to play; to speak (a language); variant of 肏[cao4]#1836. 这边[zhe4 bian1] (这#68 边#589) this side; here#1837. 腿[tui3] (月#40 退#1084) leg; CL:條|条[tiao2]; hip bone; old variant of 腿[tui3]#1838. 伟[wei3] (亻#7 韦#923) big; large; great#1839. 收到[shou1 dao4] (收#764 到#127) to receive#1840. 臭[chou4] (自#142 犬#279) stench; smelly; to smell (bad); repulsive; loathsome; terrible; bad; severely; ruthlessly; dud (ammunition); sense of smell; smell bad#1841. 姑[gu1] (女#29 古#166) paternal aunt; husband's sister; husband's mother (old); nun; for the time being (literary)#1842. 砸[za2] (石#348 匝#1810) to smash; to pound; to fail; to muck up; to bungle#1843. 拖[tuo1] (扌#52 㐌#1426) variant of 拖[tuo1]; to drag; to tow; to trail; to hang down; to mop (the floor); to delay; to drag on#1844. 看上去[kan4 shang5 qu5] (看#176 上#56 去#80) it would appear; it seems (that)#1845. 乌[wu1] (③ 一#1) abbr. for country names that begin with 烏|乌[wu1]: Ukraine 烏克蘭|乌克兰[Wu1ke4lan2], Uzbekistan 烏茲別克斯坦|乌兹别克斯坦[Wu1zi1bie2ke4si1tan3] etc; surname Wu; crow; black; used in 烏拉|乌拉[wu4la5]; used in 烏拉草|乌拉草[wu4la5cao3]#1846. 多么[duo1 me5] (多#204 么#58) how (wonderful etc); what (a great idea etc); however (difficult it may be etc); (in interrogative sentences) how (much etc); to what extent#1847. 群[qun2] (君#1252 羊#152) variant of 群[qun2]; group; crowd; flock, herd, pack etc#1848. 结婚[jie2 hun1] (结#687 婚#982) to marry; to get married; CL:次[ci4]#1849. 章[zhang1] (立#122 早#350) surname Zhang; chapter; section; clause; movement (of symphony); seal; badge; regulation; order#1850. 总统[zong3 tong3] (总#625 统#1097) president (of a country); CL:個|个[ge4],位[wei4],名[ming2],屆|届[jie4]#1851. 要求[yao1 qiu2] (要#103 求#395) to request; to require; requirement; to stake a claim; to ask; to demand; CL:點|点[dian3]#1852. 诞[dan4] (讠#36 延#1546) birth; birthday; brag; boast; to increase#1853. 博士[bo2 shi4] (博#1450 士#205) doctor (as an academic degree); (old) person specialized in a skill or trade; (old) court academician#1854. 经历[jing1 li4] (经#349 历#1159) to experience; to go through; experience (CL:段[duan4],次[ci4])#1855. 优[you1] (亻#7 尤#130) excellent; superior#1856. 育[yu4] (𠫓#557 月#40) to have children; to raise or bring up; to educate#1857. 冗[rong3] (冖#96 几#141) extraneous; redundant; superfluous; busy schedule; variant of 冗[rong3]#1858. 老师[lao3 shi1] (老#372 师#750) teacher; CL:個|个[ge4],位[wei4]#1859. 小孩[xiao3 hai2] (小#16 孩#400) child; CL:個|个[ge4]#1860. 妙[miao4] (女#29 少#360) clever; wonderful; variant of 妙[miao4]#1861. 抓住[zhua1 zhu4] (抓#777 住#461) to grab hold of; to capture#1862. 撒[sa1] (扌#52 散#1383) to let go; to cast; to let loose; to discharge; to give expression to; (coll.) to pee; to scatter; to sprinkle; to spill#1863. 福[fu2] (礻#394 畐#916) surname Fu; abbr. for Fujian province 福建省[Fu2jian4 sheng3]; good fortune; happiness; luck#1864. 游戏[you2 xi4] (游#1258 戏#1087) game; CL:場|场[chang3]; to play#1865. 饿[e4] (饣#635 我#14) hungry; to starve (sb)#1866. 压力[ya1 li4] (压#1177 力#78) pressure#1867. 医院[yi1 yuan4] (医#688 院#1167) hospital; CL:所[suo3],家[jia1],座[zuo4]#1868. 联系[lian2 xi4] (联#1212 系#700) variant of 聯繫|联系[lian2 xi4]; connection; contact; relation; to get in touch with; to integrate; to link; to touch#1869. 夆[feng2] (夂#165 丰#303) to butt (as horned animals)#1870. 掌[zhang3] (𫩠#523 手#211) palm of the hand; sole of the foot; paw; horseshoe; to slap; to hold in one's hand; to wield#1871. 十分[shi2 fen1] (十#10 分#306) very; completely; utterly; extremely; absolutely; hundred percent; to divide into ten equal parts#1872. 概[gai4] (木#38 既#1353) (bound form) general; approximate; without exception; categorically; (bound form) bearing; deportment; old variant of 概[gai4]#1873. 灭[mie4] (一#1 火#187) to extinguish or put out; to go out (of a fire etc); to exterminate or wipe out; to drown#1874. 尿[niao4] (尸#99 水#457) to urinate; urine; CL:泡[pao1]; (coll.) urine#1875. 感到[gan3 dao4] (感#578 到#127) to feel; to sense; to perceive#1876. 事实[shi4 shi2] (事#182 实#530) fact; CL:個|个[ge4]#1877. 下面[xia4 mian4] (下#109 面#428) below; under; next; the following; also pr. [xia4 mian5]; to boil noodles#1878. 婆[po2] (波#1154 女#29) (bound form) grandmother; (bound form) matron; (bound form) mother-in-law; (slang) femme (in a lesbian relationship)#1879. 臽[xian4] (勹#19 臼#767) (archaic) pit; hole in the ground; old variant of 陷[xian4]#1880. 环[huan2] (王#97 不#23) surname Huan; ring; hoop; loop; (chain) link; classifier for scores in archery etc; to surround; to encircle; to hem in#1881. 比如[bi3 ru2] (比#261 如#292) for example; for instance; such as#1882. 扯[che3] (扌#52 止#92) to pull; to tear; (of cloth, thread etc) to buy; to chat; to gossip; (coll.) (Tw) ridiculous; hokey; variant of 扯[che3]; to pull; to tear#1883. 馆[guan3] (饣#635 官#521) variant of 館|馆[guan3]; building; shop; term for certain service establishments; embassy or consulate; schoolroom (old); CL:家[jia1]#1884. 势[shi4] (执#826 力#78) power; influence; potential; momentum; tendency; trend; situation; conditions; outward appearance; sign; gesture; male genitals#1885. 解决[jie3 jue2] (解#706 决#792) to solve; to resolve; to settle (a problem); to eliminate; to wipe out (an enemy, bandits etc)#1886. 国家[guo2 jia1] (国#612 家#307) country; nation; state; CL:個|个[ge4]#1887. 亘[gen4] (一#1 旦#102) extending all the way across; running all the way through#1888. 夺[duo2] (大#35 寸#42) to seize; to take away forcibly; to wrest control of; to compete or strive for; to force one's way through; to leave out; to lose#1889. 人员[ren2 yuan2] (人#6 员#586) staff; crew; personnel; CL:個|个[ge4]#1890. 帐[zhang4] (巾#151 长#308) (bound form) curtain; tent; canopy; variant of 賬|账[zhang4]#1891. 唐[tang2] (广#194 肀#662 口#3) Tang dynasty (618-907); surname Tang; to exaggerate; empty; in vain; old variant of 螗[tang2]#1892. 吹[chui1] (口#3 欠#183) to blow; to play a wind instrument; to blast; to puff; to boast; to brag; to end in failure; to fall through#1893. 森[sen1] (木#38 林#421) Mori (Japanese surname); (bound form) densely wooded; (fig.) (bound form) multitudinous; gloomy; forbidding#1894. 各位[ge4 wei4] (各#355 位#524) everybody; all (guests, colleagues etc); all of you#1895. 透[tou4] (辶#33 秀#1023) (bound form) to penetrate; to seep through; to tell secretly; to leak; thoroughly; through and through; to appear; to show#1896. 勒[le4] (革#1148 力#78) (literary) bridle; halter; headstall; to rein in; to compel; to force; (literary) to carve; to engrave; (literary) to command; to lead (an army etc); (physics) lux (abbr. for 勒克斯[le4ke4si1]); to strap tightly; to bind#1897. 疼[teng2] (疒#389 冬#697) (it) hurts; sore; to love dearly#1898. 拥有[yong1 you3] (拥#1667 有#63) to have; to possess#1899. 直到[zhi2 dao4] (直#403 到#127) until#1900. 同意[tong2 yi4] (同#482 意#417) to agree; to consent; to approve#1901. 副[fu4] (畐#916 刂#67) secondary; auxiliary; deputy; assistant; vice-; abbr. for 副詞|副词 adverb; classifier for pairs, sets of things & facial expressions#1902. 忘记[wang4 ji4] (忘#832 记#516) to forget#1903. 表演[biao3 yan3] (表#652 演#936) play; show; performance; exhibition; to perform; to act; to demonstrate; CL:場|场[chang3]#1904. 扎[zha1] (扌#52 乚#18) to prick; to run or stick (a needle etc) into; mug or jug used for serving beer (loanword from "jar"); used in 掙扎|挣扎[zheng1zha2]; variant of 紮|扎[za1]; variant of 紮|扎[zha1]; to tie; to bind; classifier for flowers, banknotes etc: bundle; Taiwan pr. [zha2]; (of troops) to be stationed (at); Taiwan pr. [zha2]#1905. 存在[cun2 zai4] (存#1128 在#55) to exist; to be; existence#1906. 派对[pai4 dui4] (派#963 对#113) (loanword) party#1907. 怜[lian2] (忄#140 令#496) to pity#1908. 较[jiao4] (车#180 交#499) (bound form) to compare; (literary) to dispute; compared to; (before an adjective) relatively; comparatively; rather; also pr. [jiao3]#1909. 后面[hou4 mian5] (后#270 面#428) the back; the rear; the last bit; behind; near the end; at the back; later; afterwards#1910. 汽[qi4] (氵#60 气#501) steam; vapor#1911. 短[duan3] (矢#175 豆#440) short; brief; to lack; weak point; fault#1912. 允[yun3] (厶#17 儿#50) just; fair; to permit; to allow#1913. 野[ye3] (里#158 予#910) old variant of 野[ye3]; erroneous variant of 野[ye3]; field; plain; open space; limit; boundary; rude; feral#1914. 纹[wen2] (纟#91 文#65) line; trace; mark; pattern; grain (of wood etc)#1915. 编[bian1] (纟#91 扁#817) to weave; to plait; to organize; to group; to arrange; to edit; to compile; to write; to compose; to fabricate; to make up#1916. 男孩[nan2 hai2] (男#559 孩#400) boy; CL:個|个[ge4]#1917. 率[lu:4] (玄#1461 丷#31 八#41 十#10) rate; frequency; to lead; to command; rash; hasty; frank; straightforward; generally; usually#1918. 承认[cheng2 ren4] (承#1357 认#365) to admit; to concede; to recognize; recognition (diplomatic, artistic etc); to acknowledge#1919. 虚[xu1] (虍#995 业#413) emptiness; void; abstract theory or guiding principles; empty or unoccupied; diffident or timid; false; humble or modest; (of health) weak; virtual; in vain#1920. 镇[zhen4] (钅#227 真#222) to press down; to calm; to subdue; to suppress; to guard; garrison; small town; to cool or chill (food or drinks)#1921. 银[yin2] (钅#227 艮#98) silver; silver-colored; relating to money or currency#1922. 支持[zhi1 chi2] (支#634 持#970) to be in favor of; to support; to back; support; backing; to stand by; CL:個|个[ge4]#1923. 移[yi2] (禾#107 多#204) to move; to shift; to change; to alter; to remove#1924. 㣺(小#16 丶#4) #1925. 目标[mu4 biao1] (目#72 标#1308) target; goal; objective; CL:個|个[ge4]#1926. 迹[ji4] (辶#33 亦#507) footprint; mark; trace; vestige; sign; indication; Taiwan pr. [ji1]; variant of 跡|迹[ji4]; variant of 跡|迹[ji4]#1927. 厉[li4] (厂#219 万#466) surname Li; strict; severe#1928. 卉[hui4] (十#10 廾#128) plants#1929. 针[zhen1] (钅#227 十#10) needle; pin; injection; stitch; CL:根[gen1],支[zhi1]; variant of 針|针[zhen1], needle#1930. 记住[ji4 zhu5] (记#516 住#461) to remember; to bear in mind; to learn by heart#1931. 否则[fou3 ze2] (否#1047 则#843) otherwise; if not; or (else)#1932. 黄[huang2] (龷#286 由#368 八#41) surname Huang or Hwang; yellow; pornographic; to fall through#1933. 控制[kong4 zhi4] (控#1261 制#1020) to control#1934. 真的[zhen1 de5] (真#222 的#22) really; truly; indeed; real; true; genuine; (math.) proper#1935. 牢[lao2] (宀#66 牛#216) firm; sturdy; fold (for animals); sacrifice; prison#1936. 租[zu1] (禾#107 且#136) to hire; to rent; to charter; to rent out; to lease out; rent; land tax#1937. 负责[fu4 ze2] (负#1134 责#1103) to be responsible for; to be in charge of; to bear responsibility for; conscientious#1938. 箱[xiang1] (竹#191 相#160) box; trunk; chest#1939. 附[fu4] (阝#46 付#654) variant of 附[fu4]; to add; to attach; to be close to; to be attached#1940. 夗[yuan4] (夕#71 㔾#252) to turn over when asleep#1941. 疯狂[feng1 kuang2] (疯#886 狂#1149) crazy; frenzied; wild#1942. 雇[gu4] (户#358 隹#209) variant of 雇[gu4]; to employ; to hire; to rent#1943. 莉[li4] (艹#150 利#633) used in 茉莉[mo4li4]; used in the transliteration of female names#1944. 累[lei3] (田#168 糸#473) to accumulate; to involve or implicate (Taiwan pr. [lei4]); continuous; repeated; tired; weary; to strain; to wear out; to work hard; surname Lei; rope; to bind together; to twist around#1945. 头儿[tou2 r5] (头#207 儿#50) leader#1946. 事实上[shi4 shi2 shang4] (事#182 实#530 上#56) in fact; in reality; actually; as a matter of fact; de facto; ipso facto#1947. 初[chu1] (衤#325 刀#59) at first; (at the) beginning; first; junior; basic#1948. 苏[su1] (艹#150 办#490) used in 嚕囌|噜苏[lu1su1]; variant of 蘇|苏[su1]; to revive; surname Su; abbr. for Soviet Union 蘇維埃|苏维埃[Su1wei2ai1] or 蘇聯|苏联[Su1lian2]; abbr. for Jiangsu 江蘇|江苏[Jiang1su1]; abbr. for Suzhou 蘇州|苏州[Su1zhou1]; Perilla frutescens (Chinese basil or wild red basil); place name; to revive; used as phonetic in transliteration; old variant of 蘇|苏[su1]#1949. 放下[fang4 xia4] (放#446 下#109) to lay down; to put down; to let go of; to relinquish; to set aside; to lower (the blinds etc)#1950. 河[he2] (氵#60 可#84) river (CL:條|条[tiao2],道[dao4]); (bound form) the Yellow River; (bound form) the Milky Way; (bound form) (on restaurant menus) rice noodles 河粉[he2fen3]#1951. 未来[wei4 lai2] (未#596 来#87) future; tomorrow; CL:個|个[ge4]; approaching; coming; pending#1952. 容易[rong2 yi4] (容#1243 易#1005) easy; straightforward; likely; liable to; apt to#1953. 保持[bao3 chi2] (保#620 持#970) to keep; to maintain; to hold; to preserve#1954. 紧张[jin3 zhang1] (紧#1081 张#672) nervous; keyed up; intense; tense; strained; in short supply; scarce; CL:陣|阵[zhen4]#1955. 礼物[li3 wu4] (礼#993 物#686) gift; present; CL:件[jian4],個|个[ge4],份[fen4]#1956. 菜[cai4] (艹#150 采#1110) vegetable; greens (CL:棵[ke1]); dish (of food) (CL:樣|样[yang4],道[dao4],盤|盘[pan2]); (of one's skills etc) weak; poor; (coll.) (one's) type#1957. 病人[bing4 ren2] (病#911 人#6) sick person; patient; invalid; CL:個|个[ge4]#1958. 曾经[ceng2 jing1] (曾#1060 经#349) once; already; former; previously; ever; (past tense marker used before verb or clause)#1959. 反正[fan3 zheng4] (反#481 正#251) anyway; in any case; to come over from the enemy's side#1960. 证据[zheng4 ju4] (证#674 据#1223) evidence; proof; testimony#1961. 搭[da1] (扌#52 荅#1341) to put up; to build (scaffolding); to hang (clothes on a pole); to connect; to join; to arrange in pairs; to match; to add; to throw in (resources); to take (boat, train); variant of 褡[da1]#1962. 圈[juan1] (囗#86 卷#1271) to confine; to lock up; to pen in; livestock enclosure; pen; fold; sty; circle; ring; loop (CL:個|个[ge4]); classifier for loops, orbits, laps of race etc; to surround; to circle#1963. 身边[shen1 bian1] (身#281 边#589) at one's side; on hand#1964. 乡[xiang1] country or countryside; native place; home village or town; township (PRC administrative unit)#1965. 匋[tao2] (勹#19 缶#1090) pottery#1966. 塔[ta3] (土#13 荅#1341) pagoda (abbr. of 塔婆[ta3po2], a loanword from Sanskrit stūpa); tower; pylon (CL:座[zuo4]); (loanword) (pastry) tart; old variant of 塔[ta3]#1967. 证人[zheng4 ren2] (证#674 人#6) witness#1968. 互[hu4] (一#1 彑#1718) mutual#1969. 大概[da4 gai4] (大#35 概#1872) roughly; probably; rough; approximate; about; general idea#1970. 寿[shou4] (丰#303 寸#42) surname Shou; long life; old age; age; life; birthday; funerary#1971. 村[cun1] (木#38 寸#42) village; (dialect) to scold; rustic; boorish; variant of 村[cun1]#1972. 魔[mo2] (麻#632 鬼#774) (bound form) evil spirit; devil; (prefix) supernatural; magical#1973. 带来[dai4 lai2] (带#449 来#87) to bring; (fig.) to bring about; to produce#1974. 孕[yun4] (乃#485 子#47) pregnant#1975. 症[zheng4] (疒#389 正#251) disease; illness; abdominal tumor; bowel obstruction; (fig.) sticking point#1976. 敌[di2] (舌#199 攵#114) (bound form) enemy; (bound form) to be a match for; to rival; (bound form) to resist; to withstand#1977. 农[nong2] (冖#96 𧘇#352) surname Nong; (bound form) agriculture; variant of 農|农[nong2]#1978. 私人[si1 ren2] (私#1273 人#6) private; personal; interpersonal; sb with whom one has a close personal relationship; a member of one's clique#1979. 报告[bao4 gao4] (报#808 告#336) to inform; to report; to make known; report; speech; talk; lecture; CL:篇[pian1],份[fen4],個|个[ge4],通[tong4]#1980. 甩[shuai3] (冂#57 二#27 乚#18) to throw; to fling; to swing; to leave behind; to throw off; to dump (sb)#1981. 善[shan4] (羊#152 䒑#77 口#3) good (virtuous); benevolent; well-disposed; good at sth; to improve or perfect#1982. 伟大[wei3 da4] (伟#1838 大#35) huge; great; grand; worthy of the greatest admiration; important (contribution etc)#1983. 坐下[zuo4 xia5] (坐#571 下#109) to sit down#1984. 最近[zui4 jin4] (最#380 近#950) recently; soon; nearest#1985. 盘[pan2] (舟#631 皿#456) tray; plate; dish; (finance) (bound form) market prices; (computing) (bound form) disk; to coil (a rope, pigtail etc); to check; to examine; to investigate; to transfer; to sell (property); to shift; to move (sth big and heavy); classifier for things resembling a plate or dish; classifier for coils; classifier for games or matches (chess, table tennis etc)#1986. 鞋[xie2] (革#1148 圭#519) shoe; CL:雙|双[shuang1],隻|只[zhi1]; variant of 鞋[xie2]#1987. 档[dang3] (木#38 当#299) (Tw) gear (variant of 擋|挡[dang3]); (bound form) shelves (for files); pigeonholes; (bound form) files; crosspiece (of a table etc); (bound form) (of goods) grade; vendor's open-air stall; (Tw) timeslot for a show or program; classifier for shows; classifier for events, affairs etc; Taiwan pr. [dang3]#1988. 代表[dai4 biao3] (代#726 表#652) representative; delegate; CL:位[wei4],個|个[ge4],名[ming2]; to represent; to stand for; on behalf of; in the name of#1989. 无论[wu2 lun4] (无#424 论#904) no matter what or how; regardless of whether...#1990. 杲[gao3] (日#15 木#38) high; sun shines brightly; to shine#1991. 桌[zhuo1] (⺊#45 杲#1990) table; desk; classifier for tables of guests at a banquet etc; old variant of 桌[zhuo1]#1992. 幻[huan4] (幺#363 𠃌#30) fantasy#1993. 族[zu2] (方#198 𠂉#82 矢#175) race; nationality; ethnicity; clan; by extension, social group (e.g. office workers 上班族)#1994. ⺄#1995. 打扰[da3 rao3] (打#272 扰#1587) to disturb; to bother; to trouble#1996. 荣[rong2] (艹#150 𣎾#1997) surname Rong; glory; honor; thriving#1997. 𣎾(冖#96 木#38) #1998. 不必[bu4 bi4] (不#23 必#504) need not; does not have to; not necessarily#1999. 反对[fan3 dui4] (反#481 对#113) to oppose; to be against; to object to#2000. 玩笑[wan2 xiao4] (玩#615 笑#809) to joke; joke; jest#2001. 奏[zou4] (𡗗#608 天#124) to play music; to achieve; to present a memorial to the emperor (old)#2002. 允许[yun3 xu3] (允#1912 许#437) to permit; to allow#2003. 爰[yuan2] (爫#266 一#1 友#298) surname Yuan; therefore; consequently; thus; hence; thereupon; it follows that; where?; to change (into); ancient unit of weight and money#2004. 建议[jian4 yi4] (建#996 议#974) to propose; to suggest; to recommend; proposal; suggestion; recommendation; CL:個|个[ge4],點|点[dian3]#2005. 昨晚[zuo2 wan3] (昨#1298 晚#528) yesterday evening; last night#2006. 到处[dao4 chu4] (到#127 处#579) everywhere#2007. 羔[gao1] (𦍌#492 灬#134) lamb#2008. 文件[wen2 jian4] (文#65 件#460) document; file; CL:份[fen4]#2009. 分手[fen1 shou3] (分#306 手#211) to part company; to split up; to break up#2010. 讨论[tao3 lun4] (讨#1027 论#904) to discuss; to talk over#2011. 捕[bu3] (扌#52 甫#912) to catch; to seize; to capture#2012. 临[lin2] (〢#588 𠂉#82 丶#4 𫩏#364) to face; to overlook; to arrive; to be (just) about to; just before#2013. 胃[wei4] (田#168 月#40) stomach; CL:個|个[ge4]#2014. 家里[jia1 li3] (家#307 里#158) home#2015. 毫[hao2] (亠#26 口#3 冖#96 毛#676) hair; drawing brush; (in the) least; one thousandth; currency unit, 0.1 yuan#2016. 正常[zheng4 chang2] (正#251 常#613) regular; normal; ordinary#2017. 咖[ga1] (口#3 加#408) used in 咖喱[ga1li2]; coffee; class; grade#2018. 系统[xi4 tong3] (系#700 统#1097) system; CL:個|个[ge4]#2019. 选手[xuan3 shou3] (选#738 手#211) athlete; contestant#2020. 啡[fei1] (口#3 非#387) (used in loanwords for its phonetic value)#2021. 还要(还#163 要#103) #2022. 暗[an4] (日#15 音#337) variant of 暗[an4]; dark; to turn dark; secret; hidden; (literary) confused; ignorant; (literary) to close (a door); to eclipse; confused; ignorant (variant of 暗[an4]); dark (variant of 暗[an4])#2023. 净[jing4] (冫#81 争#724) variant of 淨|净[jing4]; clean; completely; only; net (income, exports etc); (Chinese opera) painted face male role#2024. 塞[sai1] (𡨄#845 土#13) to plug; to stop up; to stuff in; (bound form) a stopper; a cork; (bound form) strategic stronghold; (bound form) to block; to obstruct#2025. 织[zhi1] (纟#91 只#164) to weave#2026. 奋[fen4] (大#35 田#168) to exert oneself (bound form)#2027. 必要[bi4 yao4] (必#504 要#103) necessary; essential; indispensable; required#2028. 没关系[mei2 guan1 xi5] (没#105 关#329 系#700) it doesn't matter#2029. 可怜[ke3 lian2] (可#84 怜#1907) pitiful; pathetic; to have pity on#2030. 𦣻(一#1 自#142) #2031. 伍[wu3] (亻#7 五#536) surname Wu; squad of five soldiers; to associate with; five (banker's anti-fraud numeral)#2032. 似乎[si4 hu1] (似#1398 乎#755) it seems; seemingly; as if#2033. 欧[ou1] (区#694 欠#183) Europe (abbr. for 歐洲|欧洲[Ou1zhou1]); surname Ou; (used for transliteration); old variant of 謳|讴[ou1]#2034. 劫[jie2] (去#80 力#78) variant of 劫[jie2]; variant of 劫[jie2]; variant of 劫[jie2]; to rob; to plunder; to seize by force; to coerce; calamity; abbr. for kalpa 劫波[jie2 bo1]#2035. 咬[yao3] (口#3 交#499) to bite; to nip; variant of 咬[yao3]#2036. 千万[qian1 wan4] (千#185 万#466) ten million; countless; many; one must by all means#2037. 郎[lang2] (丶#4 ⑤ 阝#46) surname Lang; (arch.) minister; official; noun prefix denoting function or status; a youth#2038. 能够[neng2 gou4] (能#155 够#748) to be capable of; to be able to; can#2039. 坦[tan3] (土#13 旦#102) flat; open-hearted; level; smooth#2040. 鲁[lu3] (鱼#873 日#15) surname Lu; Lu, an ancient state of China 魯國|鲁国[Lu3guo2]; Lu, short name for Shandong 山東|山东[Shan1dong1]; (bound form) crass; stupid; rude; (used to represent the sounds of "ru", "lu" etc in loanwords)#2041. 爬[pa2] (爪#702 巴#74) to crawl; to climb; to get up or sit up#2042. 绑[bang3] (纟#91 邦#423) to tie; bind or fasten together; to kidnap#2043. 公平[gong1 ping2] (公#419 平#705) fair; impartial#2044. 宣[xuan1] (宀#66 亘#1887) surname Xuan; to declare (publicly); to announce#2045. 研[yan2] (石#348 开#157) to grind; study; research#2046. 撞[zhuang4] (扌#52 童#1449) to knock against; to bump into; to run into; to meet by accident#2047. 见面[jian4 mian4] (见#123 面#428) to meet; to see each other; CL:次[ci4]#2048. 誓[shi4] (折#1332 言#354) oath; vow; to swear; to pledge#2049. 骑[ji4] (马#70 奇#734) (Tw) saddle horse; mounted soldier; to sit astride; to ride (a horse, bike etc); classifier for saddle horses#2050. 洞[dong4] (氵#60 同#482) cave; hole; zero (unambiguous spoken form when spelling out numbers); CL:個|个[ge4]; used in 洪洞[Hong2tong2], a county in Shanxi#2051. 完美[wan2 mei3] (完#451 美#541) perfect#2052. 历史[li4 shi3] (历#1159 史#643) history; CL:門|门[men2],段[duan4]#2053. 彩[cai3] (采#1110 彡#373) (bright) color; variety; applause; applaud; lottery prize#2054. 人人[ren2 ren2] (人#6 人#6) everyone; every person#2055. 杀死[sha1 si3] (杀#366 死#271) to kill#2056. 卂[xun4] (⺄#1994 十#10) (archaic) to fly rapidly#2057. 合作[he2 zuo4] (合#153 作#359) to cooperate; to collaborate; to work together#2058. 裤[ku4] (衤#325 库#1286) variant of 褲|裤[ku4]; underpants; trousers; pants#2059. 长大[zhang3 da4] (长#308 大#35) to grow up#2060. 利用[li4 yong4] (利#633 用#196) to exploit; to make use of; to use; to take advantage of; to utilize#2061. 杀手[sha1 shou3] (杀#366 手#211) killer; murderer; hit man; (sports) formidable player#2062. 设计[she4 ji4] (设#1191 计#525) to design; to plan; design; plan#2063. 放松[fang4 song1] (放#446 松#1314) to relax; to slacken; to loosen#2064. 难道[nan2 dao4] (难#653 道#250) don't tell me ...; could it be that...?#2065. 䍃[yao2] (爫#266 缶#1090) (archaic) vase; pitcher#2066. 拳[quan2] (龹#989 手#211) fist; boxing#2067. 可怕[ke3 pa4] (可#84 怕#860) awful; dreadful; fearful; formidable; frightful; scary; hideous; horrible; terrible; terribly#2068. 册[ce4] book; booklet; classifier for books#2069. 娜[na4] (女#29 那#79) (phonetic na); used esp. in female names such as Anna 安娜[An1 na4] or Diana 黛安娜[Dai4 an1 na4]; elegant; graceful#2070. 休息[xiu1 xi5] (休#1316 息#986) rest; to rest#2071. 出色[chu1 se4] (出#192 色#594) remarkable; outstanding#2072. 瓶[ping2] (并#431 瓦#1422) bottle; vase; pitcher; CL:個|个[ge4]; classifier for wine and liquids; variant of 瓶[ping2]#2073. 屁股[pi4 gu5] (屁#1231 股#1638) buttocks; bottom; butt; back part#2074. 这次(这#68 次#284) #2075. 试试(试#675 试#675) #2076. 有趣[you3 qu4] (有#63 趣#1389) interesting; fascinating; amusing#2077. 勇[yong3] (甬#627 力#78) brave#2078. 年轻[nian2 qing1] (年#340 轻#1181) young#2079. 叉[cha1] (又#34 丶#4) fork; pitchfork; prong; pick; cross; intersect; "X"; to cross; be stuck; to diverge; to open (as legs)#2080. 出发[chu1 fa1] (出#192 发#302) to set off; to start (on a journey)#2081. 家庭[jia1 ting2] (家#307 庭#1366) family; household; CL:戶|户[hu4],個|个[ge4]#2082. 糕[gao1] (米#240 羔#2007) cake; variant of 糕[gao1]#2083. 夅[jiang4] (夂#165 㐄#847) old variant of 降[jiang4]; old variant of 降[xiang2]#2084. 降[jiang4] (阝#46 夅#2083) to drop; to fall; to come down; to descend; to surrender; to capitulate; to subdue; to tame#2085. 下次[xia4 ci4] (下#109 次#284) next time#2086. 那时[na4 shi2] (那#79 时#224) then; at that time; in those days#2087. 自从[zi4 cong2] (自#142 从#133) since (a time); ever since#2088. 亨[heng1] (亠#26 口#3 了#9) prosperous; henry (unit of inductance)#2089. 草[cao3] (艹#150 早#350) variant of 草[cao3]; grass; straw; manuscript; draft (of a document); careless; rough; CL:棵[ke1],撮[zuo3],株[zhu1],根[gen1]; variant of 肏[cao4]#2090. 那种[na4 zhong3] (那#79 种#527) that kind of#2091. 闹[nao4] (门#51 市#896) variant of 鬧|闹[nao4]; noisy; cacophonous; to make noise; to disturb; to vent (feelings); to fall ill; to have an attack (of sickness); to go in (for some activity); to joke#2092. 李[li3] (木#38 子#47) surname Li; plum#2093. 检查[jian3 cha2] (检#1513 查#680) inspection; to examine; to inspect; CL:次[ci4]#2094. 废[fei4] (广#194 发#302) to abolish; to abandon; to abrogate; to discard; to depose; to oust; crippled; abandoned; waste; variant of 廢|废[fei4]; disabled#2095. 遗[yi2] (辶#33 贵#1360) (bound form) to leave behind#2096. 自杀[zi4 sha1] (自#142 杀#366) to kill oneself; to commit suicide; to attempt suicide#2097. 玨(王#97 王#97) #2098. 访[fang3] (讠#36 方#198) (bound form) to seek by inquiry; (bound form) to visit; to call on#2099. 上去[shang4 qu4] (上#56 去#80) to go up#2100. 笨[ben4] (竹#191 本#343) stupid; foolish; silly; slow-witted; clumsy#2101. 监狱[jian1 yu4] (监#1037 狱#1458) prison#2102. 康[kang1] (广#194 隶#1496) surname Kang; healthy; peaceful; abundant#2103. 夏[xia4] (𦣻#2030 夂#165) the Xia or Hsia dynasty c. 2000 BC; Xia of the Sixteen Kingdoms (407-432); surname Xia; summer#2104. 虽然[sui1 ran2] (虽#899 然#409) although; even though (often used correlatively with 可是[ke3 shi4] or 但是[dan4 shi4] etc)#2105. 任何人(任#583 何#555 人#6) #2106. 实在[shi2 zai4] (实#530 在#55) really; actually; indeed; true; real; honest; dependable; (philosophy) reality#2107. 不少[bu4 shao3] (不#23 少#360) many; a lot; not few#2108. 补[bu3] (衤#325 卜#88) to repair; to patch; to mend; to make up for; to fill (a vacancy); to supplement#2109. 想到[xiang3 dao4] (想#178 到#127) to think of; to call to mind; to anticipate#2110. 乑[zhong4] to stand side by side; variant of 眾|众[zhong4]#2111. 聚[ju4] (取#331 乑#2110) to assemble; to gather (transitive or intransitive); (chemistry) poly-#2112. 佛[fo2] (亻#7 弗#852) Buddha; Buddhism (abbr. for 佛陀[Fo2tuo2]); seemingly; (female) head ornament; variant of 彿|佛[fu2]#2113. 解释[jie3 shi4] (解#706 释#1672) explanation; to explain; to interpret; to resolve; CL:個|个[ge4]#2114. 营[ying2] (𫇦#1318 吕#1216) camp; barracks; battalion; to build; to operate; to manage; to strive for#2115. 隐[yin3] (阝#46 急#1085) (bound form) secret; hidden; concealed; crypto-; to lean upon#2116. 𠠵(九#455 力#78) #2117. 抛[pao1] (扌#52 𠠵#2116) to throw; to toss; to fling; to cast; to abandon#2118. 躲[duo3] (身#281 朵#1588) to hide; to dodge; to avoid#2119. 简单[jian3 dan1] (简#1356 单#693) simple; not complicated#2120. 命令[ming4 ling4] (命#712 令#496) order; command; CL:道[dao4],個|个[ge4]#2121. 比较[bi3 jiao4] (比#261 较#1908) to compare; to contrast; comparatively; relatively; quite; comparison#2122. 盖[ge3] (𦍌#492 皿#456) surname Ge; lid; top; cover; canopy; to cover; to conceal; to build#2123. 同时[tong2 shi2] (同#482 时#224) at the same time; simultaneously#2124. 首先[shou3 xian1] (首#236 先#259) first (of all); in the first place#2125. 万一[wan4 yi1] (万#466 一#1) just in case; if by any chance; contingency#2126. 号码[hao4 ma3] (号#551 码#1274) number; CL:堆[dui1],個|个[ge4]#2127. 弟弟[di4 di5] (弟#756 弟#756) younger brother; CL:個|个[ge4],位[wei4]#2128. 的确[di2 que4] (的#22 确#739) really; indeed#2129. 哪个[na3 ge5] (哪#405 个#43) which; who#2130. 家人[jia1 ren2] (家#307 人#6) family member; (old) servant#2131. 估[gu1] (亻#7 古#166) to estimate; used in 估衣[gu4yi5]#2132. 摆[bai3] (扌#52 罢#1655) to arrange; to exhibit; to move to and fro; a pendulum; hem (at the bottom of a garment)#2133. 赤[chi4] (土#13 ④) red; scarlet; bare; naked#2134. 很快(很#145 快#290) #2135. 扫[sao3] (扌#52 彐#217) to sweep (with a brush or broom); to sweep away; to wipe out; to get rid of; to sweep (one's eyes etc) over; to scan; (bound form) a (large) broom#2136. 城市[cheng2 shi4] (城#1164 市#896) city; town; CL:座[zuo4]#2137. 老板[lao3 ban3] (老#372 板#1302) variant of 老闆|老板[lao3 ban3]; Robam (brand); boss; business proprietor; CL:個|个[ge4]#2138. 版[ban3] (片#572 反#481) a register; block of printing; edition; version; page#2139. 为何[wei4 he2] (为#104 何#555) why#2140. 除非[chu2 fei1] (除#983 非#387) only if (..., or otherwise, ...); only when; only in the case that; unless#2141. 睛[jing1] (目#72 青#253) eye; eyeball#2142. 铁[tie3] (钅#227 失#618) surname Tie; iron (metal); arms; weapons; hard; strong; violent; unshakeable; determined; close; tight (slang)#2143. 介意[jie4 yi4] (介#609 意#417) to care about; to take offense; to mind#2144. 阵[zhen4] (阝#46 车#180) disposition of troops; wave; spate; burst; spell; short period of time; classifier for events or states of short duration#2145. 尽力[jin4 li4] (尽#861 力#78) to strive one's hardest; to spare no effort#2146. 手上(手#211 上#56) #2147. 秘密[mi4 mi4] (秘#1626 密#1168) secret; private; confidential; clandestine; a secret (CL:個|个[ge4])#2148. 猪[zhu1] (犭#312 者#161) hog; pig; swine; CL:口[kou3],頭|头[tou2]#2149. 䖵(虫#410 虫#410) #2150. 堆[dui1] (土#13 隹#209) to pile up; to heap up; a mass; pile; heap; stack; large amount#2151. 反应[fan3 ying4] (反#481 应#506) to react; to respond; reaction; response; reply; chemical reaction; CL:個|个[ge4]#2152. 人民[ren2 min2] (人#6 民#987) the people; CL:個|个[ge4]#2153. 蠢[chun3] (春#1723 䖵#2149) variant of 蠢[chun3]; stupid; stupid; sluggish; clumsy; to wiggle (of worms); to move in a disorderly fashion#2154. 因此[yin1 ci3] (因#242 此#221) thus; consequently; as a result#2155. 例[li4] (亻#7 列#1051) example; precedent; rule; case; instance#2156. 昷(日#15 皿#456) #2157. 记忆[ji4 yi4] (记#516 忆#1606) to remember; to recall; memory#2158. 财[cai2] (贝#189 才#193) money; wealth; riches; property; valuables#2159. 眼睛[yan3 jing5] (眼#990 睛#2141) eye; CL:隻|只[zhi1],雙|双[shuang1]#2160. 孔[kong3] (子#47 乚#18) surname Kong; hole; CL:個|个[ge4]; classifier for cave dwellings#2161. 开车[kai1 che1] (开#157 车#180) to drive a car#2162. 广告[guang3 gao4] (广#194 告#336) to advertise; a commercial; advertisement; CL:項|项[xiang4]#2163. 听见[ting1 jian4] (听#273 见#123) to hear#2164. 分子[fen1 zi3] (分#306 子#47) molecule; (math) numerator of a fraction; members of a class or group; political elements (such as intellectuals or extremists); part; Taiwan variant of 份子[fen4 zi5]#2165. 偶[ou3] (亻#7 禺#1062) accidental; image; pair; mate#2166. 泡[pao1] (氵#60 包#422) puffed; swollen; spongy; small lake (esp. in place names); classifier for urine or feces; bubble; foam; blister; to soak; to steep; to infuse; to dawdle; to loiter; to pick up (a girl); to get off with (a sexual partner); classifier for occurrences of an action; classifier for number of infusions#2167. 一般[yi1 ban1] (一#1 般#1158) same; ordinary; so-so; common; general; generally; in general#2168. 夸[kua1] (大#35 亏#1509) used in transliteration; to boast; to exaggerate; to praise#2169. 白人[bai2 ren2] (白#20 人#6) white man or woman; Caucasian#2170. 好运[hao3 yun4] (好#69 运#876) good luck#2171. 谋杀[mou2 sha1] (谋#1665 杀#366) to murder; to assassinate; intentional homicide#2172. 宁[ning4] (宀#66 丁#62) old variant of 寧|宁[ning4]; abbr. for Ningxia Hui Autonomous Region 寧夏回族自治區|宁夏回族自治区[Ning2xia4 Hui2zu2 Zi4zhi4qu1]; abbr. for Nanjing 南京[Nan2jing1]; surname Ning; peaceful; to pacify; to visit (one's parents etc); would rather; to prefer; how (emphatic); Taiwan pr. [ning2]; variant of 寧|宁[ning2]#2173. 即使[ji2 shi3] (即#1309 使#824) even if; even though#2174. 法官[fa3 guan1] (法#443 官#521) judge (in court)#2175. 播[bo1] (扌#52 番#1489) (bound form) to sow (seeds); to spread (ideas, rumors etc); to broadcast (radio signals etc); Taiwan pr. [bo4]#2176. 训练[xun4 lian4] (训#1704 练#1233) to train; to drill; training; CL:個|个[ge4]#2177. 耍[shua3] (而#231 女#29) surname Shua; to play with; to wield; to act (cool etc); to display (a skill, one's temper etc)#2178. 呐[na4] (口#3 内#414) battle cry; sentence-final particle (abbr. for 呢啊[ne5 a5] or variant of 哪[na5])#2179. 扣[kou4] (扌#52 口#3) to fasten; to button; button; buckle; knot; to arrest; to confiscate; to deduct (money); discount; to knock; to smash, spike or dunk (a ball); to cover (with a bowl etc); (fig.) to tag a label on sb; (Tw) (loanword) code; button#2180. 挥[hui1] (扌#52 军#757) to wave; to brandish; to command; to conduct; to scatter; to disperse#2181. 实际上[shi2 ji4 shang4] (实#530 际#1618 上#56) in fact; in reality; as a matter of fact; in practice#2182. 使用[shi3 yong4] (使#824 用#196) to use; to employ; to apply; to make use of#2183. 彼[bi3] (彳#75 皮#289) that; those; (one) another#2184. 孙[sun1] (子#47 小#16) surname Sun; grandson; descendant#2185. 再次[zai4 ci4] (再#244 次#284) once more; once again#2186. 方面[fang1 mian4] (方#198 面#428) respect; aspect; field; side; CL:個|个[ge4]#2187. 囱[chuang1] (丿#2 囗#86 夂#165) variant of 窗[chuang1]; (bound form) chimney#2188. 绍[shao4] (纟#91 召#582) surname Shao; to continue; to carry on#2189. 扮[ban4] (扌#52 分#306) to disguise oneself as; to dress up; to play (a role); to put on (an expression)#2190. 征[zheng1] (彳#75 正#251) journey; trip; expedition; to go on long campaign; to attack; to invite; to recruit; to levy (taxes); to draft (troops); phenomenon; symptom; characteristic sign (used as proof); evidence#2191. 直接[zhi2 jie1] (直#403 接#639) direct (opposite: indirect 間接|间接[jian4 jie1]); immediate; straightforward#2192. 简直[jian3 zhi2] (简#1356 直#403) simply; really#2193. 匈[xiong1] (勹#19 凶#426) Hungary; Hungarian; abbr. for 匈牙利[Xiong1 ya2 li4]; old variant of 胸[xiong1]#2194. 粉[fen3] (米#240 分#306) powder; cosmetic face powder; food prepared from starch; noodles or pasta made from any kind of flour; to turn to powder; (dialect) to whitewash; white; pink; (suffix) fan (abbr. for 粉絲|粉丝[fen3si1]); to be a fan of#2195. 尉[wei4] (𫵖#2196 寸#42) surname Wei; military officer; used in 尉遲|尉迟[Yu4chi2] and 尉犁[Yu4li2]#2196. 𫵖(尸#99 示#391) #2197. 雪[xue3] (雨#468 彐#217) surname Xue; snow; CL:場|场[chang2]; (literary) to wipe away (a humiliation etc)#2198. 敖[ao2] (𫠤#2199 攵#114) surname Ao; variant of 遨[ao2]#2199. 𫠤(龶#195 丿#2 𠃌#30) #2200. 放开[fang4 kai1] (放#446 开#157) to let go; to release#2201. 信任[xin4 ren4] (信#494 任#583) to trust; to have confidence in#2202. 泰[tai4] (𡗗#608 氺#333) Mt Tai 泰山[Tai4 Shan1] in Shandong; abbr. for Thailand; safe; peaceful; most; grand#2203. 沉[chen2] (氵#60 冗#1857) to submerge; to immerse; to sink; to keep down; to lower; to drop; deep; profound; heavy#2204. 尾[wei3] (尸#99 毛#676) tail; remainder; remnant; extremity; sixth of the 28 constellations; classifier for fish; horse's tail; pointed posterior section of a locust etc#2205. 毌[guan4] old variant of 貫|贯[guan4]#2206. 贯[guan4] (毌#2205 贝#189) to pierce through; to pass through; to be stringed together; string of 1000 cash#2207. 身份[shen1 fen4] (身#281 份#682) identity; aspect of one's identity (e.g. mayor, father, permanent resident); role; capacity (as in "in his capacity as ..." 以[yi3] + ... + 的身份[de5 shen1fen4]); status (social, legal etc); position; rank#2208. 莎[sha1] (艹#150 沙#1230) katydid (family Tettigoniidae); phonetic "sha" used in transliteration; used in 莎草[suo1cao3]#2209. 治疗[zhi4 liao2] (治#1137 疗#1637) to treat (an illness); medical treatment; therapy#2210. 学生[xue2 sheng5] (学#542 生#167) student; schoolchild#2211. 斩[zhan3] (车#180 斤#117) to behead (as form of capital punishment); to chop#2212. 对方[dui4 fang1] (对#113 方#198) the other person; the other side; the other party#2213. 回答[hui2 da2] (回#260 答#1281) to reply; to answer; reply; answer#2214. 尖[jian1] (小#16 大#35) pointed; tapering; sharp; (of a sound) shrill; piercing; (of one's hearing, sight etc) sharp; acute; keen; to make (one's voice) shrill; sharp point; tip; the best of sth; the cream of the crop#2215. 稍[shao1] (禾#107 肖#758) somewhat; a little; used in 稍息[shao4xi1]#2216. 从未[cong2 wei4] (从#133 未#596) never#2217. 搜[sou1] (扌#52 叟#1679) to search; variant of 蒐|搜[sou1]; (bound form) to collect; to gather#2218. 航[hang2] (舟#631 亢#1238) boat; ship; craft; to navigate; to sail; to fly#2219. 力量[li4 liang5] (力#78 量#1188) power; force; strength#2220. 好人[hao3 ren2] (好#69 人#6) good person; healthy person; person who tries not to offend anyone, even at the expense of principle#2221. 微[wei1] (彳#75 𢼸#2223) surname Wei; ancient Chinese state near present-day Chongqing; Taiwan pr. [Wei2]; tiny; miniature; slightly; profound; abtruse; to decline; one millionth part of; micro-; Taiwan pr. [wei2]#2222. 𡵂(山#334 一#1 几#141) #2223. 𢼸(𡵂#2222 攵#114) #2224. 窗[chuang1] (穴#392 囱#2187) old variant of 窗[chuang1]; variant of 窗[chuang1]; variant of 窗[chuang1]; window; CL:扇[shan4]; variant of 窗[chuang1]#2225. 犹[you2] (犭#312 尤#130) as if; (just) like; just as; still; yet#2226. 动作[dong4 zuo4] (动#444 作#359) movement; motion; action (CL:個|个[ge4]); to act; to move#2227. 爆[bao4] (火#187 暴#1470) to explode or burst; to quick fry or quick boil#2228. 呙[guo1] (口#3 内#414) surname Guo; lopsided; Taiwan pr. [kuai1]#2229. 坚持[jian1 chi2] (坚#1612 持#970) to persevere with; to persist in; to insist on#2230. 意义[yi4 yi4] (意#417 义#659) sense; meaning; significance; importance; CL:個|个[ge4]#2231. 晚安[wan3 an1] (晚#528 安#407) Good night!; Good evening!#2232. 理由[li3 you2] (理#658 由#368) reason; grounds; justification; CL:個|个[ge4]#2233. 攻击[gong1 ji1] (攻#1722 击#787) to attack; to accuse; to charge; an attack (terrorist or military)#2234. 痴[chi1] (疒#389 知#249) imbecile; sentimental; stupid; foolish; silly; variant of 痴[chi1]#2235. 来到[lai2 dao4] (来#87 到#127) to arrive; to come#2236. 逼[bi1] (辶#33 畐#916) variant of 逼[bi1]; to compel; to pressure; to force (sb to do sth); to compel; to press for; to extort; to press on towards; to press up to; to close in on; euphemistic variant of 屄[bi1]#2237. 蓝[lan2] (艹#150 监#1037) surname Lan; blue; indigo plant#2238. 镜[jing4] (钅#227 竟#1194) mirror; lens#2239. 惹[re3] (若#1074 心#61) to provoke; to irritate; to vex; to stir up; to anger; to attract (troubles); to cause (problems)#2240. 安排[an1 pai2] (安#407 排#1262) to arrange; to plan; to set up; arrangements; plans#2241. 弱[ruo4] (弓#237 冫#81 弓#237 冫#81) weak; feeble; young; inferior; not as good as; (following a decimal or fraction) slightly less than#2242. 温[wen1] (氵#60 昷#2156) surname Wen; warm; lukewarm; to warm up; (bound form) temperature; (bound form) mild; soft; tender; to review (a lesson etc); (TCM) fever; epidemic; pestilence (old variant of 瘟[wen1])#2243. 素[su4] (龶#195 糸#473) raw silk; white; plain, unadorned; vegetarian (food); essence; nature; element; constituent; usually; always; ever#2244. 典[dian3] (⑥ 八#41) canon; law; standard work of scholarship; literary quotation or allusion; ceremony; to be in charge of; to mortgage or pawn#2245. 依[yi1] (亻#7 衣#544) to depend on; to comply with or listen to sb; according to; in the light of#2246. 胸[xiong1] (月#40 匈#2193) variant of 胸[xiong1]; chest; bosom; heart; mind; thorax#2247. 咖啡[ka1 fei1] (咖#2017 啡#2020) (loanword) coffee; CL:杯[bei1]#2248. 富[fu4] (宀#66 畐#916) surname Fu; rich; abundant; wealthy#2249. 迈[mai4] (辶#33 万#466) to take a step; to stride#2250. 讯[xun4] (讠#36 卂#2056) (bound form) to ask; to inquire; (bound form) to interrogate; to question; (bound form) news; information#2251. 拒[ju4] (扌#52 巨#1021) to resist; to repel; to refuse#2252. 诚[cheng2] (讠#36 成#335) (bound form) sincere; authentic; (literary) really; truly#2253. 批[pi1] (扌#52 比#261) to ascertain; to act on; to criticize; to pass on; classifier for batches, lots, military flights; tier (for the ranking of universities and colleges)#2254. 某个(某#859 个#43) #2255. 之中[zhi1 zhong1] (之#256 中#174) inside; among; in the midst of (doing sth); during#2256. 要么[yao4 me5] (要#103 么#58) or; either one or the other#2257. 仪[yi2] (亻#7 义#659) apparatus; rites; appearance; present; ceremony#2258. 幸运[xing4 yun4] (幸#1088 运#876) fortunate; lucky; good fortune; luck#2259. 缺[que1] (缶#1090 夬#234) deficiency; lack; scarce; vacant post; to run short of#2260. 聪[cong1] (耳#235 总#625) (literary) acute (of hearing); (bound form) clever; intelligent; sharp#2261. 冡[meng2] (冖#96 一#1 豕#297) old variant of 蒙[meng2]#2262. 蒙[meng2] (艹#150 冡#2261) (literary) sincere; honest; genuine; drizzle; mist; to deceive; to cheat; to hoodwink; to make a wild guess; blind; dim-sighted; surname Meng; Mongol ethnic group; abbr. for Mongolia 蒙古國|蒙古国[Meng3 gu3 guo2]; Taiwan pr. [Meng2]; (knocked) unconscious; dazed; stunned; to cover; ignorant; to suffer (misfortune); to receive (a favor); to cheat#2263. 想法[xiang3 fa3] (想#178 法#443) way of thinking; opinion; notion; to think of a way (to do sth)#2264. 阴[yin1] (阝#46 月#40) surname Yin; overcast (weather); cloudy; shady; Yin (the negative principle of Yin and Yang); negative (electric.); feminine; moon; implicit; hidden; genitalia; variant of 陰|阴[yin1]#2265. 认真[ren4 zhen1] (认#365 真#222) conscientious; earnest; serious; to take seriously; to take to heart#2266. 消失[xiao1 shi1] (消#1007 失#618) to disappear; to fade away#2267. 孚[fu2] (爫#266 子#47) to trust; to believe in#2268. 孰[shu2] (享#1176 丸#730) who; which; what#2269. 学习[xue2 xi2] (学#542 习#630) to learn; to study#2270. 主人[zhu3 ren2] (主#295 人#6) master; host; owner; CL:個|个[ge4]#2271. 㸚(爻#1503 爻#1503) #2272. 爽[shuang3] (大#35 㸚#2271) bright; clear; crisp; open; frank; straightforward; to feel well; fine; pleasurable; invigorating; to deviate#2273. 为止[wei2 zhi3] (为#104 止#92) until; (used in combination with words like 到[dao4] or 至[zhi4] in constructs of the form 到...為止|到...为止)#2274. 汽车[qi4 che1] (汽#1910 车#180) car; automobile; bus; CL:輛|辆[liang4]#2275. 方向[fang1 xiang4] (方#198 向#484) direction; orientation; CL:個|个[ge4]#2276. 乖[guai1] (千#185 北#740) (of a child) obedient, well-behaved; clever; shrewd; alert; perverse; contrary to reason; irregular; abnormal#2277. 穵[wa1] (穴#392 乙#344) to dig; to scoop out#2278. 挖[wa1] (扌#52 穵#2277) to dig; to excavate; to scoop out#2279. 介绍[jie4 shao4] (介#609 绍#2188) to introduce (sb to sb); to give a presentation; to present (sb for a job etc); introduction#2280. 妞[niu1] (女#29 丑#850) girl#2281. 烤[kao3] (火#187 考#953) to roast; to grill; to broil; to bake; to toast (bread); to warm oneself by a fire#2282. 好几[hao3 ji3] (好#69 几#141) several; quite a few#2283. 境[jing4] (土#13 竟#1194) border; place; condition; boundary; circumstances; territory#2284. 电脑[dian4 nao3] (电#433 脑#1038) computer; CL:臺|台[tai2]#2285. 孤[gu1] (子#47 瓜#1485) lone; lonely#2286. 全部[quan2 bu4] (全#458 部#668) whole; all#2287. 驾[jia4] (加#408 马#70) surname Jia; to harness; to draw (a cart etc); to drive; to pilot; to sail; to ride; your good self; prefixed word denoting respect (polite 敬辭|敬辞[jing4 ci2])#2288. 理解[li3 jie3] (理#658 解#706) to comprehend; to understand#2289. 不许[bu4 xu3] (不#23 许#437) not to allow; must not; can't#2290. 醉[zui4] (酉#493 卒#1467) intoxicated#2291. 乐队[yue4 dui4] (乐#671 队#529) band; pop group; CL:支[zhi1]#2292. 鬲[ge2] (一#1 口#3 𦉪#2293 丅#116) surname Ge; earthen pot; iron cauldron; ancient ceramic three-legged vessel used for cooking with cord markings on the outside and hollow legs#2293. 𦉪(冂#57 儿#50) #2294. 健[jian4] (亻#7 建#996) healthy; to invigorate; to strengthen; to be good at; to be strong in#2295. 闯[chuang3] (门#51 马#70) to rush; to charge; to dash; to break through; to temper oneself (through battling hardships)#2296. 熟[shu2] (孰#2268 灬#134) ripe; mature; thoroughly cooked; done; familiar; acquainted; experienced; skilled; (of sleep etc) deep; profound; also pr. [shou2]#2297. 孛[bei4] (十#10 冖#96 子#47) comet#2298. 寄[ji4] (宀#66 奇#734) to entrust; to place in sb's care; (bound form) to depend on; to attach oneself to; to reside temporarily; (bound form) foster (as in 寄女[ji4nu:3] foster daughter); to send by post; to mail#2299. 聂[nie4] (耳#235 双#780) surname Nie; to whisper#2300. 胖[pan2] (月#40 半#564) healthy; at ease; fat; plump#2301. 女生[nu:3 sheng1] (女#29 生#167) schoolgirl; female student; girl#2302. 齿[chi3] (止#92 凵#90 人#6) tooth; CL:顆|颗[ke1]#2303. 组织[zu3 zhi1] (组#1010 织#2025) to organize; organization; (biology) tissue; (textiles) weave; CL:個|个[ge4]#2304. 重新[chong2 xin1] (重#566 新#656) again; once more; re-#2305. 后来[hou4 lai2] (后#270 来#87) afterwards; later; newly arrived#2306. 厷[gong1] (𠂇#54 厶#17) old variant of 肱[gong1]; old variant of 宏[hong2]#2307. 姑娘[gu1 niang5] (姑#1841 娘#1395) girl; young woman; young lady; daughter; paternal aunt (old); CL:個|个[ge4]#2308. 政府[zheng4 fu3] (政#1531 府#1834) government; CL:個|个[ge4]#2309. 智[zhi4] (知#249 日#15) (literary) wise; wisdom#2310. 观众[guan1 zhong4] (观#1284 众#1283) spectators; audience; visitors (to an exhibition etc)#2311. 滑[hua2] (氵#60 骨#1289) surname Hua; to slip; to slide; slippery; smooth; sly; slippery; not to be trusted#2312. 省[sheng3] (少#360 目#72) to save; to economize; to be frugal; to omit; to delete; to leave out; province; provincial capital; a ministry (of the Japanese government); (bound form) to scrutinize; (bound form) to reflect (on one's conduct); (bound form) to come to realize; (bound form) to pay a visit (to one's parents or elders)#2313. 突然[tu1 ran2] (突#1717 然#409) sudden; abrupt; unexpected#2314. 剩下[sheng4 xia4] (剩#1716 下#109) to remain; to be left over#2315. 𠬶(コ#293 一#1 冖#96 又#34) #2316. 染[ran3] (氿#2317 木#38) to dye; to catch (a disease); to acquire (bad habits etc); to contaminate; to add color washes to a painting#2317. 氿[gui3] (氵#60 九#455) mountain spring#2318. 贲[ben1] (卉#1928 贝#189) surname Ben; energetic; bright#2319. 仇[qiu2] (亻#7 九#455) surname Qiu; hatred; animosity; enmity; foe; enemy; to feel animosity toward (the wealthy, foreigners etc); spouse; companion; variant of 仇[chou2]; variant of 仇[chou2]#2320. 第三(第#539 三#171) #2321. 啬[se4] (土#13 丷#31 回#260) stingy#2322. 研究[yan2 jiu1] (研#2045 究#1703) research; a study; CL:項|项[xiang4]; to research; to look into#2323. 盒[he2] (合#153 皿#456) small box; case#2324. 面对[mian4 dui4] (面#428 对#113) to face; to confront#2325. 寻找[xun2 zhao3] (寻#1540 找#301) to seek; to look for#2326. 战争[zhan4 zheng1] (战#893 争#724) war; conflict; CL:場|场[chang2],次[ci4]#2327. 老天[lao3 tian1] (老#372 天#124) God; Heavens#2328. 附近[fu4 jin4] (附#1939 近#950) nearby; neighboring; (in the) vicinity (of); neighborhood#2329. 魂[hun2] (云#73 鬼#774) old variant of 魂[hun2]; soul; spirit; immortal soul (that can be detached from the body)#2330. 碎[sui4] (石#348 卒#1467) (transitive or intransitive) to break into pieces; to shatter; to crumble; broken; fragmentary; scattered; garrulous#2331. 矛[mao2] (龴#314 𠄐#841 丿#2) spear; lance; pike#2332. 投票[tou2 piao4] (投#1068 票#835) to vote; vote#2333. 皇[huang2] (白#20 王#97) surname Huang; emperor; old variant of 惶[huang2]#2334. 拼[pin1] (扌#52 并#431) to piece together; to put together; to pool (resources etc); to share; to risk all; to go all out; to spell (words)#2335. 埃[ai1] (土#13 矣#1684) abbr. for Egypt 埃及[Ai1ji2] or Ethiopia 埃塞俄比亞|埃塞俄比亚[Ai1sai4e2bi3ya4]; dust; dirt; angstrom; phonetic ai or e#2336. 交易[jiao1 yi4] (交#499 易#1005) to deal; to trade; to transact; transaction; deal; CL:筆|笔[bi3]#2337. 摩[ma1] (麻#632 手#211) used in 摩挲[ma1sa5]; to rub#2338. 妹妹[mei4 mei5] (妹#1304 妹#1304) younger sister; young woman; CL:個|个[ge4]#2339. 婊[biao3] (女#29 表#652) prostitute#2340. 匙[chi2] (是#39 匕#44) spoon; used in 鑰匙|钥匙[yao4 shi5]#2341. 施[shi1] (方#198 㐌#1426) surname Shi; (bound form) to put into effect (regulations etc); to distribute (alms etc); to apply (fertilizer etc)#2342. 恶心[e3 xin1] (恶#1206 心#61) variant of 惡心|恶心[e3 xin1]; nausea; to feel sick; disgust; nauseating; to embarrass (deliberately); bad habit; vicious habit; vice#2343. 会儿(会#76 儿#50) #2344. 受伤[shou4 shang1] (受#585 伤#678) to sustain injuries; wounded (in an accident etc); harmed#2345. 露[lu4] (雨#468 路#791) surname Lu; to show; to reveal; to betray; to expose; dew; syrup; nectar; outdoors (not under cover); to show; to reveal; to betray; to expose#2346. 袭[xi2] (龙#1055 衣#544) (bound form) to raid; to attack; (bound form) to continue the pattern; to perpetuate; (literary) classifier for suits of clothing or sets of bedding#2347. 婊子[biao3 zi5] (婊#2339 子#47) prostitute; whore#2348. 人物[ren2 wu4] (人#6 物#686) person; personage; figure (esp. sb of importance); character (in a play, novel etc); (genre of traditional Chinese painting) figure painting#2349. 氾[fan2] (氵#60 㔾#252) used in given names and as a surname#2350. 范[fan4] (艹#150 氾#2349) pattern; model; example; surname Fan#2351. 做到[zuo4 dao4] (做#239 到#127) to accomplish; to achieve#2352. 屎[shi3] (尸#99 米#240) feces; excrement; a stool; (bound form) secretion (of the ear, eye etc)#2353. 墙[qiang2] (土#13 啬#2321) variant of 牆|墙[qiang2]; wall (CL:面[mian4],堵[du3]); (slang) to block (a website) (usu. in the passive: 被牆|被墙[bei4 qiang2])#2354. 公园[gong1 yuan2] (公#419 园#1565) park (for public recreation); CL:座[zuo4]#2355. 庆[qing4] (广#194 大#35) to celebrate#2356. 目前[mu4 qian2] (目#72 前#346) at the present time; currently#2357. 沃[wo4] (氵#60 夭#595) fertile; rich; to irrigate; to wash (of river)#2358. 硬[ying4] (石#348 更#362) hard; stiff; solid; (fig.) strong; firm; resolutely; uncompromisingly; laboriously; with great difficulty; good (quality); able (person); (of food) filling; substantial#2359. 摄[she4] (扌#52 聂#2299) (bound form) to take in; to absorb; to assimilate; to capture (video or still images); (literary) to conserve (one's health); (literary) to act for#2360. 钥[yue4] (钅#227 月#40) key; also pr. [yao4]#2361. 失败[shi1 bai4] (失#618 败#1533) to be defeated; to lose; to fail (e.g. experiments); failure; defeat; CL:次[ci4]#2362. 剂[ji4] (齐#1310 刂#67) dose (medicine)#2363. 干净[gan1 jing4] (干#162 净#2023) clean; neat#2364. 有时[you3 shi2] (有#63 时#224) sometimes; now and then#2365. 肥[fei2] (月#40 巴#74) fat; fertile; loose-fitting or large; to fertilize; to become rich by illegal means; fertilizer; manure#2366. 婚礼[hun1 li3] (婚#982 礼#993) wedding ceremony; wedding; CL:場|场[chang3]#2367. 限[xian4] (阝#46 艮#98) to limit; to restrict; (bound form) limit; bound#2368. 冷静[leng3 jing4] (冷#1242 静#1396) calm; cool-headed; dispassionate; (of a place) deserted; quiet#2369. 陷[xian4] (阝#46 臽#1879) pitfall; trap; to get stuck; to sink; to cave in; to frame (false charge); to capture (a city in battle); to fall (to the enemy); defect#2370. 厨[chu2] (厂#219 𭔰#2371) old variant of 廚|厨[chu2]; kitchen#2371. 𭔰(豆#440 寸#42) #2372. 工厂[gong1 chang3] (工#144 厂#219) factory; CL:家[jia1],座[zuo4]#2373. 㝴(元#257 寸#42) #2374. 冠[guan4] (冖#96 㝴#2373) surname Guan; hat; crown; crest; cap; to put on a hat; to be first; to dub#2375. 串[chuan4] (吕#1216 丨#11) to string together; to skewer; to connect wrongly; to gang up; to rove; string; bunch; skewer; classifier for things that are strung together, or in a bunch, or in a row: string of, bunch of, series of; to make a swift or abrupt linear movement (like a bead on an abacus); to move across#2376. 事件[shi4 jian4] (事#182 件#460) incident; event#2377. 禁[jin1] (林#421 示#391) to endure; to prohibit; to forbid#2378. 残[can2] (歹#248 戋#418) to destroy; to spoil; to ruin; to injure; cruel; oppressive; savage; brutal; incomplete; disabled; to remain; to survive; remnant; surplus#2379. 垃[la1] (土#13 立#122) used in 垃圾[la1 ji1]; Taiwan pr. [le4]#2380. 生意[sheng1 yi4] (生#167 意#417) life force; vitality; business; CL:筆|笔[bi3]#2381. 大卫[da4 wei4] (大#35 卫#1140) (name) David#2382. 贞[zhen1] (⺊#45 贝#189) chaste#2383. 圾[ji1] (土#13 及#465) used in 垃圾[la1 ji1]; Taiwan pr. [se4]#2384. 洲[zhou1] (氵#60 州#1094) continent; island in a river#2385. 信息[xin4 xi1] (信#494 息#986) information; news; message#2386. 凭[ping2] (任#583 几#141) variant of 憑|凭[ping2]; to lean against; to rely on; on the basis of; no matter (how, what etc); proof#2387. 奄[yan3] (大#35 电#433) surname Yan; variant of 閹|阉[yan1]; to castrate; variant of 淹[yan1]; to delay; suddenly; abruptly; hastily; to cover; to surround#2388. 辈[bei4] (非#387 车#180) lifetime; generation; group of people; class; classifier for generations; (literary) classifier for people#2389. 老婆[lao3 po2] (老#372 婆#1878) (coll.) wife#2390. 悲[bei1] (非#387 心#61) sad; sadness; sorrow; grief#2391. 对付[dui4 fu5] (对#113 付#654) to handle; to deal with; to tackle; to get by with; to make do; (dialect) (usu. used in the negative) to get along with (sb)#2392. 唔[wu2] (口#3 吾#1026) oh (expression of agreement or surprise); (Cantonese) not#2393. 明显[ming2 xian3] (明#411 显#1209) clear; distinct; obvious#2394. 宾[bin1] (宀#66 兵#1275) visitor; guest; object (in grammar)#2395. 严重[yan2 zhong4] (严#1611 重#566) grave; serious; severe; critical#2396. 启[qi3] (户#358 口#3) variant of 啟|启[qi3]; variant of 啟|启[qi3]; Qi son of Yu the Great 禹[Yu3], reported founder of the Xia Dynasty 夏朝[Xia4 Chao2] (c. 2070-c. 1600 BC); to open; to start; to initiate; to enlighten or awaken; to state; to inform#2397. 照顾[zhao4 gu5] (照#870 顾#1608) to take care of; to show consideration; to attend to; to look after#2398. 贴[tie1] (贝#189 占#184) to stick; to paste; to post (e.g. on a blog); to keep close to; to fit snugly; to subsidize; allowance (e.g. money for food or housing); sticker; classifier for sticking plaster: strip#2399. 享受[xiang3 shou4] (享#1176 受#585) to enjoy; to live it up; pleasure; CL:種|种[zhong3]#2400. 胁[xie2] (月#40 办#490) flank (the side of one's torso); to coerce; to threaten; variant of 脅|胁[xie2]#2401. 炒[chao3] (火#187 少#360) to sauté; to stir-fry; to speculate (in real estate etc); to scalp; to hype up; to sack; to fire (sb)#2402. 犯罪[fan4 zui4] (犯#743 罪#1138) to commit a crime; crime; offense#2403. 惯[guan4] (忄#140 贯#2206) accustomed to; used to; indulge; to spoil (a child)#2404. 正好[zheng4 hao3] (正#251 好#69) just (in time); just right; just enough; to happen to; to chance to; by chance; it just so happens that#2405. 队长[dui4 zhang3] (队#529 长#308) captain; team leader; CL:個|个[ge4]#2406. 日本[ri4 ben3] (日#15 本#343) Japan#2407. 聪明[cong1 ming5] (聪#2260 明#411) intelligent; clever; bright; acute (of sight and hearing)#2408. 正确[zheng4 que4] (正#251 确#739) correct; sound; right; proper#2409. 火车[huo3 che1] (火#187 车#180) train; CL:列[lie4],節|节[jie2],班[ban1],趟[tang4]#2410. 姓[xing4] (女#29 生#167) family name; surname; to be surnamed ...#2411. 白痴[bai2 chi1] (白#20 痴#2234) idiocy; idiot#2412. 款[kuan3] (士#205 示#391 欠#183) section; paragraph; funds; CL:筆|笔[bi3],個|个[ge4]; classifier for versions or models (of a product)#2413. 奶奶[nai3 nai5] (奶#1125 奶#1125) (informal) grandma (paternal grandmother); (respectful) mistress of the house; CL:位[wei4]; (coll.) boobies; breasts#2414. 一分(一#1 分#306) #2415. 停止[ting2 zhi3] (停#814 止#92) to stop; to halt; to cease#2416. 菲[fei1] (艹#150 非#387) abbr. for the Philippines 菲律賓|菲律宾[Fei1 lu:4 bin1]; luxuriant (plant growth); rich with fragrance; phenanthrene C14H10; poor; humble; unworthy; radish (old)#2417. 开门[kai1 men2] (开#157 门#51) to open a door (lit. and fig.); to open for business#2418. 女性[nu:3 xing4] (女#29 性#713) woman; the female sex#2419. 帕[pa4] (巾#151 白#20) to wrap; kerchief; handkerchief; headscarf; pascal (SI unit)#2420. 杜[du4] (木#38 土#13) surname Du; birchleaf pear (tree); to stop; to prevent; to restrict#2421. 夋(厶#17 八#41 夂#165) #2422. 席[xi2] (广#194 廿#801 巾#151) surname Xi; woven mat; seat; banquet; place in a democratic assembly; classifier for banquets, conversations etc; variant of 席[xi2]; woven mat#2423. 糖[tang2] (米#240 唐#1891) sugar; sweets; candy; CL:顆|颗[ke1],塊|块[kuai4]; old variant of 糖[tang2]#2424. 属于[shu3 yu2] (属#1779 于#342) to be classified as; to belong to; to be part of#2425. 咪[mi1] (口#3 米#240) sound for calling a cat#2426. 茶[cha2] (艹#150 人#6 朩#197) tea; tea plant; CL:杯[bei1],壺|壶[hu2]#2427. 动物[dong4 wu4] (动#444 物#686) animal; CL:隻|只[zhi1],群[qun2],個|个[ge4]#2428. 由于[you2 yu2] (由#368 于#342) due to; as a result of; thanks to; owing to; since; because#2429. 发誓[fa1 shi4] (发#302 誓#2048) to vow; to pledge; to swear#2430. 伸[shen1] (亻#7 申#660) to stretch; to extend#2431. 钥匙[yao4 shi5] (钥#2360 匙#2340) key; CL:把[ba3]#2432. 贱[jian4] (贝#189 戋#418) inexpensive; lowly; despicable; (bound form) (humble) my#2433. 宫[gong1] (宀#66 吕#1216) surname Gong; palace; temple; castration (as corporal punishment); first note in pentatonic scale#2434. 兴趣[xing4 qu4] (兴#677 趣#1389) interest (desire to know about sth); interest (thing in which one is interested); hobby; CL:個|个[ge4]#2435. 活动[huo2 dong4] (活#546 动#444) to exercise; to move about; to operate; to use connections (personal influence); loose; shaky; active; movable; activity; campaign; maneuver; behavior; CL:項|项[xiang4],個|个[ge4]#2436. 上次[shang4 ci4] (上#56 次#284) last time#2437. 雄[xiong2] (厷#2306 隹#209) male; staminate; grand; imposing; powerful; mighty; person or state having great power and influence#2438. 哥哥[ge1 ge5] (哥#722 哥#722) older brother; CL:個|个[ge4],位[wei4]#2439. 同样[tong2 yang4] (同#482 样#264) same; equal; similar; similarly; also; too#2440. 角色[jue2 se4] (角#390 色#594) role; part (in a play or movie etc); also pr. [jiao3se4]#2441. 威胁[wei1 xie2] (威#1326 胁#2400) to threaten; to menace#2442. 脑子[nao3 zi5] (脑#1038 子#47) brains; mind; CL:個|个[ge4]#2443. 邮[you2] (由#368 阝#46) post (office); mail#2444. 谅[liang4] (讠#36 京#131) to show understanding; to excuse; to presume; to expect#2445. 杂志[za2 zhi4] (杂#1440 志#1438) magazine; CL:本[ben3],份[fen4],期[qi1]#2446. 池[chi2] (氵#60 也#28) surname Chi; pond; reservoir; moat#2447. 徒[tu2] (彳#75 走#147) surname Tu; (bound form) disciple; apprentice; believer; (derog.) wrongdoer (as in 騙徒|骗徒[pian4tu2] "swindler" or 叛徒[pan4tu2] "traitor" etc); (bound form) on foot; (bound form) bare; empty; (bound form) to no avail; in vain; (bound form) merely; just; only; (bound form) prison sentence#2448. 不幸[bu4 xing4] (不#23 幸#1088) misfortune; adversity; unfortunate; sad; unfortunately; CL:個|个[ge4]#2449. 怀孕[huai2 yun4] (怀#1328 孕#1974) pregnant; to have conceived; gestation; pregnancy#2450. 服务[fu2 wu4] (服#769 务#958) to serve; service; CL:項|项[xiang4]#2451. 责任[ze2 ren4] (责#1103 任#583) responsibility; blame; duty; CL:個|个[ge4]#2452. 劝[quan4] (又#34 力#78) to advise; to urge; to try to persuade; to exhort; to console; to soothe#2453. 星期[xing1 qi1] (星#719 期#1069) week; CL:個|个[ge4]; day of the week; Sunday#2454. 仍然[reng2 ran2] (仍#1236 然#409) still; as before; yet#2455. 正是[zheng4 shi4] (正#251 是#39) is precisely#2456. 痛苦[tong4 ku3] (痛#1451 苦#1524) pain; suffering; painful; CL:個|个[ge4]#2457. 车上(车#180 上#56) #2458. 逮[dai3] (辶#33 隶#1496) (coll.) to catch; to seize; to capture; (literary) to reach; used in 逮捕[dai4bu3] (Taiwan pr. [dai3])#2459. 睡觉[shui4 jiao4] (睡#1057 觉#464) to go to bed; to sleep#2460. 受到[shou4 dao4] (受#585 到#127) to receive (praise, an education, punishment etc); to be ...ed (praised, educated, punished etc)#2461. 线索[xian4 suo3] (线#945 索#1566) trail; clues; thread (of a story)#2462. 面前[mian4 qian2] (面#428 前#346) in front of; facing; (in the) presence (of)#2463. 汁[zhi1] (氵#60 十#10) juice#2464. 错误[cuo4 wu4] (错#450 误#1696) mistaken; false; wrong; error; mistake; CL:個|个[ge4]#2465. 卢[lu2] (⺊#45 尸#99) surname Lu; abbr. for Luxembourg 盧森堡|卢森堡[Lu2sen1bao3]; (old) rice vessel; black; old variant of 廬|庐[lu2]; (slang) (Tw) troublesome; fussy#2466. 内心[nei4 xin1] (内#414 心#61) heart; innermost being; (math.) incenter#2467. 随便[sui2 bian4] (随#1312 便#1044) as one wishes; as one pleases; at random; negligent; casual; wanton#2468. 今年[jin1 nian2] (今#370 年#340) this year#2469. 赖[lai4] (束#636 负#1134) surname Lai; (Tw) (coll.) LINE messaging app; to depend on; to hang on in a place; bad; to renege (on promise); to disclaim; to rat (on debts); rascally; to blame; to put the blame on; variant of 賴|赖[lai4]#2470. 死去[si3 qu4] (死#271 去#80) to die#2471. 专业[zhuan1 ye4] (专#560 业#413) specialty; specialized field; main field of study (at university); major; CL:門|门[men2],個|个[ge4]; professional#2472. 源[yuan2] (氵#60 原#646) root; source; origin#2473. 钻[zuan4] (钅#227 占#184) variant of 鑽|钻[zuan4]; to drill; to bore; to get into; to make one's way into; to enter (a hole); to thread one's way through; to study intensively; to dig into; to curry favor for personal gain; drill; auger; diamond#2474. 法律[fa3 lu:4] (法#443 律#1172) law; CL:條|条[tiao2], 套[tao4], 個|个[ge4]#2475. 虎[hu3] (虍#995 几#141) tiger; CL:隻|只[zhi1]#2476. 只能[zhi3 neng2] (只#164 能#155) can only; obliged to do sth; to have no other choice#2477. 兴奋[xing1 fen4] (兴#677 奋#2026) excited; excitement; (physiology) excitation#2478. 疯子[feng1 zi5] (疯#886 子#47) madman; lunatic#2479. 臿[cha1] (千#185 臼#767) to separate the grain from the husk#2480. 插[cha1] (扌#52 臿#2479) to insert; stick in; pierce; to take part in; to interfere; to interpose; old variant of 插[cha1]#2481. 颗[ke1] (果#332 页#311) classifier for small spheres, pearls, corn grains, teeth, hearts, satellites etc#2482. 技术[ji4 shu4] (技#1674 术#869) technology; technique; skill; CL:門|门[men2],種|种[zhong3],項|项[xiang4]#2483. 子弹[zi3 dan4] (子#47 弹#1215) bullet; CL:粒[li4],顆|颗[ke1],發|发[fa1]#2484. 经常[jing1 chang2] (经#349 常#613) frequently; constantly; regularly; often; day-to-day; everyday; daily#2485. 寓[yu4] (宀#66 禺#1062) (bound form) to reside; to inhabit; (bound form) residence; dwelling; (bound form) to imply; to place; to contain (sth abstract); variant of 寓[yu4]#2486. 倍[bei4] (亻#7 咅#576) (two, three etc) -fold; times (multiplier); double; to increase or multiply#2487. 银行[yin2 hang2] (银#1921 行#316) bank; CL:家[jia1],個|个[ge4]#2488. 怖[bu4] (忄#140 布#543) terror; terrified; afraid; frightened#2489. 客人[ke4 ren2] (客#992 人#6) visitor; guest; customer; client; CL:位[wei4]#2490. 舒[shu1] (舍#1260 予#910) surname Shu; to stretch; to unfold; to relax; leisurely#2491. 女朋友[nu:3 peng2 you5] (女#29 朋#592 友#298) girlfriend#2492. 括[kuo4] (扌#52 舌#199) (bound form) to tie up; to tighten up; (bound form) to include; to comprise; to put (text) in brackets; Taiwan pr. [gua1]#2493. 停下[ting2 xia4] (停#814 下#109) to stop#2494. 出生[chu1 sheng1] (出#192 生#167) to be born#2495. 原来[yuan2 lai2] (原#646 来#87) original; former; originally; formerly; at first; so, actually, as it turns out#2496. 彻[che4] (彳#75 切#382) thorough; penetrating; to pervade; to pass through#2497. 差不多[cha4 bu5 duo1] (差#1145 不#23 多#204) almost; nearly; more or less; about the same; good enough; not bad#2498. 参与[can1 yu4] (参#917 与#323) to participate (in sth)#2499. 址[zhi3] (土#13 止#92) (bound form) site; location; foundation of a building (variant of 址[zhi3]); islet (variant of 沚[zhi3])#2500. 酒吧[jiu3 ba1] (酒#846 吧#126) bar (place to buy drinks); CL:家[jia1]#2501. 会议[hui4 yi4] (会#76 议#974) meeting; conference; CL:場|场[chang3],屆|届[jie4]#2502. 忠[zhong1] (中#174 心#61) loyal; devoted; faithful#2503. 佰[bai3] (亻#7 百#943) hundred (banker's anti-fraud numeral)#2504. 队伍[dui4 wu3] (队#529 伍#2031) ranks; troops; queue; line; procession; CL:個|个[ge4],支[zhi1],條|条[tiao2]#2505. 握[wo4] (扌#52 屋#898) to hold; to grasp; to clench (one's fist); (bound form) to have in one's control; classifier: a handful#2506. 什么样[shen2 me5 yang4] (什#89 么#58 样#264) what kind?; what sort?#2507. 说明[shuo1 ming2] (说#125 明#411) to explain; to illustrate; to indicate; to show; to prove; explanation; directions; caption; CL:個|个[ge4]#2508. 一刻(一#1 刻#1186) #2509. 纯[chun2] (纟#91 屯#1141) pure; simple; unmixed; genuine#2510. 客气[ke4 qi5] (客#992 气#501) polite; courteous; formal; modest#2511. 载[zai3] (𢦏#1220 车#180) to record in writing; to carry (i.e. publish in a newspaper etc); Taiwan pr. [zai4]; year; to carry; to convey; to load; to hold; to fill up; and; also; as well as; simultaneously#2512. 埋[mai2] (土#13 里#158) to bury; used in 埋怨[man2 yuan4]#2513. 周末[zhou1 mo4] (周#570 末#1431) weekend#2514. 宿[su4] (宀#66 佰#2503) old variant of 宿[su4]; surname Su; lodge for the night; old; former; night; classifier for nights; constellation#2515. 兔[tu4] (免#467 丶#4) variant of 兔[tu4]; rabbit#2516. 肚[du3] (月#40 土#13) tripe; belly#2517. 女王[nu:3 wang2] (女#29 王#97) queen#2518. 叛[pan4] (半#564 反#481) to betray; to rebel; to revolt#2519. 其它[qi2 ta1] (其#338 它#246) (adjective) other#2520. 去年[qu4 nian2] (去#80 年#340) last year#2521. 析[xi1] (木#38 斤#117) to separate; to divide; to analyze#2522. 液[ye4] (氵#60 夜#1042) (bound form) a liquid; also pr. [yi4]#2523. 佬[lao3] (亻#7 老#372) male; man (Cantonese)#2524. 损[sun3] (扌#52 员#586) to decrease; to lose; to damage; to harm; (coll.) to ridicule; to deride; (coll.) caustic; sarcastic; nasty; mean; one of the 64 hexagrams of the Book of Changes: ䷨#2525. 卡车[ka3 che1] (卡#747 车#180) truck; CL:輛|辆[liang4]#2526. 女友[nu:3 you3] (女#29 友#298) girlfriend#2527. 见鬼[jian4 gui3] (见#123 鬼#774) absurd; strange; (interj.) curse it!; to hell with it!#2528. 妓[ji4] (女#29 支#634) prostitute#2529. 伤心[shang1 xin1] (伤#678 心#61) to grieve; to be broken-hearted; to feel deeply hurt#2530. 之类[zhi1 lei4] (之#256 类#1048) and so on; and such#2531. 适合[shi4 he2] (适#1553 合#153) to fit; to suit#2532. 叒[ruo4] (又#34 双#780) old variant of 若[ruo4]; obedient; ancient mythical tree#2533. 侵[qin1] (亻#7 𠬶#2315) to invade; to encroach; to infringe; to approach#2534. 珍[zhen1] (王#97 㐱#1493) precious thing; treasure; culinary delicacy; rare; valuable; to value highly; variant of 珍[zhen1]#2535. 失望[shi1 wang4] (失#618 望#691) disappointed; to lose hope; to despair#2536. 上班[shang4 ban1] (上#56 班#1190) to go to work; to be on duty; to start work; to go to the office#2537. 精神[jing1 shen2] (精#1324 神#880) spirit; mind; consciousness; thought; mental; psychological; essence; gist; CL:個|个[ge4]; vigor; vitality; spirited; good-looking#2538. 赚[zhuan4] (贝#189 兼#788) to earn; to make a profit; to cheat; to swindle#2539. 住手[zhu4 shou3] (住#461 手#211) to desist; to stop; to stay one's hand#2540. 答应[da1 ying5] (答#1281 应#506) to answer; to respond; to answer positively; to agree; to accept; to promise#2541. 无关[wu2 guan1] (无#424 关#329) unrelated; having nothing to do (with sth else)#2542. 著[zhu4] (艹#150 者#161) to make known; to show; to prove; to write; book; outstanding#2543. 军队[jun1 dui4] (军#757 队#529) armed forces; troops; CL:支[zhi1],個|个[ge4]#2544. 原谅[yuan2 liang4] (原#646 谅#2444) to excuse; to forgive; to pardon#2545. 显然[xian3 ran2] (显#1209 然#409) clearly; evidently; obviously#2546. 包括[bao1 kuo4] (包#422 括#2492) to comprise; to include; to involve; to incorporate; to consist of#2547. 拒绝[ju4 jue2] (拒#2251 绝#961) to refuse; to decline; to reject#2548. 敌人[di2 ren2] (敌#1976 人#6) enemy; CL:個|个[ge4]#2549. 公寓[gong1 yu4] (公#419 寓#2485) apartment building; block of flats (may be a public housing block or a condominium etc) (CL:套[tao4])#2550. 厉害[li4 hai5] (厉#1927 害#728) (used to describe sb or sth that makes a very strong impression, whether favorable or unfavorable) terrible; intense; severe; devastating; amazing; awesome; outstanding; (of a person) stern; strict; harsh; shrewd; tough; (of an animal) fierce; (of a resemblance) striking; (of liquor or chili pepper) strong; (of bacteria) virulent#2551. 材[cai2] (木#38 才#193) material; timber; ability; aptitude; a capable individual; coffin (old)#2552. 淘[tao2] (氵#60 匋#1965) to wash; to clean out; to cleanse; to eliminate; to dredge#2553. 遇到[yu4 dao4] (遇#1647 到#127) to meet; to run into; to come across#2554. 怒[nu4] (奴#994 心#61) anger; fury; flourishing; vigorous#2555. 软[ruan3] (车#180 欠#183) soft; flexible; variant of 軟|软[ruan3]#2556. 许多[xu3 duo1] (许#437 多#204) many; a lot of; much#2557. 仅仅[jin3 jin3] (仅#977 仅#977) barely; only; merely; only (this and nothing more)#2558. 拾[she4] (扌#52 合#153) to ascend in light steps; to pick up; to collate or arrange; ten (banker's anti-fraud numeral)#2559. 构[gou4] (木#38 勾#1313) variant of 構|构[gou4]; (Tw) (coll.) variant of 夠|够[gou4]; to reach by stretching; to construct; to form; to make up; to compose; literary composition; paper mulberry (Broussonetia papyrifera)#2560. 在乎[zai4 hu5] (在#55 乎#755) to rest with; to lie in; to be due to (a certain attribute); (often used in the negative) to care about#2561. 想象[xiang3 xiang4] (想#178 象#374) to imagine; to envision; imagination#2562. 客户[ke4 hu4] (客#992 户#358) client; customer#2563. 挡[dang3] (扌#52 当#299) to resist; to obstruct; to hinder; to keep off; to block (a blow); to get in the way of; cover; gear (e.g. in a car's transmission); to arrange; to put in order; variant of 擋|挡[dang3]#2564. 巨大[ju4 da4] (巨#1021 大#35) huge; immense; enormous; gigantic#2565. 诗[shi1] (讠#36 寺#276) abbr. for Shijing 詩經|诗经[Shi1 jing1], the Book of Songs; poem; CL:首[shou3]; poetry; verse#2566. 恐怖[kong3 bu4] (恐#1492 怖#2488) terrible; frightful; frightening; terror; terrorist#2567. 不然[bu4 ran2] (不#23 然#409) not so; no; or else; otherwise; if not; How about ...?#2568. 叶[xie2] (口#3 十#10) to be in harmony; surname Ye; leaf; page; lobe; (historical) period; classifier for small boats#2569. 中国[zhong1 guo2] (中#174 国#612) China#2570. 哎[ai1] (口#3 艾#1126) hey!; (interjection used to attract attention or to express surprise or disapprobation)#2571. 不对[bu4 dui4] (不#23 对#113) incorrect; wrong; amiss; abnormal; queer#2572. 加上[jia1 shang4] (加#408 上#56) plus; to put in; to add; to add on; to add into; in addition; on top of that#2573. 胆[dan3] (月#40 旦#102) gall bladder; courage; guts; gall; inner container (e.g. bladder of a football, inner container of a thermos)#2574. 姐姐[jie3 jie5] (姐#895 姐#895) older sister; CL:個|个[ge4]#2575. 垃圾[la1 ji1] (垃#2379 圾#2383) trash; refuse; garbage; (coll.) of poor quality; Taiwan pr. [le4 se4]#2576. 违[wei2] (辶#33 韦#923) to disobey; to violate; to separate; to go against#2577. 意识[yi4 shi2] (意#417 识#754) consciousness; awareness; (usu. followed by 到[dao4]) to be aware of; to realize#2578. 帽[mao4] (巾#151 冒#1362) old variant of 帽[mao4]; hat; cap#2579. 恭[gong1] (共#617 㣺#1924) respectful#2580. 吃饭[chi1 fan4] (吃#401 饭#1111) to have a meal; to eat; to make a living#2581. 避[bi4] (辶#33 辟#1752) to avoid; to shun; to flee; to escape; to keep away from; to leave; to hide from#2582. 心里[xin1 li5] (心#61 里#158) chest; heart; mind#2583. 试图[shi4 tu2] (试#675 图#1217) to attempt; to try#2584. 足够[zu2 gou4] (足#1185 够#748) enough; sufficient#2585. 摇[yao2] (扌#52 䍃#2065) surname Yao; to shake; to rock; to row; to crank#2586. 竞[jing4] (立#122 兄#111) to compete; to contend; to struggle#2587. 罚[fa2] (罒#396 讠#36 刂#67) to punish; to penalize; to fine; variant of 罰|罚[fa2]#2588. 触[chu4] (角#390 虫#410) to touch; to make contact with sth; to stir up sb's emotions#2589. 逢[feng2] (辶#33 夆#1869) to meet by chance; to come across; (of a calendar event) to come along; (of an event) to fall on (a particular day); to fawn upon#2590. 位置[wei4 zhi5] (位#524 置#1646) position; place; seat; CL:個|个[ge4]#2591. 于是[yu2 shi4] (于#342 是#39) thereupon; as a result; consequently; thus; hence#2592. 嘘[xu1] (口#3 虚#1919) to exhale slowly; to hiss; hush!#2593. 不在乎[bu4 zai4 hu5] (不#23 在#55 乎#755) not to care#2594. 嫁[jia4] (女#29 家#307) (of a woman) to marry; to marry off a daughter; to shift (blame etc)#2595. 呼吸[hu1 xi1] (呼#1355 吸#1076) to breathe#2596. 踢[ti1] (𧾷#262 易#1005) to kick; to play (e.g. soccer); (slang) butch (in a lesbian relationship)#2597. 猎[lie4] (犭#312 昔#388) hunting#2598. 好处[hao3 chu3] (好#69 处#579) easy to get along with; benefit; advantage; merit; gain; profit; also pr. [hao3chu4]#2599. 侯[hou2] (亻#7 ユ#511 矢#175) surname Hou; marquis, second of the five orders of ancient Chinese nobility 五等爵位[wu3deng3 jue2wei4]; nobleman; high official; used in 閩侯|闽侯[Min3hou4] (the name of a place in Fujian)#2600. 迫[po4] (辶#33 白#20) variant of 迫[po4]; to persecute; to oppress; embarrassed; used in 迫擊炮|迫击炮[pai3ji1pao4]; to force; to compel; to approach or go towards; urgent; pressing#2601. 士兵[shi4 bing1] (士#205 兵#1275) soldier; CL:個|个[ge4]#2602. 抬[tai2] (扌#52 台#378) to lift; to raise; (of two or more persons) to carry; variant of 抬[tai2]#2603. 减[jian3] (冫#81 咸#534) to lower; to decrease; to reduce; to subtract; to diminish#2604. 拨[bo1] (扌#52 发#302) to push aside with the hand, foot, a stick etc; to dial; to allocate; to set aside (money); to poke (the fire); to pluck (a string instrument); to turn round; classifier: group, batch#2605. 信号[xin4 hao4] (信#494 号#551) signal#2606. 成员[cheng2 yuan2] (成#335 员#586) member#2607. 敏[min3] (每#345 攵#114) (bound form) quick; nimble; agile; (bound form) quick-witted; smart#2608. 分开[fen1 kai1] (分#306 开#157) to separate; to part#2609. 意见[yi4 jian4] (意#417 见#123) idea; opinion; suggestion; objection; complaint; CL:點|点[dian3],條|条[tiao2]#2610. 真相[zhen1 xiang4] (真#222 相#160) the truth about sth; the actual facts#2611. 权利[quan2 li4] (权#1054 利#633) right (i.e. an entitlement to sth); (classical) power and wealth#2612. 趴[pa1] (𧾷#262 八#41) to lie on one's stomach; to lean forward, resting one's upper body (on a desktop etc); (Tw) percent#2613. 艺术[yi4 shu4] (艺#1586 术#869) art#2614. 真实[zhen1 shi2] (真#222 实#530) true; real#2615. 俄[e2] (亻#7 我#14) Russia; Russian; abbr. for 俄羅斯|俄罗斯[E2 luo2 si1]; Taiwan pr. [E4]; suddenly; very soon#2616. 美丽[mei3 li4] (美#541 丽#1253) beautiful#2617. 杉[shan1] (木#38 彡#373) China fir; Cunninghamia lanceolata; also pr. [sha1]#2618. 佳[jia1] (亻#7 圭#519) surname Jia; beautiful; fine; good#2619. 估计[gu1 ji4] (估#2131 计#525) to estimate; to assess; to calculate; (coll.) to reckon; to think (that ...)#2620. 悔[hui3] (忄#140 每#345) (bound form) to regret; to repent#2621. 习惯[xi2 guan4] (习#630 惯#2403) habit; custom; usual practice; to be used to; CL:個|个[ge4]#2622. 不见[bu4 jian4] (不#23 见#123) not to see; not to meet; to have disappeared; to be missing#2623. 核[he2] (木#38 亥#212) pit; stone; nucleus; nuclear; to examine; to check; to verify; variant of 核[he2]; to investigate#2624. 地上[di4 shang5] (地#317 上#56) on the ground; on the floor#2625. 名单[ming2 dan1] (名#453 单#693) list of names#2626. 糟糕[zao1 gao1] (糟#1409 糕#2082) too bad; how terrible; what bad luck; terrible; bad#2627. 崔[cui1] (山#334 隹#209) surname Cui; (literary) (of mountains) lofty#2628. 娃[wa2] (女#29 圭#519) baby; doll#2629. 时刻[shi2 ke4] (时#224 刻#1186) time; juncture; moment; period of time; CL:個|个[ge4],段[duan4]; constantly; always#2630. 天气[tian1 qi4] (天#124 气#501) weather#2631. 提供[ti2 gong1] (提#867 供#1705) to offer; to supply; to provide; to furnish#2632. 哥们[ge1 men5] (哥#722 们#64) Brothers!; brethren; dude (colloquial); brother (diminutive form of address between males)#2633. 车子[che1 zi5] (车#180 子#47) car or other vehicle (bicycle, truck etc)#2634. 去世[qu4 shi4] (去#80 世#689) to pass away; to die#2635. 剪[jian3] (前#346 刀#59) surname Jian; (bound form) scissors or similar tool; to cut as with scissors; (bound form) to wipe out; to exterminate; to edit (video, audio etc)#2636. 新闻[xin1 wen2] (新#656 闻#1432) news; CL:條|条[tiao2],個|个[ge4]#2637. 挣[zheng1] (扌#52 争#724) used in 掙扎|挣扎[zheng1 zha2]; to struggle to get free; to strive to acquire; to make (money)#2638. 相当[xiang1 dang1] (相#160 当#299) equivalent to; appropriate; considerably; to a certain extent; fairly; quite#2639. 桥[qiao2] (木#38 乔#1066) bridge; CL:座[zuo4]#2640. 付出[fu4 chu1] (付#654 出#192) to pay; to expend; to invest (energy or time)#2641. 叔叔[shu1 shu5] (叔#1424 叔#1424) father's younger brother; uncle; Taiwan pr. [shu2 shu5]; CL:個|个[ge4]#2642. 胎[tai1] (月#40 台#378) fetus; classifier for litters (of puppies etc); padding (in clothing or bedding); womb carrying a fetus; (fig.) origin; source; (loanword) tire#2643. 乏[fa2] (丿#2 之#256) short of; tired#2644. 二十[er4 shi2] (二#27 十#10) twenty; 20#2645. 序[xu4] (广#194 予#910) (bound form) order; sequence; (bound form) introductory; initial; preface#2646. 绿[lu:4] (纟#91 录#976) green; (slang) (derived from 綠帽子|绿帽子[lu:4 mao4 zi5]) to cheat on (one's spouse or boyfriend or girlfriend)#2647. 巫[wu1] (工#144 从#133) surname Wu; also pr. [Wu2]; witch; wizard; shaman; also pr. [wu2]#2648. 喊[han3] (口#3 咸#534) to yell; to shout; to call out for (a person)#2649. 咯[ge1] (口#3 各#355) (phonetic); (final particle similar to 了[le5], indicating that sth is obvious); to cough up; also pr. [ka3]#2650. 柜[gui4] (木#38 巨#1021) variant of 櫃|柜[gui4]; Salix multinervis; cupboard; cabinet; wardrobe#2651. 翻[fan1] (番#1489 羽#1083) to turn over; to flip over; to overturn; to rummage through; to translate; to decode; to double; to climb over or into; to cross; variant of 翻[fan1]#2652. 王子[wang2 zi3] (王#97 子#47) prince; son of a king#2653. 朗[lang3] (丶#4 ⑤ 月#40) clear; bright#2654. 袭击[xi2 ji1] (袭#2346 击#787) attack (esp. surprise attack); raid; to attack#2655. 失踪[shi1 zong1] (失#618 踪#1814) to be missing; to disappear; unaccounted for#2656. 武器[wu3 qi4] (武#1583 器#1232) weapon; arms; CL:種|种[zhong3]#2657. 地区[di4 qu1] (地#317 区#694) local; regional; district (not necessarily formal administrative unit); region; area; as suffix to city name, means prefecture or county (area administered by a prefecture-level city or, county-level city); CL:個|个[ge4]#2658. 高中[gao1 zhong1] (高#454 中#174) senior high school; abbr. for 高級中學|高级中学[gao1 ji2 zhong1 xue2]; to pass brilliantly (used in congratulatory fashion)#2659. 听听(听#273 听#273) #2660. 只不过[zhi3 bu5 guo4] (只#164 不#23 过#148) only; merely; nothing but; no more than; it's just that ...#2661. 开口[kai1 kou3] (开#157 口#3) to open one's mouth; to start to talk#2662. 要是[yao4 shi5] (要#103 是#39) (coll.) if#2663. 躺[tang3] (身#281 尚#1486) to recline; to lie down#2664. 迟到[chi2 dao4] (迟#1632 到#127) to arrive late#2665. 带走[dai4 zou3] (带#449 走#147) to carry; to take away#2666. 地址[di4 zhi3] (地#317 址#2499) address; CL:個|个[ge4]#2667. 食物[shi2 wu4] (食#1053 物#686) food; CL:種|种[zhong3]#2668. 兮[xi1] (八#41 丂#379) (particle in old Chinese similar to 啊)#2669. 鼠[shu3] (臼#767 ⑦) (bound form) rat; mouse#2670. 小组[xiao3 zu3] (小#16 组#1010) group#2671. 评委[ping2 wei3] (评#1555 委#1677) evaluation committee; judging panel; judging panel member; adjudicator (abbr. for 評選委員會委員|评选委员会委员[ping2xuan3 wei3yuan2hui4 wei3yuan2])#2672. 不好意思[bu4 hao3 yi4 si5] (不#23 好#69 意#417 思#784) to feel embarrassed; to find it embarrassing; to be sorry (for inconveniencing sb)#2673. 经过[jing1 guo4] (经#349 过#148) to pass; to go through; process; course; CL:個|个[ge4]#2674. 汇[hui4] (氵#60 匚#367) to remit; to converge (of rivers); to exchange; class; collection; variant of 匯|汇[hui4]#2675. 自我[zi4 wo3] (自#142 我#14) self-; ego (psychology)#2676. 路上[lu4 shang5] (路#791 上#56) on the road; on the way; en route#2677. 国王[guo2 wang2] (国#612 王#97) king#2678. 豸[zhi4] worm-like invertebrate; mythical animal (see 獬豸[xie4 zhi4]); radical in Chinese characters (Kangxi radical 153)#2679. 大约[da4 yue1] (大#35 约#575) approximately; probably#2680. 祖[zu3] (礻#394 且#136) surname Zu; ancestor; forefather; grandparents#2681. 含[han2] (今#370 口#3) to keep in the mouth; to contain#2682. 再说[zai4 shuo1] (再#244 说#125) to say again; to put off a discussion until later; moreover; what's more; besides#2683. 天才[tian1 cai2] (天#124 才#193) talent; gift; genius; talented; gifted#2684. 桑[sang1] (叒#2532 木#38) surname Sang; (bound form) mulberry tree; old variant of 桑[sang1]#2685. 美好[mei3 hao3] (美#541 好#69) beautiful; fine#2686. 合适[he2 shi4] (合#153 适#1553) suitable; fitting; appropriate#2687. 惨[can3] (忄#140 参#917) miserable; wretched; cruel; inhuman; disastrous; tragic; dim; gloomy#2688. 毕业[bi4 ye4] (毕#1687 业#413) graduation; to graduate; to finish school#2689. 练习[lian4 xi2] (练#1233 习#630) to practice; exercise; drill; practice; CL:個|个[ge4]#2690. 之内[zhi1 nei4] (之#256 内#414) inside; within#2691. 犯人[fan4 ren2] (犯#743 人#6) convict; prisoner; criminal#2692. 绕[rao4] (纟#91 尧#1119) to wind; to coil (thread); to rotate around; to spiral; to move around; to go round (an obstacle); to by-pass; to make a detour; to confuse; to perplex; variant of 繞|绕[rao4], to rotate around; to spiral; to move around; to go round (an obstacle); to by-pass; to make a detour#2693. 丌[ji1] (一#1 丿#2 丨#11) surname Ji; "pedestal" component in Chinese characters; old variant of 其[qi2]#2694. 畀[bi4] (田#168 丌#2693) to confer on; to give to#2695. 仙[xian1] (亻#7 山#334) immortal; variant of 仙[xian1]#2696. 圣诞[sheng4 dan4] (圣#622 诞#1852) Christmas; birthday of reigning Emperor; Confucius' birthday#2697. 黑人[hei1 ren2] (黑#475 人#6) black person; an illegal#2698. 汗[han2] (氵#60 干#162) see 可汗[ke4 han2], 汗國|汗国[han2 guo2]; perspiration; sweat; CL:滴[di1],頭|头[tou2],身[shen1]; to be speechless (out of helplessness, embarrassment etc) (Internet slang used as an interjection)#2699. 摸[mo1] (扌#52 莫#920) to feel with the hand; to touch; to stroke; to grope; to steal; to abstract; variant of 摹[mo2]#2700. 安静[an1 jing4] (安#407 静#1396) quiet; peaceful; calm#2701. 正式[zheng4 shi4] (正#251 式#531) formal; official#2702. 吊[diao4] (口#3 巾#151) to suspend; to hang up; to hang a person; a string of 100 cash (arch.); to lament; to condole with; variant of 吊[diao4]#2703. 英国[ying1 guo2] (英#1067 国#612) United Kingdom 聯合王國|联合王国[Lian2 he2 wang2 guo2]; United Kingdom of Great Britain and Northern Ireland; abbr. for England 英格蘭|英格兰[Ying1 ge2 lan2]#2704. 立刻[li4 ke4] (立#122 刻#1186) immediately; at once; right away#2705. 攴[pu1] (⺊#45 又#34) to tap; to knock lightly; old variant of 撲|扑[pu1]#2706. 绝不[jue2 bu4] (绝#961 不#23) in no way; not in the least; absolutely not#2707. 婴[ying1] (贝#189 贝#189 女#29) infant; baby#2708. 鲍[bao4] (鱼#873 包#422) surname Bao; abalone#2709. 途[tu2] (辶#33 余#772) way; route; road#2710. 雅[ya3] (牙#474 隹#209) elegant#2711. 对手[dui4 shou3] (对#113 手#211) opponent; rival; competitor; (well-matched) adversary; match#2712. 多谢[duo1 xie4] (多#204 谢#397) many thanks; thanks a lot#2713. 阁[ge2] (门#51 各#355) pavilion (usu. two-storied); cabinet (politics); boudoir; woman's chamber; rack; shelf#2714. 吸引[xi1 yin3] (吸#1076 引#1065) to attract; to appeal to; to fascinate#2715. 年代[nian2 dai4] (年#340 代#726) a decade of a century (e.g. the Sixties); age; era; period; CL:個|个[ge4]#2716. 世上[shi4 shang4] (世#689 上#56) on earth#2717. 枼(世#689 木#38) #2718. 宜[yi2] (宀#66 且#136) surname Yi; proper; should; suitable; appropriate#2719. 授[shou4] (扌#52 受#585) (bound form) to confer; to give; (bound form) to teach; to instruct; (literary) to appoint#2720. 宛[wan3] (宀#66 夗#1940) surname Wan; winding; as if#2721. 漫[man4] (氵#60 曼#1117) free; unrestrained; to inundate#2722. 扭[niu3] (扌#52 丑#850) to turn; to twist; to wring; to sprain; to swing one's hips#2723. 诊[zhen3] (讠#36 㐱#1493) to examine or treat medically#2724. 幕[mu4] (莫#920 巾#151) curtain or screen; canopy or tent; headquarters of a general; act (of a play); old variant of 幕[mu4]; curtain; screen#2725. 键[jian4] (钅#227 建#996) key (on a piano or computer keyboard); button (on a mouse or other device); chemical bond; linchpin#2726. 瑟[se4] (玨#2097 必#504) a type of standing harp, smaller than konghou 箜篌, with 5-25 strings#2727. 惜[xi1] (忄#140 昔#388) to cherish; to begrudge; to pity; Taiwan pr. [xi2]#2728. 不得不[bu4 de2 bu4] (不#23 得#202 不#23) have no choice or option but to; cannot but; have to; can't help it; can't avoid#2729. 通知[tong1 zhi1] (通#819 知#249) to notify; to inform; notice; notification; CL:個|个[ge4]#2730. 一千(一#1 千#185) #2731. 作用[zuo4 yong4] (作#359 用#196) to act on; to affect; action; function; activity; impact; result; effect; purpose; intent; (suffix) -ation, -tion etc, as in 抑制作用[yi4 zhi4 zuo4 yong4], inhibition#2732. 中间[zhong1 jian1] (中#174 间#384) the middle; the inside; in the middle; within; between; among; during; in the meantime#2733. 剑[jian4] (佥#561 刂#67) double-edged sword; CL:口[kou3],把[ba3]; classifier for blows of a sword; variant of 劍|剑[jian4]#2734. 巛[chuan1] (𡿨#1598 𡿨#1598 𡿨#1598) old variant of 川[chuan1]#2735. 一会[yi1 hui4] (一#1 会#76) a moment; a while; in a moment; also pr. [yi1 hui3]#2736. 狼[lang2] (犭#312 良#648) wolf; CL:匹[pi3],隻|只[zhi1],條|条[tiao2]#2737. 丞[cheng2] (氶#2738 一#1) deputy#2738. 氶(乛#8 水#457) #2739. 小伙子[xiao3 huo3 zi5] (小#16 伙#547 子#47) young man; young guy; lad; youngster; CL:個|个[ge4]#2740. 账[zhang4] (贝#189 长#308) account; bill; debt; CL:本[ben3],筆|笔[bi3]#2741. 值得[zhi2 de5] (值#1554 得#202) worth the money; to merit; to deserve; to be worth (doing sth)#2742. 天使[tian1 shi3] (天#124 使#824) angel#2743. 伤口[shang1 kou3] (伤#678 口#3) wound; cut#2744. 居然[ju1 ran2] (居#768 然#409) unexpectedly; to one's surprise; go so far as to#2745. 测试[ce4 shi4] (测#1702 试#675) to test (machinery etc); to test (a person's skill in a particular area); a test; (computing) beta (version of software)#2746. 汰[tai4] (氵#60 太#173) to discard; to eliminate#2747. 购[gou4] (贝#189 勾#1313) to buy; to purchase#2748. 不够[bu4 gou4] (不#23 够#748) not enough; insufficient; inadequate#2749. 妆[zhuang1] (丬#377 女#29) (of a woman) to adorn oneself; makeup; adornment; trousseau; stage makeup and costume; variant of 妝|妆[zhuang1]#2750. 爵[jue2] (爫#266 罒#396 𡬠#2751) ancient bronze wine holder with 3 legs and loop handle; nobility#2751. 𡬠(⑤ 寸#42) #2752. 同志[tong2 zhi4] (同#482 志#1438) comrade; (slang) homosexual; CL:位[wei4],個|个[ge4]#2753. 回头[hui2 tou2] (回#260 头#207) to turn round; to turn one's head; later; by and by#2754. 嫌[xian2] (女#29 兼#788) to dislike; suspicion; resentment; enmity; abbr. for 嫌犯[xian2 fan4], criminal suspect#2755. 兟[shen1] (先#259 先#259) to advance#2756. 权力[quan2 li4] (权#1054 力#78) power; authority#2757. 心理[xin1 li3] (心#61 理#658) psychology; mentality#2758. 闲[xian2] (门#51 木#38) enclosure; (variant of 閒|闲[xian2]) idle; unoccupied; leisure; idle; unoccupied; leisure#2759. 述[shu4] (辶#33 术#869) (bound form) to state; to tell; to narrate; to relate#2760. 意外[yi4 wai4] (意#417 外#568) unexpected; accident; mishap; CL:個|个[ge4]#2761. 明星[ming2 xing1] (明#411 星#719) star; celebrity#2762. 赞[zan4] (兟#2755 贝#189) variant of 讚|赞[zan4]; variant of 贊|赞[zan4]; to praise; variant of 贊|赞[zan4]; to patronize; to support; to praise; (Internet slang) to like (an online post on Facebook etc)#2763. 手里[shou3 li3] (手#211 里#158) in hand; (a situation is) in sb's hands#2764. 不知[bu4 zhi1] (不#23 知#249) not to know; unaware; unknowingly; fig. not to admit (defeat, hardships, tiredness etc)#2765. 更加[geng4 jia1] (更#362 加#408) more (than sth else); even more#2766. 辣[la4] (辛#854 束#636) old variant of 辣[la4]; hot (spicy); pungent; (of chili pepper, raw onions etc) to sting; to burn#2767. 将军[jiang1 jun1] (将#548 军#757) (common place name); general; high-ranking military officer; to check or checkmate; fig. to embarrass; to challenge; to put sb on the spot#2768. 破坏[po4 huai4] (破#1222 坏#770) destruction; damage; to wreck; to break; to destroy#2769. 耐[nai4] (而#231 寸#42) (bound form) to bear; to endure; to withstand#2770. 陆[lu4] (阝#46 击#787) surname Lu; six (banker's anti-fraud numeral); (bound form) land (as opposed to the sea)#2771. 死者[si3 zhe3] (死#271 者#161) the dead; the deceased#2772. 宇[yu3] (宀#66 于#342) room; universe#2773. 梅[mei2] (木#38 每#345) surname Mei; plum; plum flower; Japanese apricot (Prunus mume); variant of 梅[mei2]; old variant of 梅[mei2]#2774. 杆[gan1] (木#38 干#162) pole; CL:條|条[tiao2],根[gen1]; stick; pole; lever; classifier for long objects such as guns#2775. 性感[xing4 gan3] (性#713 感#578) sex appeal; eroticism; sexuality; sexy#2776. 鼻[bi2] (自#142 畀#2694) nose#2777. 烈[lie4] (列#1051 灬#134) ardent; intense; fierce; stern; upright; to give one's life for a noble cause; exploits; achievements#2778. 协议[xie2 yi4] (协#1796 议#974) agreement; pact; protocol; CL:項|项[xiang4]#2779. 目的[mu4 di4] (目#72 的#22) purpose; aim; goal; target; objective; CL:個|个[ge4]#2780. 上周[shang4 zhou1] (上#56 周#570) last week#2781. 毫无[hao2 wu2] (毫#2015 无#424) not in the least; to completely lack#2782. 司机[si1 ji1] (司#621 机#471) chauffeur; driver#2783. 撒谎[sa1 huang3] (撒#1862 谎#1662) to tell lies#2784. 丧[sang1] (土#13 丷#31 𠄌#664 乀#49 丿#2) mourning; funeral; (old) corpse; to lose sth abstract but important (courage, authority, one's life etc); to be bereaved of (one's spouse etc); to die; disappointed; discouraged#2785. 淘汰[tao2 tai4] (淘#2552 汰#2746) to wash out; (fig.) to cull; to weed out; to eliminate; to die out; to phase out#2786. 产生[chan3 sheng1] (产#954 生#167) to arise; to come into being; to come about; to give rise to; to bring into being; to bring about; to produce; to engender; to generate#2787. 侦[zhen1] (亻#7 贞#2382) to scout; to spy; to detect; old variant of 偵|侦[zhen1]#2788. 恭喜[gong1 xi3] (恭#2579 喜#562) to congratulate; (interj.) congratulations!#2789. 石头[shi2 tou5] (石#348 头#207) stone; CL:塊|块[kuai4]#2790. 肤[fu1] (月#40 夫#287) skin#2791. 之外[zhi1 wai4] (之#256 外#568) outside; excluding#2792. 销[xiao1] (钅#227 肖#758) to melt (metal); to cancel; to annul; to sell; to expend; to spend; pin; bolt; to fasten with a pin or bolt#2793. 犮[ba2] (友#298 丶#4) old variant of 拔[ba2]; old variant of 犬[quan3]#2794. 梯[ti1] (木#38 弟#756) (bound form) ladder; stairs#2795. 冻[dong4] (冫#81 东#438) to freeze; to feel very cold; aspic or jelly#2796. 谓[wei4] (讠#36 胃#2013) surname Wei; to speak; to say; to name; to designate; meaning; sense#2797. 战斗[zhan4 dou4] (战#893 斗#709) to fight; to engage in combat; struggle; battle; CL:場|场[chang2],次[ci4]#2798. 咒[zhou4] (吅#498 几#141) variant of 咒[zhou4]; incantation; magic spell; curse; malediction; to revile; to put a curse on sb#2799. 门口[men2 kou3] (门#51 口#3) doorway; gate; CL:個|个[ge4]#2800. 而是[er2 shi4] (而#231 是#39) rather#2801. 堡[bao3] (保#620 土#13) (bound form) fortress; stronghold; (often used to transliterate -berg, -burg etc in place names); (bound form) burger (abbr. for 漢堡|汉堡[han4bao3]); village (used in place names); variant of 鋪|铺[pu4]; used in place names#2802. 最终[zui4 zhong1] (最#380 终#1127) final; ultimate#2803. 浪费[lang4 fei4] (浪#1721 费#1189) to waste; to squander#2804. 好事[hao3 shi4] (好#69 事#182) good action, deed, thing or work (also sarcastic, "a fine thing indeed"); charity; happy occasion; Daoist or Buddhist ceremony for the souls of the dead; to be meddlesome#2805. 英雄[ying1 xiong2] (英#1067 雄#2437) hero; CL:個|个[ge4]#2806. 现实[xian4 shi2] (现#268 实#530) reality; actuality; real; actual; realistic; pragmatic; materialistic; self-interested#2807. 熊[xiong2] (能#155 灬#134) surname Xiong; bear; (coll.) to scold; to rebuke; (coll.) weak; incapable#2808. 做出[zuo4 chu1] (做#239 出#192) to put out; to issue#2809. 小丑[xiao3 chou3] (小#16 丑#850) clown#2810. 邪[xie2] (牙#474 阝#46) old variant of 邪[xie2]; demonic; iniquitous; nefarious; evil; unhealthy influences that cause disease (Chinese medicine); (coll.) strange; abnormal#2811. 代价[dai4 jia4] (代#726 价#1259) price; cost; consideration (in share dealing)#2812. 愉[yu2] (忄#140 俞#855) pleased#2813. 确认[que4 ren4] (确#739 认#365) to confirm; to verify; confirmation#2814. 穷[qiong2] (穴#392 力#78) poor; destitute; to use up; to exhaust; thoroughly; extremely; (coll.) persistently and pointlessly#2815. 怀疑[huai2 yi2] (怀#1328 疑#1601) to doubt (sth); to be skeptical of; to have one's doubts; to harbor suspicions; to suspect that#2816. 夷[yi2] (大#35 弓#237) non-Han people, esp. to the East of China; barbarians; to wipe out; to exterminate; to tear down; to raze#2817. 灾[zai1] (宀#66 火#187) disaster; calamity; variant of 災|灾[zai1]; old variant of 災|灾[zai1]#2818. 同性恋[tong2 xing4 lian4] (同#482 性#713 恋#1739) homosexuality; gay person; gay love#2819. 毒品[du2 pin3] (毒#1163 品#858) drugs; narcotics; poison#2820. 运动[yun4 dong4] (运#876 动#444) to move; to exercise; sports; exercise; motion; movement; campaign; CL:場|场[chang3]#2821. 扇[shan1] (户#358 羽#1083) to fan; to slap sb on the face; fan; sliding, hinged or detachable flat part of sth; classifier for doors, windows etc#2822. 就要[jiu4 yao4] (就#139 要#103) will; shall; to be going to#2823. 幼[you4] (幺#363 力#78) young#2824. 彼此[bi3 ci3] (彼#2183 此#221) each other; one another#2825. 盗[dao4] (次#284 皿#456) to steal; to rob; to plunder; thief; bandit; robber#2826. 显示[xian3 shi4] (显#1209 示#391) to show; to illustrate; to display; to demonstrate#2827. 演员[yan3 yuan2] (演#936 员#586) actor; actress; performer#2828. 护士[hu4 shi5] (护#952 士#205) nurse#2829. 冠军[guan4 jun1] (冠#2374 军#757) champion#2830. 晕[yun1] (日#15 军#757) confused; dizzy; giddy; to faint; to swoon; to lose consciousness; to pass out; dizzy; halo; ring around moon or sun#2831. 哼[heng1] (口#3 亨#2088) to groan; to snort; to hum; to croon; humph!; interjection expressing dissatisfaction or suspicion#2832. 刷[shua1] (𡰯#2833 刂#67) a brush; to paint; to daub; to brush; to scrub; (fig.) to remove; to eliminate (from a contest); to fire (from a job); (onom.) swish; rustle; to swipe (a card); to scroll on (a phone); (gaming) to grind; to farm (for experience points, equipment, levels etc); to select#2833. 𡰯(尸#99 巾#151) #2834. 机场[ji1 chang3] (机#471 场#503) airport; airfield; (slang) service provider for Shadowsocks or similar software for circumventing Internet censorship; CL:家[jia1],處|处[chu4]#2835. 处于[chu3 yu2] (处#579 于#342) to be in (some state, position, or condition)#2836. 牧[mu4] (牛#216 攵#114) surname Mu; to herd; to breed livestock; to govern (old); government official (old)#2837. 见见(见#123 见#123) #2838. 琳[lin2] (王#97 林#421) gem#2839. 拔[ba2] (扌#52 犮#2793) to pull up; to pull out; to draw out by suction; to select; to pick; to stand out (above level); to surpass; to seize#2840. 邻[lin2] (令#496 阝#46) neighbor; adjacent; close to; variant of 鄰|邻[lin2]#2841. 表示[biao3 shi4] (表#652 示#391) (of sb) to express; to state; to show; (of sth) to indicate; to signify; to show; expression; manifestation#2842. 公主[gong1 zhu3] (公#419 主#295) princess#2843. 仰[yang3] (亻#7 卬#1035) surname Yang; to face upward; to look up; to admire; to rely on#2844. 爷爷[ye2 ye5] (爷#1732 爷#1732) (coll.) paternal grandfather; grandpa#2845. 弯[wan1] (亦#507 弓#237) to bend; bent; a bend; a turn (in a road etc); CL:道[dao4]#2846. 豪[hao2] (亠#26 口#3 冖#96 豕#297) grand; heroic#2847. 侧[ce4] (亻#7 则#843) the side; to incline towards; to lean; inclined; lateral; side; lean on one side#2848. 地球[di4 qiu2] (地#317 球#799) the earth#2849. 默[mo4] (黑#475 犬#279) silent; to write from memory#2850. 痕[hen2] (疒#389 艮#98) scar; traces#2851. 根据[gen1 ju4] (根#892 据#1223) according to; based on; basis; foundation; CL:個|个[ge4]#2852. 浴[yu4] (氵#60 谷#888) bath; to bathe#2853. 以来[yi3 lai2] (以#172 来#87) since (a previous event)#2854. 傲[ao4] (亻#7 敖#2198) proud; arrogant; to despise; unyielding; to defy#2855. 翰[han4] (𠦝#1319 人#6 羽#1083) surname Han; writing brush; writing; pen#2856. 屋子[wu1 zi5] (屋#898 子#47) house; room; CL:間|间[jian1]#2857. 络[lao4] (纟#91 各#355) small net; net-like object; to hold sth in place with a net; to wind; to twist; (TCM) channels in the human body#2858. 磨[mo2] (麻#632 石#348) to rub; to grind; to polish; to sharpen; to wear down; to die out; to waste time; to pester; to insist; grindstone; to grind; to turn round#2859. 疾[ji2] (疒#389 矢#175) (bound form) disease; ailment; (bound form) swift; (literary) to hate; to abhor#2860. 不仅[bu4 jin3] (不#23 仅#977) not just; not limited to; (as a correlative conjunction) not only (..., but also ...)#2861. 比尔[bi3 er3] (比#261 尔#24) Bill (name)#2862. 黾[meng3] (口#3 电#433) toad; to strive#2863. 呵[a1] (口#3 可#84) variant of 啊[a1]; (bound form) to scold; to expel breath; (onom.) laughter (usu. reduplicated); interjection of surprise#2864. 干杯[gan1 bei1] (干#162 杯#928) to drink a toast; Cheers! (proposing a toast); Here's to you!; Bottoms up!; lit. dry cup#2865. 尽管[jin3 guan3] (尽#861 管#785) despite; although; even though; in spite of; unhesitatingly; do not hesitate (to ask, complain etc); (go ahead and do it) without hesitating#2866. 造成[zao4 cheng2] (造#1250 成#335) to bring about; to create; to cause#2867. 泳[yong3] (氵#60 永#882) swimming; to swim#2868. 感受[gan3 shou4] (感#578 受#585) to sense; perception; to feel (through the senses); to experience; a feeling; an impression; an experience#2869. 哟[yo1] (口#3 约#575) Oh! (interjection indicating slight surprise); also pr. [yao1]; (sentence-final particle expressing exhortation); (syllable filler in a song)#2870. 旅行[lu:3 xing2] (旅#1710 行#316) to travel; journey; trip; CL:趟[tang4],次[ci4]#2871. 英里[ying1 li3] (英#1067 里#158) mile (unit of length equal to 1.609 km)#2872. 矶[ji1] (石#348 几#141) breakwater; jetty#2873. 秋[qiu1] (禾#107 火#187) surname Qiu; autumn; fall; harvest time; old variant of 秋[qiu1]; used in 鞦韆|秋千[qiu1qian1]#2874. 每次[mei3 ci4] (每#345 次#284) every time#2875. 可不[ke3 bu5] (可#84 不#23) see 可不是[ke3 bu5 shi4]#2876. 伏[fu2] (亻#7 犬#279) surname Fu; to lean over; to fall (go down); to hide (in ambush); to conceal oneself; to lie low; hottest days of summer; to submit; to concede defeat; to overcome; to subdue; volt#2877. 十二[shi2 er4] (十#10 二#27) twelve; 12#2878. 挤[ji3] (扌#52 齐#1310) to crowd in; to cram in; to force others aside; to press; to squeeze; to find (time in one's busy schedule)#2879. 欲[yu4] (谷#888 欠#183) desire; appetite; passion; lust; greed; to wish for; to desire; variant of 慾|欲[yu4]#2880. 状况[zhuang4 kuang4] (状#1592 况#1155) condition; state; situation; CL:個|个[ge4]#2881. 砍[kan3] (石#348 欠#183) to chop; to cut down; to throw sth at sb#2882. 旁边[pang2 bian1] (旁#1483 边#589) side; adjacent place#2883. 时光[shi2 guang1] (时#224 光#742) time; era; period of time#2884. 走开[zou3 kai1] (走#147 开#157) to leave; to walk away; to beat it; to move aside#2885. 心脏[xin1 zang4] (心#61 脏#1656) heart; CL:顆|颗[ke1],個|个[ge4]#2886. 记者[ji4 zhe3] (记#516 者#161) reporter; journalist; CL:個|个[ge4]#2887. 尽快[jin3 kuai4] (尽#861 快#290) as quickly as possible; as soon as possible; see 儘快|尽快[jin3 kuai4]#2888. 鼓[gu3] (壴#540 支#634) old variant of 鼓[gu3]; drum; CL:通[tong4],面[mian4]; to drum; to strike; to rouse; to bulge; to swell#2889. 仔细[zi3 xi4] (仔#1731 细#1590) careful; attentive; cautious; to be careful; to look out; (dialect) thrifty; frugal#2890. 男朋友[nan2 peng2 you5] (男#559 朋#592 友#298) boyfriend#2891. 不可[bu4 ke3] (不#23 可#84) cannot; should not; must not#2892. 怨[yuan4] (夗#1940 心#61) to blame; (bound form) resentment; hatred; grudge#2893. 地狱[di4 yu4] (地#317 狱#1458) hell; infernal; underworld; (Buddhism) Naraka#2894. 名人[ming2 ren2] (名#453 人#6) personage; celebrity#2895. 肙[yuan1] (口#3 月#40) a small worm; to twist; to surround; empty#2896. 泥[ni2] (氵#60 尼#241) mud; clay; paste; pulp; restrained#2897. 互相[hu4 xiang1] (互#1968 相#160) each other; mutually; mutual#2898. 想想(想#178 想#178) #2899. 获得[huo4 de2] (获#1828 得#202) to obtain; to receive; to get#2900. 椅[yi3] (木#38 奇#734) chair#2901. 舒服[shu1 fu5] (舒#2490 服#769) comfortable; feeling well#2902. 队员[dui4 yuan2] (队#529 员#586) team member#2903. 佩[pei4] (亻#7 𫥞#2904) to respect; to wear (belt etc); girdle ornaments#2904. 𫥞(几#141 帀#723) #2905. 收拾[shou1 shi5] (收#764 拾#2558) to put in order; to tidy up; to pack; to repair; (coll.) to sort sb out; to fix sb#2906. 自然[zi4 ran2] (自#142 然#409) nature; natural; naturally#2907. 法国[fa3 guo2] (法#443 国#612) France#2908. 状态[zhuang4 tai4] (状#1592 态#1691) condition; state; state of affairs; CL:個|个[ge4]#2909. 隔[ge2] (阝#46 鬲#2292) to separate; to partition; to stand or lie between; at a distance from; after or at an interval of#2910. 太阳[tai4 yang5] (太#173 阳#1826) sun; sunlight; sunshine; temple (on the side of the human head) (abbr. for 太陽穴|太阳穴[tai4yang2xue2])#2911. 法庭[fa3 ting2] (法#443 庭#1366) court of law#2912. 社会[she4 hui4] (社#1730 会#76) society; CL:個|个[ge4]#2913. 午饭[wu3 fan4] (午#383 饭#1111) lunch; CL:份[fen4],頓|顿[dun4],次[ci4],餐[can1]#2914. 在于[zai4 yu2] (在#55 于#342) to rest with; to lie in; to be due to (a certain attribute); (of a matter) to be determined by; to be up to (sb)#2915. 周围[zhou1 wei2] (周#570 围#1557) environs; surroundings; periphery#2916. 时代[shi2 dai4] (时#224 代#726) Time, US weekly news magazine; age; era; epoch; period (in one's life); CL:個|个[ge4]#2917. 摔[shuai1] (扌#52 率#1917) to throw down; to fall; to drop and break#2918. 影响[ying3 xiang3] (影#1161 响#1742) influence; effect; to influence; to affect (usually adversely); to disturb; CL:股[gu3]#2919. 差点[cha4 dian3] (差#1145 点#225) almost; nearly#2920. 演出[yan3 chu1] (演#936 出#192) to act (in a play); to perform; to put on (a performance); performance; concert; show; CL:場|场[chang3],次[ci4]#2921. 出口[chu1 kou3] (出#192 口#3) an exit; CL:個|个[ge4]; to speak; to export; (of a ship) to leave port#2922. 暂[zan4] (斩#2211 日#15) temporary; Taiwan pr. [zhan4]; to scurry; variant of 暫|暂[zan4]#2923. 到达[dao4 da2] (到#127 达#931) to reach; to arrive#2924. 超级[chao1 ji2] (超#1219 级#1199) super-; ultra-; hyper-#2925. 盛[sheng4] (成#335 皿#456) surname Sheng; to hold; to contain; to ladle; to pick up with a utensil; flourishing; vigorous; magnificent; extensively#2926. 侠[xia2] (亻#7 夹#1668) knight-errant; brave and chivalrous; hero; heroic#2927. 道歉[dao4 qian4] (道#250 歉#947) to apologize#2928. 项目[xiang4 mu4] (项#1573 目#72) item; project; (sports) event; CL:個|个[ge4]#2929. 圆[yuan2] (囗#86 员#586) circle; round; circular; spherical; (of the moon) full; unit of Chinese currency (yuan); tactful; to make consistent and whole (the narrative of a dream or a lie)#2930. 答案[da2 an4] (答#1281 案#795) answer; solution; CL:個|个[ge4]#2931. 愉快[yu2 kuai4] (愉#2812 快#290) cheerful; happy; pleasant; delighted#2932. 屈[qu1] (尸#99 出#192) surname Qu; bent; to feel wronged#2933. 狠[hen3] (犭#312 艮#98) ruthless; fierce; ferocious; determined; resolute; to harden (one's heart); old variant of 很[hen3]#2934. 分析[fen1 xi1] (分#306 析#2521) to analyze; analysis; CL:個|个[ge4]#2935. 押[ya1] (扌#52 甲#143) to mortgage; to pawn; to detain in custody; to escort and protect; (literary) to sign#2936. 稳[wen3] (禾#107 急#1085) settled; steady; stable#2937. 既然[ji4 ran2] (既#1353 然#409) since; as; this being the case#2938. 符[fu2] (竹#191 付#654) surname Fu; mark; sign; talisman; to seal; to correspond to; tally; symbol; written charm; to coincide#2939. 桌子[zhuo1 zi5] (桌#1991 子#47) table; desk; CL:張|张[zhang1],套[tao4]#2940. 叫做[jiao4 zuo4] (叫#328 做#239) to be called; to be known as#2941. 事业[shi4 ye4] (事#182 业#413) undertaking; project; activity; (charitable, political or revolutionary) cause; publicly funded institution, enterprise or foundation; career; occupation; CL:個|个[ge4]#2942. 潜[qian2] (氵#60 替#1407) hidden; secret; latent; to hide; to conceal; to submerge; to dive#2943. 困难[kun4 nan5] (困#1502 难#653) difficult; challenging; straitened circumstances; difficult situation#2944. 党[dang3] (龸#479 兄#111) surname Dang; party; association; club; society; CL:個|个[ge4]#2945. 团队[tuan2 dui4] (团#1210 队#529) team#2946. 零[ling2] (雨#468 令#496) zero; nought; zero sign; fractional; fragmentary; odd (of numbers); (placed between two numbers to indicate a smaller quantity followed by a larger one); fraction; (in mathematics) remainder (after division); extra; to wither and fall; to wither#2947. 充满[chong1 man3] (充#909 满#1278) full of; brimming with; very full; permeated#2948. 执行[zhi2 xing2] (执#826 行#316) to implement; to carry out; to execute; to run#2949. 偏[pian1] (亻#7 扁#817) to lean; to slant; oblique; prejudiced; to deviate from average; to stray from the intended line; stubbornly; contrary to expectations#2950. 土地[tu3 di4] (土#13 地#317) land; soil; territory; CL:片[pian4],塊|块[kuai4]; local god; genius loci#2951. 洋[yang2] (氵#60 羊#152) ocean; vast; foreign; silver dollar or coin#2952. 究竟[jiu1 jing4] (究#1703 竟#1194) to go to the bottom of a matter; after all; when all is said and done; (in an interrogative sentence) finally; outcome; result#2953. 啇(亠#26 丷#31 冂#57 古#166) #2954. 红色[hong2 se4] (红#1121 色#594) red (color); revolutionary#2955. 洁[jie2] (氵#60 吉#573) clean#2956. 恢[hui1] (忄#140 灰#1664) to restore; to recover; great#2957. 顺利[shun4 li4] (顺#1597 利#633) smoothly; without a hitch#2958. 拿走[na2 zou3] (拿#514 走#147) to take away#2959. 恐怕[kong3 pa4] (恐#1492 怕#860) fear; to dread; I'm afraid that...; perhaps; maybe#2960. 不久[bu4 jiu3] (不#23 久#533) not long (after); before too long; soon; soon after#2961. 跳舞[tiao4 wu3] (跳#1078 舞#972) to dance#2962. 赏[shang3] (𫩠#523 贝#189) to bestow (a reward); to give (to an inferior); to hand down; a reward (bestowed by a superior); to appreciate (beauty)#2963. 钉[ding1] (钅#227 丁#62) nail; to follow closely; to keep at sb (to do sth); variant of 盯[ding1]; to join things together by fixing them in place at one or more points; to nail; to pin; to staple; to sew on#2964. 拆[chai1] (扌#52 斥#420) to tear open; to tear down; to tear apart; to open#2965. 涂[tu2] (氵#60 余#772) to apply (paint etc); to smear; to daub; to blot out; to scribble; to scrawl; (literary) mud; street; surname Tu; variant of 途[tu2]#2966. 工人[gong1 ren2] (工#144 人#6) worker; CL:個|个[ge4],名[ming2]#2967. 专家[zhuan1 jia1] (专#560 家#307) expert; specialist#2968. 鲜[xian3] (鱼#873 羊#152) variant of 鮮|鲜[xian3]; variant of 尟|鲜[xian3]; fresh; bright (in color); delicious; tasty; delicacy; aquatic foods; few; rare; fish; old variant of 鮮|鲜[xian1]; old variant of 鮮|鲜[xian3]#2969. 牵[qian1] (大#35 冖#96 牛#216) to lead along; to pull (an animal on a tether); (bound form) to involve; to draw in#2970. 一万(一#1 万#466) #2971. 模特[mo2 te4] (模#1660 特#623) (fashion) model (loanword)#2972. 奸[jian1] (女#29 干#162) wicked; crafty; traitor; variant of 姦|奸[jian1]; to fornicate; to defile; adultery; rape#2973. 职业[zhi2 ye4] (职#1558 业#413) occupation; profession; vocation; professional#2974. 恢复[hui1 fu4] (恢#2956 复#1080) to reinstate; to resume; to restore; to recover; to regain; to rehabilitate#2975. 无聊[wu2 liao2] (无#424 聊#1504) bored; boring; senseless#2976. 妓女[ji4 nu:3] (妓#2528 女#29) prostitute; hooker#2977. 风格[feng1 ge2] (风#597 格#1004) style#2978. 绪[xu4] (纟#91 者#161) beginnings; clues; mental state; thread#2979. 公开[gong1 kai1] (公#419 开#157) open; overt; public; to make public; to release#2980. 厕[ce4] (厂#219 则#843) variant of 廁|厕[ce4]; (bound form) restroom; toilet; lavatory; (literary) to be mingled with; to be involved in; used in 茅廁|茅厕[mao2 si5]#2981. 报纸[bao4 zhi3] (报#808 纸#1542) newspaper; newsprint; CL:份[fen4],期[qi1],張|张[zhang1]#2982. 饮[yin3] (饣#635 欠#183) old variant of 飲|饮[yin3]; to drink; to give (animals) water to drink#2983. 尤其[you2 qi2] (尤#130 其#338) especially; particularly#2984. 特工[te4 gong1] (特#623 工#144) secret service; special service; secret service agent; special agent#2985. 算是[suan4 shi4] (算#759 是#39) considered to be; at last#2986. 敲[qiao1] (高#454 攴#2705) to hit; to strike; to tap; to rap; to knock; to rip sb off; to overcharge#2987. 似的[shi4 de5] (似#1398 的#22) seems as if; rather like; Taiwan pr. [si4 de5]#2988. 仆[pu1] (亻#7 卜#88) to fall forward; to fall prostrate; servant#2989. 芬[fen1] (艹#150 分#306) perfume; fragrance#2990. 不到[bu4 dao4] (不#23 到#127) not to arrive; not reaching; insufficient; less than#2991. 问问(问#369 问#369) #2992. 献[xian4] (南#1410 犬#279) to offer; to present; to dedicate; to donate; to show; to put on display; worthy person (old)#2993. 条件[tiao2 jian4] (条#661 件#460) condition; circumstance; term; factor; requirement; prerequisite; qualification; situation; state; condition; CL:個|个[ge4]#2994. 啤[pi2] (口#3 卑#1296) beer#2995. 蛇[she2] (虫#410 它#246) variant of 蛇[she2]; snake; serpent; CL:條|条[tiao2]; used in 委蛇[wei1yi2]#2996. 巧克力[qiao3 ke4 li4] (巧#1447 克#553 力#78) chocolate (loanword); CL:塊|块[kuai4]#2997. 爱上[ai4 shang4] (爱#406 上#56) to fall in love with; to be in love with#2998. 域[yu4] (土#13 或#601) field; region; area; domain (taxonomy)#2999. 𬎿(丷#31 田#168) #3000. 复杂[fu4 za2] (复#1080 杂#1440) complicated; complex#3001. 贺[he4] (加#408 贝#189) surname He; to congratulate#3002. 兽[shou4] (𬎿#2999 一#1 口#3) beast; animal; beastly; bestial#3003. 他人[ta1 ren2] (他#48 人#6) another person; sb else; other people#3004. 辩[bian4] (辛#854 讠#36 辛#854) to dispute; to debate; to argue; to discuss#3005. 陈[chen2] (阝#46 东#438) surname Chen; Chen (c. 1045 - 479 BC), a Zhou dynasty state; Chen (557-589), one of the Southern Dynasties 南朝[Nan2 Chao2]; (bound form) to lay out; to exhibit; to display; (bound form) to narrate; to state; to explain; to tell; old; stale#3006. 味道[wei4 dao5] (味#1235 道#250) flavor; taste; (fig.) feeling (of ...); sense (of ...); hint (of ...); (fig.) interest; delight; (dialect) smell; odor#3007. 栋[dong4] (木#38 东#438) classifier for houses or buildings; ridgepole (old)#3008. 援[yuan2] (扌#52 爰#2003) to help; to assist; to aid#3009. 尝试[chang2 shi4] (尝#1688 试#675) to try; to attempt; CL:次[ci4]#3010. 益[yi4] (䒑#77 八#41 皿#456) surname Yi; benefit; profit; advantage; beneficial; to increase; to add; all the more#3011. 咠[qi4] (口#3 耳#235) to whisper; to blame, to slander#3012. 展示[zhan3 shi4] (展#1415 示#391) to reveal; to display; to show; to exhibit#3013. 巷[xiang4] (共#617 巳#200) lane; alley#3014. 前面[qian2 mian4] (前#346 面#428) ahead; in front; preceding; above; also pr. [qian2 mian5]#3015. 回忆[hui2 yi4] (回#260 忆#1606) to recall; memories; CL:個|个[ge4]#3016. 遭[zao1] (辶#33 曹#1225) to meet by chance (usually with misfortune); classifier for events: time, turn, incident#3017. 固[gu4] (囗#86 古#166) hard; strong; solid; sure; assuredly; undoubtedly; of course; indeed; admittedly#3018. 交给[jiao1 gei3] (交#499 给#215) to give; to deliver; to hand over#3019. 动手[dong4 shou3] (动#444 手#211) to set about (a task); to hit; to punch; to touch#3020. 驶[shi3] (马#70 史#643) (of a vehicle, horse etc) to go fast; to speed; (of a vehicle) to run; to go; (of a boat) to sail#3021. 晨[chen2] (日#15 辰#1500) morning; dawn; daybreak#3022. 肌[ji1] (月#40 几#141) (bound form) flesh; muscle#3023. 联邦[lian2 bang1] (联#1212 邦#423) federal; federation; commonwealth; federal union; federal state; union#3024. 吞[tun1] (天#124 口#3) to swallow; to take#3025. 戎[rong2] (戈#159 𠂇#54) surname Rong; generic term for weapons (old); army (matters); military affairs#3026. 策[ce4] (竹#191 朿#1408) surname Ce; policy; plan; scheme; bamboo slip for writing (old); to whip (a horse); to encourage; riding crop with sharp spines (old); essay written for the imperial examinations (old); upward horizontal stroke in calligraphy; variant of 策[ce4]; variant of 策[ce4]#3027. 人士[ren2 shi4] (人#6 士#205) person; figure; public figure#3028. 某种[mou3 zhong3] (某#859 种#527) some kind (of)#3029. 祷[dao3] (礻#394 寿#1970) prayer; pray; supplication#3030. 肠[chang2] (月#40 𠃓#435) intestines; old variant of 腸|肠[chang2]#3031. 描[miao2] (扌#52 苗#1375) to depict; to trace (a drawing); to copy; to touch up#3032. 孟[meng4] (子#47 皿#456) surname Meng; first month of a season; eldest amongst brothers#3033. 引起[yin3 qi3] (引#1065 起#285) to give rise to; to lead to; to cause; to arouse#3034. 抵[di3] (扌#52 氐#667) to press against; to support; to prop up; to resist; to withstand; to be equal to; to match; to balance; to offset; to mortgage; to make up for; to compensate for; to arrive at; to reach; to clap (one's hands) lightly (expressing delight) (Taiwan pr. [zhi3])#3035. 女子[nu:3 zi3] (女#29 子#47) woman; female#3036. 邀[yao1] (辶#33 敫#1411) to invite; to request; to intercept; to solicit; to seek#3037. 指纹[zhi3 wen2] (指#779 纹#1914) fingerprint; the arches, loops and whorls on the fingers#3038. 庆祝[qing4 zhu4] (庆#2355 祝#1272) to celebrate#3039. 投入[tou2 ru4] (投#1068 入#505) to throw into; to put into; to throw oneself into; to participate in; to invest in; absorbed; engrossed#3040. 卧[wo4] (臣#1445 卜#88) to lie; to crouch#3041. 喷[pen1] (口#3 贲#2318) to spout; to spurt; to spray; to puff; (slang) to criticize scathingly (esp. online); (of a smell) strong; peak season (of a crop); (classifier for the ordinal number of a crop, in the context of multiple harvests)#3042. 裤子[ku4 zi5] (裤#2058 子#47) variant of 褲子|裤子, trousers; pants; trousers; pants; CL:條|条[tiao2]#3043. 英尺[ying1 chi3] (英#1067 尺#670) foot (unit of length equal to 0.3048 m)#3044. 飞行[fei1 xing2] (飞#628 行#316) (of planes etc) to fly; flying; flight; aviation#3045. 地点[di4 dian3] (地#317 点#225) place; site; location; venue; CL:個|个[ge4]#3046. 全力[quan2 li4] (全#458 力#78) with all one's strength; full strength; all-out (effort); fully (support)#3047. 乳[ru3] (孚#2267 乚#18) breast; milk#3048. 梦想[meng4 xiang3] (梦#1245 想#178) (fig.) to dream of; dream#3049. 运气[yun4 qi5] (运#876 气#501) luck (good or bad)#3050. 拯[zheng3] (扌#52 丞#2737) to raise; to aid; to support; to save; to rescue#3051. 厈(厂#219 干#162) #3052. 岸[an4] (山#334 厈#3051) variant of 岸[an4]; bank; shore; beach; coast#3053. 市长[shi4 zhang3] (市#896 长#308) mayor#3054. 美女[mei3 nu:3] (美#541 女#29) beautiful woman#3055. 绑架[bang3 jia4] (绑#2042 架#1330) to kidnap; to abduct; to hijack; a kidnapping; abduction; staking#3056. 拯救[zheng3 jiu4] (拯#3050 救#865) to save; to rescue#3057. 羞[xiu1] (羊#152 丑#850) shy; ashamed; shame; bashful; variant of 饈|馐[xiu1]; delicacies#3058. 灵魂[ling2 hun2] (灵#1288 魂#2329) soul; spirit#3059. 苋[xian4] (艹#150 见#123) amaranth (genus Amaranthus); Joseph's coat (Amaranthus tricolor); Chinese spinach (Amaranth mangostanus)#3060. 老实[lao3 shi5] (老#372 实#530) honest; sincere; well-behaved; naive; gullible#3061. 宽[kuan1] (宀#66 苋#3059) surname Kuan; wide; broad; loose; relaxed; lenient#3062. 祈[qi2] (礻#394 斤#117) to implore; to pray; to request#3063. 酒店[jiu3 dian4] (酒#846 店#1052) wine shop; pub (public house); hotel; restaurant; (Tw) hostess club#3064. 罢了[ba4 le5] (罢#1655 了#9) a modal particle indicating (that's all, only, nothing much); a modal particle indicating (don't mind it, ok)#3065. 屰(䒑#77 屮#190) #3066. 左右[zuo3 you4] (左#1182 右#771) left and right; nearby; approximately; attendant; to control; to influence#3067. 端[duan1] (立#122 耑#1379) (bound form) tip; end; extremity; (bound form) aspect; facet; (bound form) upright; proper; to hold sth level with both hands; to carry; to eliminate; to wipe out; old variant of 端[duan1]; start; origin#3068. 擦[ca1] (扌#52 察#1265) to rub; to scratch; to wipe; to polish; to apply (lipstick, lotion etc); to brush (past); to shred (a vegetable etc)#3069. 掩[yan3] (扌#52 奄#2387) to cover up; to conceal; to close (a door, book etc); (coll.) to get (one's fingers etc) caught when closing a door or lid; (literary) to launch a surprise attack#3070. 俱[ju4] (亻#7 具#210) (literary) all; both; entirely; without exception; (literary) to be together; (literary) to be alike#3071. 顷[qing1] (匕#44 页#311) variant of 傾|倾[qing1]; unit of area equal to 100 畝|亩[mu3] or 6.67 hectares; a short while; a little while ago; circa. (for approximate dates)#3072. 捐[juan1] (扌#52 肙#2895) to relinquish; to abandon; to contribute; to donate; (bound form) tax; levy#3073. 舀[yao3] (爫#266 臼#767) to ladle out; to scoop up#3074. 空气[kong1 qi4] (空#716 气#501) air; atmosphere#3075. 马丁[ma3 ding1] (马#70 丁#62) Martin (name)#3076. 略[lu:e4] (田#168 各#355) brief; sketchy; outline; summary; to omit; (bound form before a single-character verb) a bit; somewhat; slightly; plan; strategy; to capture (territory); variant of 略[lu:e4]#3077. 辜[gu1] (古#166 辛#854) surname Gu; crime; sin#3078. 分享[fen1 xiang3] (分#306 享#1176) to share (let others have some of sth good)#3079. 炸弹[zha4 dan4] (炸#1545 弹#1215) bomb; CL:枚[mei2],顆|颗[ke1]#3080. 绳[sheng2] (纟#91 黾#2862) rope; CL:根[gen1]#3081. 救命[jiu4 ming4] (救#865 命#712) to save sb's life; (interj.) Help!; Save me!#3082. 而言[er2 yan2] (而#231 言#354) (typically preceded by 就…[jiu4 xx5] or 對…|对…[dui4 xx5] etc) as far as ... is concerned; speaking in terms of ...#3083. 员工[yuan2 gong1] (员#586 工#144) staff; personnel; employee#3084. 荣幸[rong2 xing4] (荣#1996 幸#1088) honored (to have the privilege of ...)#3085. 上学[shang4 xue2] (上#56 学#542) to go to school; to attend school#3086. 肩[jian1] (户#358 月#40) shoulder; to shoulder (responsibilities etc)#3087. 邻居[lin2 ju1] (邻#2840 居#768) neighbor; CL:個|个[ge4]#3088. 伪[wei3] (亻#7 为#104) false; fake; forged; bogus; (prefix) pseudo-; Taiwan pr. [wei4]; variant of 偽|伪[wei3]#3089. 仁[ren2] (亻#7 二#27) humane; kernel#3090. 旬[xun2] (勹#19 日#15) ten days; ten years; full period#3091. 变化[bian4 hua4] (变#600 化#488) (intransitive) to change; to vary; change; variation (CL:個|个[ge4])#3092. 关键[guan1 jian4] (关#329 键#2725) crucial point; crux; CL:個|个[ge4]; key; crucial; pivotal#3093. 谈话[tan2 hua4] (谈#629 话#296) to talk (with sb); to have a conversation; talk; conversation; CL:次[ci4]#3094. 大脑[da4 nao3] (大#35 脑#1038) brain; cerebrum#3095. 姻[yin1] (女#29 因#242) marriage connections; variant of 姻[yin1]#3096. 币[bi4] (丿#2 巾#151) money; coins; currency; silk#3097. 彻底[che4 di3] (彻#2496 底#800) thorough; thoroughly; complete#3098. 紧急[jin3 ji2] (紧#1081 急#1085) urgent; emergency#3099. 台上[tai2 shang4] (台#378 上#56) on stage#3100. 男友[nan2 you3] (男#559 友#298) boyfriend#3101. 珠[zhu1] (王#97 朱#1636) bead; pearl; CL:粒[li4],顆|颗[ke1]#3102. 倾[qing1] (亻#7 顷#3071) to overturn; to collapse; to lean; to tend; to incline; to pour out#3103. 诸[zhu1] (讠#36 者#161) surname Zhu; all; various#3104. 诱[you4] (讠#36 秀#1023) (literary) to induce; to entice#3105. 电子[dian4 zi3] (电#433 子#47) electronic; electron (particle physics)#3106. 葬[zang4] (艹#150 死#271 廾#128) old variant of 葬[zang4]; to bury (the dead); to inter#3107. 规则[gui1 ze2] (规#1564 则#843) rule; regulation; regular; orderly; fixed#3108. 洛杉矶[luo4 shan1 ji1] (洛#985 杉#2617 矶#2872) Los Angeles, California#3109. 实话[shi2 hua4] (实#530 话#296) truth#3110. 集中[ji2 zhong1] (集#1184 中#174) to concentrate; to centralize; to focus; centralized; concentrated; to put together#3111. 申请[shen1 qing3] (申#660 请#512) to apply for sth; application form (CL:份[fen4])#3112. 玩意[wan2 yi4] (玩#615 意#417) toy; plaything; thing; act; trick (in a performance, stage show, acrobatics etc)#3113. 人口[ren2 kou3] (人#6 口#3) population; people#3114. 接近[jie1 jin4] (接#639 近#950) to approach; to get close to#3115. 惧[ju4] (忄#140 具#210) to fear#3116. 胜利[sheng4 li4] (胜#1589 利#633) victory; CL:個|个[ge4]#3117. 打击[da3 ji1] (打#272 击#787) to hit; to strike; to attack; to crack down on sth; blow; (psychological) shock; percussion (music)#3118. 聚会[ju4 hui4] (聚#2111 会#76) party; gathering; to meet; to get together#3119. 警官[jing3 guan1] (警#908 官#521) constable; police officer#3120. 好久[hao3 jiu3] (好#69 久#533) quite a while#3121. 牲[sheng1] (牛#216 生#167) domestic animal; sacrificial animal#3122. 扑[pu1] (扌#52 卜#88) to throw oneself at; to pounce on; to devote one's energies; to flap; to flutter; to dab; to pat; to bend over#3123. 抢劫[qiang3 jie2] (抢#1465 劫#2034) to rob; looting#3124. 发展[fa1 zhan3] (发#302 展#1415) development; growth; to develop; to grow; to expand#3125. 啤酒[pi2 jiu3] (啤#2994 酒#846) beer (loanword); CL:杯[bei1],瓶[ping2],罐[guan4],桶[tong3],缸[gang1]#3126. 心中[xin1 zhong1] (心#61 中#174) central point; in one's thoughts; in one's heart#3127. 神父[shen2 fu5] (神#880 父#263) father (Catholic or Orthodox priest)#3128. 挑战[tiao3 zhan4] (挑#1693 战#893) to challenge; challenge#3129. 监视[jian1 shi4] (监#1037 视#1043) to monitor; to keep a close watch over; surveillance#3130. 资料[zi1 liao4] (资#1602 料#1539) material; resources; data; information; profile (Internet); CL:份[fen4],個|个[ge4]#3131. 墨[mo4] (黑#475 土#13) surname Mo; abbr. for 墨西哥[Mo4xi1ge1], Mexico; ink stick; China ink; CL:塊|块[kuai4]; corporal punishment consisting of tattooing characters on the victim's forehead#3132. 开玩笑[kai1 wan2 xiao4] (开#157 玩#615 笑#809) to play a joke; to make fun of; to joke#3133. 婚姻[hun1 yin1] (婚#982 姻#3095) marriage; matrimony; CL:樁|桩[zhuang1],次[ci4]#3134. 湖[hu2] (氵#60 胡#1374) lake; CL:個|个[ge4],片[pian4]#3135. 好多[hao3 duo1] (好#69 多#204) many; quite a lot; much better#3136. 匀[yun2] (勹#19 冫#81) even; well-distributed; uniform; to distribute evenly; to share#3137. 之下[zhi1 xia4] (之#256 下#109) under; beneath; less than#3138. 撤[che4] (扌#52 育#1856 攵#114) to remove; to take away#3139. 巿[fu2] (一#1 巾#151) (literary) variant of 韍|韨[fu2]#3140. 世纪[shi4 ji4] (世#689 纪#1433) century; CL:個|个[ge4]#3141. 部门[bu4 men2] (部#668 门#51) department; branch; section; division; CL:個|个[ge4]#3142. 饰[shi4] (饣#635 𠂉#82 巾#151) decoration; ornament; to decorate; to adorn; to hide; to conceal (a fault); excuse (to hide a fault); to play a role (in opera); to impersonate#3143. 蜜[mi4] (宓#1089 虫#410) honey#3144. 增[zeng1] (土#13 曾#1060) (bound form) to increase; to augment; to add to#3145. 优秀[you1 xiu4] (优#1855 秀#1023) outstanding; excellent#3146. 裙[qun2] (衤#325 君#1252) old variant of 裙[qun2]; (bound form) skirt; old variant of 裙[qun2]#3147. 婴儿[ying1 er2] (婴#2707 儿#50) infant; baby; CL:個|个[ge4]; lead (Pb)#3148. 或是[huo4 shi4] (或#601 是#39) or; either one or the other#3149. 脸上(脸#1213 上#56) #3150. 扬[yang2] (扌#52 𠃓#435) abbr. for Yangzhou 揚州|扬州[Yang2zhou1] in Jiangsu; surname Yang; to raise; to hoist; the action of tossing or winnowing; scattering (in the wind); to flutter; to propagate; variant of 揚|扬[yang2]#3151. 对待[dui4 dai4] (对#113 待#905) to treat; treatment#3152. 有意思[you3 yi4 si5] (有#63 意#417 思#784) interesting; meaningful; enjoyable; fun#3153. 王八[wang2 ba5] (王#97 八#41) softshell turtle; cuckold; (old) male owner of a brothel#3154. 网上[wang3 shang4] (网#1448 上#56) online#3155. 频[pin2] (步#890 页#311) frequency; frequently; repetitious#3156. 盾[dun4] (𠂆#83 𥃭#3157) shield; (currency) Vietnamese dong; currency unit of several countries (Indonesian rupiah, Dutch gulden etc)#3157. 𥃭(十#10 目#72) #3158. 溜[liu1] (氵#60 留#717) to slip away; to escape in stealth; to skate; swift current; rapids; (dialect) (of speech, actions etc) skilled; proficient; (of movements) quick; speedy; (bound form) rain runoff from a roof; (bound form) roof gutter; classifier for rows, lines etc; surroundings; neighborhood; (dialect) to practice; (dialect) to plaster; to fill in the cracks (with cement, lime plaster etc)#3159. 细节[xi4 jie2] (细#1590 节#766) details; particulars#3160. 荡[dang4] (艹#150 汤#1351) variant of 蕩|荡[dang4]; variant of 燙|烫[tang4]; variant of 趟[tang4]; to wash; to squander; to sweep away; to move; to shake; dissolute; pond#3161. 手下[shou3 xia4] (手#211 下#109) under one's control or administration; subordinates; (money etc) on hand; sb's financial means; when taking action#3162. 教练[jiao4 lian4] (教#872 练#1233) to coach; to train; instructor; sports coach; trainer (CL:個|个[ge4],位[wei4],名[ming2])#3163. 巡[xun2] (辶#33 巛#2734) to patrol; to make one's rounds; classifier for rounds of drinks; variant of 巡[xun2]#3164. 彦[yan4] (产#954 彡#373) accomplished; elegant#3165. 敦[dun1] (享#1176 攵#114) variant of 敦[dun1]; kindhearted; place name#3166. 上校[shang4 xiao4] (上#56 校#1118) high ranking officer in Chinese army; colonel#3167. 宣布[xuan1 bu4] (宣#2044 布#543) variant of 宣布[xuan1bu4]; to declare; to announce; to proclaim#3168. 囚[qiu2] (囗#86 人#6) prisoner#3169. 免费[mian3 fei4] (免#467 费#1189) free (of charge)#3170. 奈[nai4] (大#35 示#391) used in expressions that convey frustration and futility, such as 無奈|无奈[wu2 nai4] and 莫可奈何|莫可奈何[mo4 ke3 nai4 he2] (literary); used for its phonetic value in writing foreign words#3171. 心情[xin1 qing2] (心#61 情#489) mood; frame of mind; CL:個|个[ge4]#3172. 窃[qie4] (穴#392 切#382) to steal; secretly; (humble) I#3173. 肚子[du4 zi5] (肚#2516 子#47) belly; abdomen; stomach; CL:個|个[ge4]#3174. 笨蛋[ben4 dan4] (笨#2100 蛋#1014) (mild insult) fool; idiot; (playful) silly person#3175. 患[huan4] (串#2375 心#61) to suffer (from illness); to contract (a disease); misfortune; trouble; danger; worry#3176. 涉[she4] (氵#60 步#890) (literary) to wade across a body of water; (bound form) to experience; to undergo; to be involved; to concern#3177. 企[qi3] (人#6 止#92) (bound form) to stand on tiptoe and look; to anticipate; to look forward to; abbr. for 企業|企业[qi3ye4]; Taiwan pr. [qi4]#3178. 欣[xin1] (斤#117 欠#183) happy#3179. 大厅[da4 ting1] (大#35 厅#1720) hall; concourse; public lounge; (hotel) lobby#3180. 某人[mou3 ren2] (某#859 人#6) someone; a certain person; some people; I (self-address after one's surname)#3181. 有时候[you3 shi2 hou5] (有#63 时#224 候#522) sometimes#3182. 价值[jia4 zhi2] (价#1259 值#1554) value; worth; fig. values (ethical, cultural etc); CL:個|个[ge4]#3183. 仗[zhang4] (亻#7 丈#999) weaponry; to hold (a weapon); to wield; to rely on; to depend on; war; battle#3184. 取消[qu3 xiao1] (取#331 消#1007) to cancel; to call off; to revoke; to rescind#3185. 骄[jiao1] (马#70 乔#1066) proud; arrogant#3186. 裂[lie4] (列#1051 衣#544) to split; to crack; to break open; to rend#3187. 起诉[qi3 su4] (起#285 诉#430) to sue; to bring a lawsuit against; to prosecute#3188. 厸(厶#17 厶#17) #3189. 厽(厶#17 厸#3188) #3190. 割[ge1] (害#728 刂#67) to cut; to cut apart#3191. 入口[ru4 kou3] (入#505 口#3) entrance; to import#3192. 停车[ting2 che1] (停#814 车#180) to pull up (stop one's vehicle); to park; (of a machine) to stop working; to stall#3193. 垒[lei3] (厽#3189 土#13) rampart; base (in baseball); to build with stones, bricks etc#3194. 辞[ci2] (舌#199 辛#854) old variant of 辭|辞[ci2]; to resign; to dismiss; to decline; (literary) to take leave; (archaic poetic genre) ballad; variant of 詞|词[ci2]#3195. 专门[zhuan1 men2] (专#560 门#51) specialized; dedicated (to a particular field or purpose); specially; specifically (for a particular purpose); (of institutions, personnel etc) designated or assigned for a specific task; special#3196. 通常[tong1 chang2] (通#819 常#613) regular; usual; normal; usually; normally#3197. 厕所[ce4 suo3] (厕#2980 所#309) toilet; lavatory; CL:間|间[jian1],處|处[chu4]#3198. 无辜[wu2 gu1] (无#424 辜#3077) innocent; innocence; not guilty (law)#3199. 罗马[luo2 ma3] (罗#906 马#70) Rome, capital of Italy#3200. 勃[bo2] (孛#2297 力#78) flourishing; prosperous; suddenly; abruptly#3201. 祸[huo4] (礻#394 呙#2228) old variant of 禍|祸[huo4]; disaster; misfortune; calamity#3202. 区别[qu1 bie2] (区#694 别#226) difference; to distinguish; to discriminate; to make a distinction; CL:個|个[ge4]#3203. 老公[lao3 gong1] (老#372 公#419) (coll.) husband; (coll.) eunuch; see also 老公[lao3 gong1]#3204. 㐭(亠#26 回#260) #3205. 盒子[he2 zi5] (盒#2323 子#47) box; case; hezi – a savory turnover-like pie in northern Chinese and Mongolian cuisines#3206. 傻瓜[sha3 gua1] (傻#1441 瓜#1485) idiot; fool#3207. 殿[dian4] (𡱒#3208 殳#95) palace hall#3208. 𡱒(尸#99 共#617) #3209. 干掉[gan4 diao4] (干#162 掉#708) to get rid of#3210. 说谎[shuo1 huang3] (说#125 谎#1662) to lie; to tell an untruth#3211. 揍[zou4] (扌#52 奏#2001) to hit; to beat (sb); (coll.) to smash (sth)#3212. 帽子[mao4 zi5] (帽#2578 子#47) hat; cap; (fig.) label; bad name; CL:頂|顶[ding3]#3213. 命运[ming4 yun4] (命#712 运#876) fate; destiny; CL:個|个[ge4]#3214. 谈论[tan2 lun4] (谈#629 论#904) to discuss; to talk about#3215. 印象[yin4 xiang4] (印#1320 象#374) impression (sth that stays in one's mind); a memory#3216. 错过[cuo4 guo4] (错#450 过#148) to miss (train, opportunity etc)#3217. 雚[guan4] (艹#150 𨾴#3218) (archaic) stork; heron; variant of 萑[huan2]#3218. 𨾴(吅#498 隹#209) #3219. 脑袋[nao3 dai5] (脑#1038 袋#1747) head; skull; brains; mental capability; CL:顆|颗[ke1],個|个[ge4]#3220. 年纪[nian2 ji4] (年#340 纪#1433) age; CL:把[ba3],個|个[ge4]#3221. 屚(尸#99 雨#468) #3222. 漏[lou4] (氵#60 屚#3221) to leak; to divulge; to leave out by mistake; waterclock or hourglass (old)#3223. 阶[jie1] (阝#46 介#609) variant of 階|阶[jie1]; rank or step; stairs#3224. 顺便[shun4 bian4] (顺#1597 便#1044) conveniently; in passing; without much extra effort#3225. 正义[zheng4 yi4] (正#251 义#659) justice; righteousness; just; righteous#3226. 坏人[huai4 ren2] (坏#770 人#6) bad person; villain#3227. 震[zhen4] (雨#468 辰#1500) to shake; to vibrate; to jolt; to quake; excited; shocked; one of the Eight Trigrams 八卦[ba1 gua4], symbolizing thunder; ☳#3228. 轻松[qing1 song1] (轻#1181 松#1314) light; gentle; relaxed; effortless; uncomplicated; to relax; to take things less seriously#3229. 闷[men1] (门#51 心#61) stuffy; shut indoors; to smother; to cover tightly; bored; depressed; melancholy; sealed; airtight; tightly closed#3230. 媒[mei2] (女#29 某#859) medium; intermediary; matchmaker; go-between; abbr. for 媒體|媒体[mei2 ti3], media, esp. news media#3231. 汤姆[tang1 mu3] (汤#1351 姆#1497) Tom (name)#3232. 喝酒[he1 jiu3] (喝#881 酒#846) to drink (alcohol)#3233. 发出[fa1 chu1] (发#302 出#192) to issue (an order, decree etc); to send out; to dispatch; to produce (a sound); to let out (a laugh)#3234. 感情[gan3 qing2] (感#578 情#489) emotion; sentiment; affection; feelings between two persons#3235. 单独[dan1 du2] (单#693 独#1386) alone; by oneself; on one's own#3236. 荷[he2] (艹#150 何#555) Holland; the Netherlands (abbr. for 荷蘭|荷兰[He2lan2]); lotus; to carry on one's shoulder or back; burden; responsibility#3237. 随时[sui2 shi2] (随#1312 时#224) at any time; at all times; at the right time; whenever necessary#3238. 著名[zhu4 ming2] (著#2542 名#453) famous; noted; well-known; celebrated#3239. 径[jing4] (彳#75 𢀖#322) footpath; track; diameter; straight; directly#3240. 刮[gua1] (舌#199 刂#67) to scrape; to blow; to shave; to plunder; to extort; to blow (of the wind)#3241. 桶[tong3] (木#38 甬#627) bucket; (trash) can; barrel (of oil etc); CL:個|个[ge4],隻|只[zhi1]#3242. 水平[shui3 ping2] (水#457 平#705) level (of achievement etc); standard; horizontal#3243. 人质[ren2 zhi4] (人#6 质#1663) hostage#3244. 出于[chu1 yu2] (出#192 于#342) due to; to stem from#3245. 皃[mao4] (白#20 儿#50) variant of 貌[mao4]#3246. 貌[mao4] (豸#2678 皃#3245) appearance#3247. 年级[nian2 ji2] (年#340 级#1199) grade; year (in school, college etc); CL:個|个[ge4]#3248. 趟[tang1] (走#147 尚#1486) old variant of 趟[tang1]; to wade; to trample; to turn the soil; classifier for times, round trips or rows; a time; a trip#3249. 天堂[tian1 tang2] (天#124 堂#1763) paradise; heaven#3250. 我会(我#14 会#76) #3251. 赶快[gan3 kuai4] (赶#1269 快#290) quickly; at once#3252. 颜[yan2] (彦#3164 页#311) surname Yan; color; face; countenance; Japanese variant of 顏|颜[yan2]#3253. 额[e2] (客#992 页#311) variant of 額|额[e2]; forehead; horizontal tablet or inscribed board; specified number or amount#3254. 好吃[hao3 chi1] (好#69 吃#401) tasty; delicious; to be fond of eating; to be gluttonous#3255. 售[shou4] (隹#209 口#3) (bound form) to sell; to retail; (literary) to carry out (a plan or intrigue etc)#3256. 趴下(趴#2612 下#109) #3257. 本人[ben3 ren2] (本#343 人#6) I; me; myself; oneself; yourself; himself; herself; the person concerned#3258. 大门[da4 men2] (大#35 门#51) the Doors, US rock band; entrance; door; gate; large and influential family#3259. 裁[cai2] (𢦏#1220 衣#544) to cut out (as a dress); to cut; to trim; to reduce; to diminish; to cut back (e.g. on staff); decision; judgment#3260. 肺[fei4] (月#40 巿#3139) lung; CL:個|个[ge4]#3261. 脉[mai4] (月#40 永#882) old variant of 脈|脉[mai4]; arteries and veins; vein (on a leaf, insect wing etc); see 脈脈|脉脉[mo4 mo4]; variant of 脈|脉[mai4]#3262. 大街[da4 jie1] (大#35 街#1334) street; main street; CL:條|条[tiao2]#3263. 关闭[guan1 bi4] (关#329 闭#818) to close; to shut (a window etc); (of a shop, school etc) to shut down#3264. 娶[qu3] (取#331 女#29) to take a wife; to marry (a woman)#3265. 舰[jian4] (舟#631 见#123) warship#3266. 忝[tian3] (天#124 㣺#1924) to shame#3267. 吼[hou3] (口#3 孔#2160) to roar; to howl; to shriek; roar or howl of an animal; bellow of rage#3268. 不仅仅[bu4 jin3 jin3] (不#23 仅#977 仅#977) not only; not just#3269. 亶[dan3] (㐭#3204 旦#102) surname Dan; sincere#3270. 柔[rou2] (矛#2331 木#38) soft; flexible; supple; yielding; rho (Greek letter Ρρ)#3271. 有的[you3 de5] (有#63 的#22) (there are) some (who are...); some (exist)#3272. 骄傲[jiao1 ao4] (骄#3185 傲#2854) pride; arrogance; conceited; proud of sth#3273. 㡀(丷#31 巾#151 八#41) #3274. 敝[bi4] (㡀#3273 攵#114) my (polite); poor; ruined; shabby; worn out; defeated#3275. 超过[chao1 guo4] (超#1219 过#148) to surpass; to exceed; to outstrip#3276. 主要[zhu3 yao4] (主#295 要#103) main; principal; major; primary#3277. 同事[tong2 shi4] (同#482 事#182) colleague; co-worker#3278. 骗子[pian4 zi5] (骗#1435 子#47) swindler; a cheat#3279. 琴[qin2] (玨#2097 今#370) guqin 古琴[gu3 qin2] (a type of zither); musical instrument in general; variant of 琴[qin2], guqin or zither#3280. 贩[fan4] (贝#189 反#481) to deal in; to buy and sell; to trade in; to retail; to peddle#3281. 空间[kong1 jian1] (空#716 间#384) space; room; (fig.) scope; leeway; (astronomy) outer space; (physics, math.) space#3282. 总之[zong3 zhi1] (总#625 之#256) in a word; in short; in brief#3283. 教堂[jiao4 tang2] (教#872 堂#1763) church; chapel; CL:座[zuo4],所[suo3],間|间[jian1]#3284. 过分[guo4 fen4] (过#148 分#306) excessive; undue; unduly; overly#3285. 督[du1] (叔#1424 目#72) (bound form) to supervise#3286. 戒指[jie4 zhi5] (戒#1728 指#779) (finger) ring#3287. 一致[yi1 zhi4] (一#1 致#1624) consistent; unanimous; in agreement; together; in unison#3288. 有所[you3 suo3] (有#63 所#309) somewhat; to some extent#3289. 讲话[jiang3 hua4] (讲#829 话#296) a speech; to speak; to talk; to address; CL:個|个[ge4]#3290. 堇[jin3] (廿#801 口#3 龶#195) clay; old variant of 僅|仅[jin3]; violet (plant)#3291. 干活[gan4 huo2] (干#162 活#546) to work; to be employed#3292. 牛奶[niu2 nai3] (牛#216 奶#1125) cow's milk; CL:瓶[ping2],杯[bei1]#3293. 案件[an4 jian4] (案#795 件#460) case; instance; CL:宗[zong1],樁|桩[zhuang1],起[qi3]#3294. 邀请[yao1 qing3] (邀#3036 请#512) to invite; invitation; CL:個|个[ge4]#3295. 健康[jian4 kang1] (健#2294 康#2102) health; healthy#3296. 助手[zhu4 shou3] (助#988 手#211) assistant; helper#3297. 作品[zuo4 pin3] (作#359 品#858) work (of art); opus; CL:部[bu4],篇[pian1]#3298. 幅[fu2] (巾#151 畐#916) width; roll; classifier for textiles or pictures#3299. 侦探[zhen1 tan4] (侦#2787 探#1093) detective; to do detective work#3300. 佑[you4] (亻#7 右#771) (bound form) to bless; to protect#3301. 妥[tuo3] (爫#266 女#29) suitable; adequate; ready; settled#3302. 在场[zai4 chang3] (在#55 场#503) to be present; to be on the scene#3303. 相处[xiang1 chu3] (相#160 处#579) to be in contact (with sb); to associate; to interact; to get along (well, poorly)#3304. 仿[fang3] (亻#7 方#198) to imitate; to copy; variant of 仿[fang3]; seemingly#3305. 精彩[jing1 cai3] (精#1324 彩#2053) wonderful; marvelous; brilliant#3306. 市场[shi4 chang3] (市#896 场#503) marketplace; market; bazaar; (economics) market#3307. 请求[qing3 qiu2] (请#512 求#395) to request; to ask; request (CL:個|个[ge4])#3308. 钓[diao4] (钅#227 勺#21) to fish with a hook and line; to angle#3309. 关注[guan1 zhu4] (关#329 注#1070) to pay attention to; to follow sth closely; to follow (on social media); concern; interest; attention#3310. 幸福[xing4 fu2] (幸#1088 福#1863) happiness; happy; blessed#3311. 矩[ju3] (矢#175 巨#1021) variant of 矩[ju3]; carpenter's square; rule; regulation; pattern; to carve#3312. 崩[beng1] (山#334 朋#592) to collapse; to fall into ruins; death of king or emperor; demise#3313. 某些[mou3 xie1] (某#859 些#277) some; certain (things)#3314. 打败[da3 bai4] (打#272 败#1533) to defeat; to overpower; to beat; to be defeated#3315. 接着[jie1 zhe5] (接#639 着#267) to catch and hold on; to continue; to go on to do sth; to follow; to carry on; then; after that; subsequently; to proceed; to ensue; in turn; in one's turn#3316. 脆[cui4] (月#40 危#1205) old variant of 脆[cui4]; brittle; fragile; crisp; crunchy; clear and loud voice; neat#3317. 瞎[xia1] (目#72 害#728) blind; groundlessly; foolishly; to no purpose#3318. 加州[jia1 zhou1] (加#408 州#1094) California#3319. 耳朵[er3 duo5] (耳#235 朵#1588) ear; CL:隻|只[zhi1],個|个[ge4],對|对[dui4]; handle (on a cup)#3320. 济[ji3] (氵#60 齐#1310) used in place names associated with the Ji River 濟水|济水[Ji3 Shui3]; surname Ji; used in 濟濟|济济[ji3 ji3]; to cross a river; to aid or relieve; to be of help#3321. 地下[di4 xia4] (地#317 下#109) underground; subterranean; covert#3322. 艘[sou1] (舟#631 叟#1679) classifier for ships; Taiwan pr. [sao1]#3323. 逊[xun4] (辶#33 孙#2184) to abdicate; modest; yielding; unpretentious; inferior to; (slang) to suck#3324. 𥝢(禾#107 勹#19 丿#2) #3325. 认出[ren4 chu1] (认#365 出#192) recognition; to recognize#3326. 进展[jin4 zhan3] (进#412 展#1415) to make headway; to make progress#3327. 黎[li2] (𥝢#3324 人#6 氺#333) Li ethnic group of Hainan Province; surname Li; abbr. for Lebanon 黎巴嫩[Li2ba1nen4]; (literary) black; dark; many; multitude#3328. 植[zhi2] (木#38 直#403) to plant#3329. 欺[qi1] (其#338 欠#183) to take unfair advantage of; to deceive; to cheat#3330. 县[xian4] (且#136 厶#17) county#3331. 和平[he2 ping2] (和#169 平#705) Heping District of Shenyang city 瀋陽市|沈阳市[Shen3 yang2 shi4], Liaoning; Heping or Hoping Township in Taichung County 臺中縣|台中县[Tai2 zhong1 Xian4], Taiwan; peace; peaceful#3332. 下手[xia4 shou3] (下#109 手#211) to start; to put one's hand to; to set about; the seat to the right of the main guest#3333. 耒[lei3] (一#1 未#596) plow#3334. 乐意[le4 yi4] (乐#671 意#417) to be willing to do sth; to be ready to do sth; to be happy to do sth; content; satisfied#3335. 㚅(夂#165 𤯔#3337) #3336. 隆[long2] (阝#46 㚅#3335) surname Long; short for 吉隆坡[Ji2long2po1], Kuala Lumpur; sound of drums; grand; intense; prosperous; to swell; to bulge#3337. 𤯔(一#1 生#167) #3338. 胶[jiao1] (月#40 交#499) to glue; glue; gum; rubber#3339. 建立[jian4 li4] (建#996 立#122) to establish; to set up; to found#3340. 报道[bao4 dao4] (报#808 道#250) to report (news); report; CL:篇[pian1],份[fen4]#3341. 蹈[dao3] (𧾷#262 舀#3073) to tread on; to trample; to stamp; to fulfill; Taiwan pr. [dao4]#3342. 你好[ni3 hao3] (你#25 好#69) hello; hi#3343. 议员[yi4 yuan2] (议#974 员#586) member (of a legislative body); representative#3344. 署[shu3] (罒#396 者#161) office; bureau; (Taiwan pr. [shu4]) to sign; to arrange#3345. 辱[ru3] (辰#1500 寸#42) disgrace; dishonor; to insult; to bring disgrace or humiliation to; to be indebted to; self-deprecating; Taiwan pr. [ru4]#3346. 仪式[yi2 shi4] (仪#2257 式#531) ceremony#3347. 粗[cu1] (米#240 且#136) (of sth long) wide; thick; (of sth granular) coarse; (of a voice) gruff; (of sb's manner etc) rough; crude; careless; rude; variant of 粗[cu1]; remote; distant; variant of 粗[cu1]#3348. 逮捕[dai4 bu3] (逮#2458 捕#2011) to arrest; to apprehend; to take into custody; Taiwan pr. [dai3bu3]#3349. 邪恶[xie2 e4] (邪#2810 恶#1206) sinister; vicious; wicked; evil#3350. 舞台[wu3 tai2] (舞#972 台#378) (lit. and fig.) stage; arena#3351. 部落[bu4 luo4] (部#668 落#1401) tribe#3352. 关门[guan1 men2] (关#329 门#51) to close a door; to lock a door; (of a shop etc) to close (for the night or permanently)#3353. 生物[sheng1 wu4] (生#167 物#686) organism; living creature; life form; biological; CL:個|个[ge4]#3354. 枚[mei2] (木#38 攵#114) surname Mei; classifier for small objects: coins, badges, rings, carved seals, chess pieces, eggs, fingerprints etc (more formal than 個|个[ge4]); classifier for bombs, missiles, satellites etc; (on product packaging) classifier for flat items (from Japanese 枚 "mai"); (old) stick used as a gag to prevent soldiers from talking while sneaking up on the enemy#3355. 放心[fang4 xin1] (放#446 心#61) to feel relieved; to feel reassured; to be at ease#3356. 激动[ji1 dong4] (激#1639 动#444) to move emotionally; to stir up (emotions); to excite#3357. 基本[ji1 ben3] (基#1224 本#343) basic; fundamental; main; elementary#3358. 丹尼[dan1 ni2] (丹#1404 尼#241) Danny (name)#3359. 冘[yin2] to go forward; to advance; (bound form) mostly used in either 冘豫[you2 yu4] or 冘疑[you2 yi2]#3360. 内容[nei4 rong2] (内#414 容#1243) content; substance; details; CL:個|个[ge4],項|项[xiang4]#3361. 篇[pian1] (竹#191 扁#817) sheet; piece of writing; bound set of bamboo slips used for record keeping (old); classifier for written items: chapter, article#3362. 污[wu1] (氵#60 亏#1509) variant of 污[wu1]; variant of 污[wu1]; dirty; filthy; foul; corrupt; to smear; to defile; dirt; filth#3363. 工具[gong1 ju4] (工#144 具#210) tool; instrument; utensil; means (to achieve a goal etc)#3364. 手中(手#211 中#174) #3365. 范围[fan4 wei2] (范#2350 围#1557) range; scope; limit; extent; CL:個|个[ge4]#3366. 丫[ya1] (丷#31 丨#11) fork; branch; bifurcation; girl#3367. 艰[jian1] (又#34 艮#98) difficult; hard; hardship#3368. 泽[ze2] (氵#60 𠬤#991) pool; pond; (of metals etc) luster; favor or beneficence; damp; moist#3369. 不止[bu4 zhi3] (不#23 止#92) incessantly; without end; more than; not limited to#3370. 导致[dao3 zhi4] (导#1482 致#1624) to lead to; to create; to cause; to bring about#3371. 脖[bo2] (月#40 孛#2297) neck#3372. 生存[sheng1 cun2] (生#167 存#1128) to exist; to survive#3373. 蚤[zao3] (叉#2079 虫#410) flea#3374. 难过[nan2 guo4] (难#653 过#148) to feel sad; to feel unwell; (of life) to be difficult#3375. 骂[ma4] (吅#498 马#70) to scold; to abuse; to curse; CL:通[tong4],頓|顿[dun4]; variant of 罵|骂[ma4]#3376. 乔治[qiao2 zhi4] (乔#1066 治#1137) George (name)#3377. 猛[meng3] (犭#312 孟#3032) ferocious; fierce; violent; brave; suddenly; abrupt; (slang) awesome#3378. 慈[ci2] (兹#1712 心#61) compassionate; gentle; merciful; kind; humane#3379. 牧师[mu4 shi1] (牧#2836 师#750) chaplain; churchman; clergyman; parson; pastor; priest; rector#3380. 亲自[qin1 zi4] (亲#402 自#142) personally; in person; oneself#3381. 全都[quan2 dou1] (全#458 都#188) all; without exception#3382. 文化[wen2 hua4] (文#65 化#488) culture; civilization; cultural; CL:個|个[ge4],種|种[zhong3]#3383. 彖[tuan4] (彑#1718 𧰨#206) to foretell the future using the trigrams of the Book of Changes 易經|易经#3384. 一百(一#1 百#943) #3385. 姿[zi1] (次#284 女#29) beauty; disposition; looks; appearance#3386. 打赌[da3 du3] (打#272 赌#1795) to bet; to make a bet; a wager#3387. 缝[feng2] (纟#91 逢#2589) to sew; to stitch; seam; crack; narrow slit; CL:道[dao4]#3388. 当中[dang1 zhong1] (当#299 中#174) among; in the middle; in the center#3389. 主义[zhu3 yi4] (主#295 义#659) -ism; ideology#3390. 表情[biao3 qing2] (表#652 情#489) (facial) expression; to express one's feelings#3391. 韩[han2] (𠦝#1319 韦#923) Han, one of the Seven Hero States of the Warring States 戰國七雄|战国七雄; Korea from the fall of the Joseon dynasty in 1897; Korea, esp. South Korea 大韓民國|大韩民国; surname Han#3392. 讶[ya4] (讠#36 牙#474) astounded#3393. 冒险[mao4 xian3] (冒#1362 险#1166) to take risks; to take chances; foray; adventure#3394. 捉[zhuo1] (扌#52 足#1185) to clutch; to grab; to capture#3395. 抛弃[pao1 qi4] (抛#2117 弃#1317) to abandon; to discard; to renounce; to dump (sb)#3396. 询[xun2] (讠#36 旬#3090) to ask about; to inquire about#3397. 大夫[da4 fu1] (大#35 夫#287) senior official (in imperial China); doctor; physician#3398. 放手[fang4 shou3] (放#446 手#211) to let go one's hold; to give up; to have a free hand#3399. 填[tian2] (土#13 真#222) to fill or stuff; (of a form etc) to fill in#3400. 柯[ke1] (木#38 可#84) surname Ke; (literary) branch; stem; stalk; (literary) ax handle#3401. 左边[zuo3 bian5] (左#1182 边#589) left; the left side; to the left of#3402. 船长[chuan2 zhang3] (船#1183 长#308) captain (of a boat); skipper#3403. 名叫[ming2 jiao4] (名#453 叫#328) called; named#3404. 祈祷[qi2 dao3] (祈#3062 祷#3029) to pray; to say a prayer#3405. 赋[fu4] (贝#189 武#1583) poetic essay; taxation; to bestow on; to endow with#3406. 碍[ai4] (石#348 㝵#201) to hinder; to obstruct; to block#3407. 百万[bai3 wan4] (百#943 万#466) million#3408. 伙伴[huo3 ban4] (伙#547 伴#1734) partner; companion; comrade#3409. 泄[xie4] (氵#60 世#689) variant of 洩|泄[xie4]; (bound form) to leak out; to discharge; (fig.) to divulge#3410. 制作[zhi4 zuo4] (制#1020 作#359) to make; to manufacture#3411. 搭档[da1 dang4] (搭#1961 档#1987) to cooperate; partner#3412. 街上[jie1 shang5] (街#1334 上#56) on the street; in town#3413. 湿[shi1] (氵#60 显#1209) variant of 濕|湿[shi1]; moist; wet#3414. 儿童[er2 tong2] (儿#50 童#1449) child#3415. 麦克[mai4 ke4] (麦#1471 克#553) (name) Mike; Michael; (prefix) Mac-; Mc-; microphone (loanword)#3416. 经理[jing1 li3] (经#349 理#658) manager; director; CL:個|个[ge4],位[wei4],名[ming2]#3417. 铃[ling2] (钅#227 令#496) (small) bell; CL:隻|只[zhi1]#3418. 扶[fu2] (扌#52 夫#287) to support with the hand; to help sb up; to support oneself by holding onto something; to help#3419. 惊喜[jing1 xi3] (惊#1446 喜#562) nice surprise; to be pleasantly surprised#3420. 猴[hou2] (犭#312 侯#2599) monkey; CL:隻|只[zhi1]#3421. 晓[xiao3] (日#15 尧#1119) dawn; daybreak; to know; to let sb know; to make explicit#3422. 约翰[yue1 han4] (约#575 翰#2855) John (name); Johan (name); Johann (name)#3423. 积[ji1] (禾#107 只#164) to amass; to accumulate; to store up; (math.) product (the result of multiplication); (TCM) constipation; indigestion#3424. 轨[gui3] (车#180 九#455) (bound form) rail; track; course; path#3425. 缘[yuan2] (纟#91 彖#3383) cause; reason; karma; fate; predestined affinity; margin; hem; edge; along#3426. 恕[shu4] (如#292 心#61) to forgive#3427. 脖子[bo2 zi5] (脖#3371 子#47) neck; CL:個|个[ge4]#3428. 说服[shuo1 fu2] (说#125 服#769) to persuade; to convince; to talk sb over; Taiwan pr. [shui4 fu2]#3429. 惊讶[jing1 ya4] (惊#1446 讶#3392) amazed; astonished; to surprise; amazing; astonishment; awe#3430. 赢得[ying2 de2] (赢#1347 得#202) to win; to gain#3431. 阁下[ge2 xia4] (阁#2713 下#109) your distinguished self; your majesty; sire#3432. 宰[zai3] (宀#66 辛#854) to slaughter; to butcher; to kill (animals etc); (coll.) to fleece; to rip off; to overcharge; (bound form) to govern; to rule; (bound form) (a title for certain government officials in ancient China)#3433. 保险[bao3 xian3] (保#620 险#1166) insurance; to insure; safe; secure; be sure; be bound to; CL:份[fen4]#3434. 意味着[yi4 wei4 zhe5] (意#417 味#1235 着#267) to signify; to mean; to imply#3435. 憾[han4] (忄#140 感#578) regret (sense of loss or dissatisfaction)#3436. 坒[bi4] (比#261 土#13) (literary) to adjoin#3437. 陛[bi4] (阝#46 坒#3436) the steps to the throne#3438. 陛下[bi4 xia4] (陛#3437 下#109) Your Majesty; His or Her Majesty#3439. 完毕[wan2 bi4] (完#451 毕#1687) to finish; to end; to complete#3440. 恰[qia4] (忄#140 合#153) exactly; just#3441. 离婚[li2 hun1] (离#605 婚#982) to divorce#3442. 等待[deng3 dai4] (等#439 待#905) to wait; to wait for#3443. 爱情[ai4 qing2] (爱#406 情#489) romance; love (romantic); CL:份[fen4]#3444. 衫[shan1] (衤#325 彡#373) garment; jacket with open slits in place of sleeves#3445. 传统[chuan2 tong3] (传#981 统#1097) tradition; traditional; convention; conventional; CL:個|个[ge4]#3446. 贱人[jian4 ren2] (贱#2432 人#6) slut; cheap person#3447. 信仰[xin4 yang3] (信#494 仰#2843) to believe in (a religion); firm belief; conviction#3448. 纵[zong4] (纟#91 从#133) vertical; north-south (Taiwan pr. [zong1]); from front to back; longitudinal; lengthwise (Taiwan pr. [zong1]); military unit corresponding to an army corps (Taiwan pr. [zong1]); (bound form) to release (a captive); to indulge; to leap up; (literary) even if#3449. 尊重[zun1 zhong4] (尊#1797 重#566) to esteem; to respect; to honor; to value; eminent; serious; proper#3450. 保安[bao3 an1] (保#620 安#407) to ensure public security; to ensure safety (for workers engaged in production); public security; security guard#3451. 距[ju4] (𧾷#262 巨#1021) to be at a distance of ... from; to be apart from; (bound form) distance; spur (on the leg of certain birds: gamecock, pheasant etc)#3452. 怪物[guai4 wu5] (怪#844 物#686) monster; freak; eccentric person#3453. 杀害[sha1 hai4] (杀#366 害#728) to murder#3454. 励[li4] (厉#1927 力#78) surname Li; to encourage; to urge#3455. 卡尔[ka3 er3] (卡#747 尔#24) Karl (name)#3456. 滩[tan1] (氵#60 难#653) beach; shoal; rapids; CL:片[pian4]; classifier for liquids: pool, puddle#3457. 愚[yu2] (禺#1062 心#61) to be stupid; to cheat or deceive; me or I (modest)#3458. 㢆(广#194 里#158) #3459. 缠[chan2] (纟#91 㢆#3458) to wind around; to wrap round; to coil; tangle; to involve; to bother; to annoy#3460. 捡[jian3] (扌#52 佥#561) to pick up; to collect; to gather#3461. 警方[jing3 fang1] (警#908 方#198) police#3462. 牛仔[niu2 zai3] (牛#216 仔#1731) cowboy#3463. 表达[biao3 da2] (表#652 达#931) to express; to convey#3464. 晚饭[wan3 fan4] (晚#528 饭#1111) evening meal; dinner; supper; CL:份[fen4],頓|顿[dun4],次[ci4],餐[can1]#3465. 渴[ke3] (氵#60 曷#763) thirsty#3466. 迷人[mi2 ren2] (迷#1364 人#6) fascinating; enchanting; charming; tempting#3467. 忽[hu1] (勿#491 心#61) surname Hu; to neglect; to overlook; to ignore; suddenly#3468. 中央[zhong1 yang1] (中#174 央#965) central; middle; center; central authorities (of a state)#3469. 链[lian4] (钅#227 连#875) chain; cable (unit of length: 100 fathoms, about 185 m); chain (unit of length: 66 feet, about 20 m); to chain; to enchain#3470. 愤[fen4] (忄#140 贲#2318) indignant; anger; resentment#3471. 览[lan3] (〢#588 𠂉#82 丶#4 见#123) to look at; to view; to read#3472. 晚餐[wan3 can1] (晚#528 餐#1536) evening meal; dinner; CL:份[fen4],頓|顿[dun4],次[ci4]#3473. 年轻人[nian2 qing1 ren2] (年#340 轻#1181 人#6) young people; youngster#3474. 贼[zei2] (贝#189 戎#3025) thief; traitor; wily; deceitful; evil; extremely#3475. 俱乐部[ju4 le4 bu4] (俱#3070 乐#671 部#668) (loanword) club (the organization or its premises)#3476. 好玩[hao3 wan2] (好#69 玩#615) amusing; fun; interesting; to be playful; to be fond of one's fun#3477. 坞[wu4] (土#13 乌#1845) (bound form) low area within a surrounding barrier; (literary) small castle; fort; variant of 塢|坞[wu4]#3478. 炮[bao1] (火#187 包#422) to sauté; to fry; to dry by heating; to prepare herbal medicine by roasting or parching (in a pan); cannon; CL:座[zuo4]; firecracker; variant of 炮[pao4]#3479. 坦白[tan3 bai2] (坦#2039 白#20) honest; forthcoming; to confess#3480. 夫妇[fu1 fu4] (夫#287 妇#1785) a (married) couple; husband and wife; CL:對|对[dui4]#3481. 开火[kai1 huo3] (开#157 火#187) to open fire; to start shooting; to light the flame (for cooking)#3482. 萝[luo2] (艹#150 罗#906) radish#3483. 逐[zhu2] (辶#33 豕#297) (bound form) to pursue; to chase away; individually; one by one#3484. 霍[huo4] (雨#468 隹#209) surname Huo; (literary) suddenly#3485. 一面[yi1 mian4] (一#1 面#428) one side; one aspect; simultaneously... (and...); one's whole face#3486. 皮肤[pi2 fu1] (皮#289 肤#2790) skin; CL:層|层[ceng2],塊|块[kuai4]#3487. 力气[li4 qi5] (力#78 气#501) physical strength#3488. 饼干[bing3 gan1] (饼#1831 干#162) biscuit; cracker; cookie; CL:片[pian4],塊|块[kuai4]#3489. 尘[chen2] (小#16 土#13) dust; dirt; earth#3490. 人才[ren2 cai2] (人#6 才#193) talent; talented person; looks; attractive looks#3491. 放在(放#446 在#55) #3492. 磅[bang4] (石#348 旁#1483) scale (instrument for weighing); to weigh; (loanword) pound (unit of weight, about 454 grams); (printing) point (unit used to measure the size of type); (Tw) (printing) pound; ream weight (used to describe paper thickness); used in 磅礡|磅礴[pang2bo2]; Taiwan pr. [pang1]#3493. 尖叫[jian1 jiao4] (尖#2214 叫#328) to screech; to shriek#3494. 陌[mo4] (阝#46 百#943) raised path; street#3495. 伦敦[lun2 dun1] (伦#1474 敦#3165) London, capital of United Kingdom#3496. 遗憾[yi2 han4] (遗#2095 憾#3435) regret; to regret; to be sorry that#3497. 暖[nuan3] (日#15 爰#2003) old variant of 暖[nuan3]; warm; to warm; variant of 暖[nuan3]; variant of 暖[nuan3], warm#3498. 缩[suo1] (纟#91 宿#2514) to withdraw; to pull back; to contract; to shrink; to reduce; abbreviation; also pr. [su4]#3499. 退出[tui4 chu1] (退#1084 出#192) to withdraw; to abort; to quit; to log out (computing)#3500. 偿[chang2] (亻#7 尝#1688) to repay; to compensate for; to recompense; to fulfill (hopes etc)#3501. 过程[guo4 cheng2] (过#148 程#1428) course of events; process; CL:個|个[ge4]#3502. 受害者[shou4 hai4 zhe3] (受#585 害#728 者#161) casualty; victim; those injured and wounded#3503. 可惜[ke3 xi1] (可#84 惜#2727) it is a pity; what a pity; unfortunately#3504. 舞蹈[wu3 dao3] (舞#972 蹈#3341) dance (performance art); dancing#3505. 芭[ba1] (艹#150 巴#74) an unidentified fragrant plant mentioned in the Songs of Chu 楚辭|楚辞[Chu3ci2]; used in 芭蕉[ba1jiao1]; used in transliteration#3506. 返[fan3] (辶#33 反#481) to return (to)#3507. 当成[dang4 cheng2] (当#299 成#335) to consider as; to take to be#3508. 辑[ji2] (车#180 咠#3011) to gather up; to collect; to edit; to compile#3509. 杂种[za2 zhong3] (杂#1440 种#527) hybrid; mixed breed; bastard; son of a bitch#3510. 弥[mi2] (弓#237 尔#24) full; to fill; completely; more; brimming or overflowing#3511. 圣诞节[sheng4 dan4 jie2] (圣#622 诞#1852 节#766) Christmas time; Christmas season; Christmas#3512. 澡[zao3] (氵#60 喿#1517) bath#3513. 殊[shu1] (歹#248 朱#1636) (literary) to kill; to behead; to sever; to separate; to surpass; (bound form) different; (bound form) special; remarkable; (literary) very; extremely#3514. 确保[que4 bao3] (确#739 保#620) to ensure; to guarantee#3515. 逗[dou4] (辶#33 豆#440) to tease (playfully); to entice; (coll.) to joke; (coll.) funny; amusing; to stay; to sojourn; brief pause at the end of a phrase (variant of 讀|读[dou4])#3516. 睁[zheng1] (目#72 争#724) to open (one's eyes)#3517. 勇气[yong3 qi4] (勇#2077 气#501) courage#3518. 障[zhang4] (阝#46 章#1849) to block; to hinder; to obstruct#3519. 胞[bao1] (月#40 包#422) placenta; womb; born of the same parents#3520. 舞会[wu3 hui4] (舞#972 会#76) dance; ball; party; CL:場|场[chang3]#3521. 男生[nan2 sheng1] (男#559 生#167) schoolboy; male student; boy; guy (young adult male)#3522. 家族[jia1 zu2] (家#307 族#1993) family; clan#3523. 钢[gang1] (钅#227 冈#476) steel#3524. 阳光[yang2 guang1] (阳#1826 光#742) sunshine; (of personality) upbeat; energetic; transparent (open to public scrutiny)#3525. 留言[liu2 yan2] (留#717 言#354) to leave a message; to leave one's comments; message#3526. 垫[dian4] (执#826 土#13) pad; cushion; mat; to pad out; to fill a gap; to pay for sb; to advance (money)#3527. 吓人[xia4 ren2] (吓#1147 人#6) to scare; scary; frightening#3528. 肃[su4] surname Su; respectful; solemn; to eliminate; to clean up#3529. 柏[bai3] (木#38 白#20) surname Bai; Taiwan pr. [Bo2]; cedar; cypress; Taiwan pr. [bo2]; (used for transcribing names); used in 黃柏|黄柏[huang2bo4]; Taiwan pr. [bo2]; variant of 柏[bai3]#3530. 衬[chen4] (衤#325 寸#42) (of garments) against the skin; to line; lining; to contrast with; to assist financially#3531. 教授[jiao4 shou4] (教#872 授#2719) professor; to instruct; to lecture on; CL:個|个[ge4],位[wei4]#3532. 借口[jie4 kou3] (借#1562 口#3) to use as an excuse; excuse; pretext#3533. 爆炸[bao4 zha4] (爆#2227 炸#1545) explosion; to explode; to blow up; to detonate#3534. 合同[he2 tong5] (合#153 同#482) contract; agreement; CL:份[fen4]#3535. 壳[qiao4] (士#205 冗#1857) variant of 殼|壳[qiao4]; (coll.) shell (of an egg, nut, crab etc); case; casing; housing (of a machine or device); (bound form) shell; Taiwan pr. [ke2]#3536. 地图[di4 tu2] (地#317 图#1217) map; CL:張|张[zhang1],本[ben3]#3537. 撑[cheng1] (扌#52 掌#1870) to support; to prop up; to push or move with a pole; to maintain; to open or unfurl; to fill to bursting point; brace; stay; support#3538. 看法[kan4 fa3] (看#176 法#443) way of looking at a thing; view; opinion; CL:個|个[ge4]#3539. 独自[du2 zi4] (独#1386 自#142) alone#3540. 乔伊(乔#1066 伊#1254) #3541. 当地[dang1 di4] (当#299 地#317) local#3542. 成长[cheng2 zhang3] (成#335 长#308) to mature; to grow; growth#3543. 惑[huo4] (或#601 心#61) to confuse; to be puzzled#3544. 面包[mian4 bao1] (面#428 包#422) bread; CL:片[pian4],袋[dai4],塊|块[kuai4]#3545. 度过[du4 guo4] (度#927 过#148) to pass; to spend (time); to survive; to get through#3546. 女孩子[nu:3 hai2 zi5] (女#29 孩#400 子#47) girl#3547. 强大[qiang2 da4] (强#1028 大#35) big and strong; formidable; powerful#3548. 人家[ren2 jia1] (人#6 家#307) household; dwelling; family; sb else's house; household business; house of woman's husband-to-be; CL:戶|户[hu4],家[jia1]; other people; sb else; he, she or they; I, me (referring to oneself as "one" or "people")#3549. 大麻[da4 ma2] (大#35 麻#632) hemp (Cannabis sativa); cannabis; marijuana#3550. 规矩[gui1 ju5] (规#1564 矩#3311) lit. compass and set square; fig. established standard; rule; customs; practices; fig. upright and honest; well-behaved#3551. 窗户[chuang1 hu5] (窗#2224 户#358) window; CL:個|个[ge4],扇[shan4]#3552. 邮件[you2 jian4] (邮#2443 件#460) mail; post; email#3553. 好看[hao3 kan4] (好#69 看#176) good-looking; nice-looking; (of a movie, book, TV show etc) good; in an embarrassing situation#3554. 动机[dong4 ji1] (动#444 机#471) motive; motivation#3555. 以下[yi3 xia4] (以#172 下#109) that level or lower; that amount or less; the following#3556. 天生[tian1 sheng1] (天#124 生#167) nature; disposition; innate; natural#3557. 创造[chuang4 zao4] (创#1805 造#1250) to create; to bring about; to produce; to set (a record)#3558. 上午[shang4 wu3] (上#56 午#383) morning; CL:個|个[ge4]#3559. 主任[zhu3 ren4] (主#295 任#583) director; head; CL:個|个[ge4]#3560. 后悔[hou4 hui3] (后#270 悔#2620) to regret; to feel remorse#3561. 变态[bian4 tai4] (变#600 态#1691) to metamorphose (biology); abnormal; perverted; hentai; (slang) pervert#3562. 骚[sao1] (马#70 蚤#3373) (bound form) to disturb; to disrupt; flirty; coquettish; abbr. for 離騷|离骚[Li2 Sao1]; (literary) literary writings; poetry; foul-smelling (variant of 臊[sao1]); (dialect) (of certain domestic animals) male#3563. 皆[jie1] (比#261 白#20) all; each and every; in all cases#3564. 暴力[bao4 li4] (暴#1470 力#78) violence; force; violent#3565. 溥[pu3] (氵#60 尃#1196) surname Pu; extensive; pervading#3566. 出局[chu1 ju2] (出#192 局#979) (of a batter) to be put out (in baseball); to be dismissed (in cricket); (of a player or team) to be eliminated from a competition; (fig.) to be weeded out; to get the chop (in a competitive environment)#3567. 事故[shi4 gu4] (事#182 故#228) accident; CL:樁|桩[zhuang1],起[qi3],次[ci4]#3568. 背叛[bei4 pan4] (背#1368 叛#2518) to betray#3569. 制造[zhi4 zao4] (制#1020 造#1250) to manufacture; to make#3570. 当作[dang4 zuo4] (当#299 作#359) to treat as; to regard as#3571. 公众[gong1 zhong4] (公#419 众#1283) public#3572. 一辈子[yi1 bei4 zi5] (一#1 辈#2388 子#47) (for) a lifetime#3573. 奔[ben1] (大#35 卉#1928) to hurry; to rush; to run quickly; to elope; to go to; to head for; towards; Taiwan pr. [ben1]; variant of 奔[ben1]; variant of 奔[ben4]#3574. 妟(日#15 女#29) #3575. 揭[jie1] (扌#52 曷#763) surname Jie; to take the lid off; to expose; to unmask#3576. 茜[qian4] (艹#150 西#398) (bound form) Indian madder; munjeet (Rubia cordifolia); (bound form) madder red; dark red; alizarin crimson; used in the transliteration of people's names#3577. 爹[die1] (父#263 多#204) dad#3578. 上尉[shang4 wei4] (上#56 尉#2195) captain (military rank)#3579. 宴[yan4] (宀#66 妟#3574) (bound form) feast; repose; variant of 宴[yan4]#3580. 珀[po4] (王#97 白#20) used in 琥珀[hu3po4]#3581. 蕾[lei3] (艹#150 雷#1377) bud#3582. 芝[zhi1] (艹#150 之#256) Zoysia pungens#3583. 姐妹[jie3 mei4] (姐#895 妹#1304) sisters; siblings; sister (school, city etc)#3584. 犹太人[you2 tai4 ren2] (犹#2225 太#173 人#6) Jew#3585. 实现[shi2 xian4] (实#530 现#268) to achieve; to implement; to realize; to bring about#3586. 拦[lan2] (扌#52 兰#856) to block sb's path; to obstruct; to flag down (a taxi)#3587. 箱子[xiang1 zi5] (箱#1938 子#47) suitcase; chest; box; case; trunk; CL:隻|只[zhi1],個|个[ge4]#3588. 酱[jiang4] (丬#377 夕#71 酉#493) thick paste of fermented soybean; marinated in soy paste; paste; jam#3589. 三十[san1 shi2] (三#171 十#10) thirty; 30#3590. 驱[qu1] (马#70 区#694) variant of 驅|驱[qu1]; old variant of 驅|驱[qu1]; to expel; to urge on; to drive; to run quickly#3591. 难以[nan2 yi3] (难#653 以#172) hard to (predict, imagine etc)#3592. 唉[ai1] (口#3 矣#1684) interjection or grunt of agreement or recognition (e.g. yes, it's me!); to sigh; alas; oh dear#3593. 第四(第#539 四#711) #3594. 提出[ti2 chu1] (提#867 出#192) to raise (an issue); to propose; to put forward; to suggest; to post (on a website); to withdraw (cash)#3595. 机构[ji1 gou4] (机#471 构#2559) mechanism; structure; organization; agency; institution; CL:所[suo3]#3596. 桼(木#38 人#6 氺#333) #3597. 抹[ma1] (扌#52 末#1431) to wipe; to smear; to wipe; to erase; classifier for wisps of cloud, light-beams etc; to plaster; to go around; to skirt#3598. 支票[zhi1 piao4] (支#634 票#835) check (bank); cheque; CL:本[ben3]#3599. 祝贺[zhu4 he4] (祝#1272 贺#3001) to congratulate; congratulations; CL:個|个[ge4]#3600. 晃[huang3] (日#15 光#742) variant of 晃[huang3]; to dazzle; to flash past; to sway; to shake; to wander about#3601. 启动[qi3 dong4] (启#2396 动#444) to start (a machine); (fig.) to set in motion; to launch (an operation); to activate (a plan)#3602. 宝宝[bao3 bao5] (宝#825 宝#825) darling; baby#3603. 眠[mian2] (目#72 民#987) to sleep; to hibernate#3604. 受不了[shou4 bu4 liao3] (受#585 不#23 了#9) unbearable; unable to endure; can't stand#3605. 泪[lei4] (氵#60 目#72) (bound form) tears; teardrops#3606. 自信[zi4 xin4] (自#142 信#494) to have confidence in oneself; self-confidence#3607. 期待[qi1 dai4] (期#1069 待#905) to look forward to; to await; expectation#3608. 盟[meng2] (明#411 皿#456) oath; pledge; union; to ally; league, a subdivision corresponding to prefecture in Inner Mongolia#3609. 全国[quan2 guo2] (全#458 国#612) whole nation; nationwide; countrywide; national#3610. 上司[shang4 si5] (上#56 司#621) boss; superior#3611. 个性[ge4 xing4] (个#43 性#713) individuality; personality#3612. 畜[chu4] (玄#1461 田#168) livestock; domesticated animal; domestic animal; to raise (animals)#3613. 科学[ke1 xue2] (科#1264 学#542) science; scientific knowledge; scientific; rational; CL:門|门[men2],個|个[ge4],種|种[zhong3]#3614. 农场[nong2 chang3] (农#1977 场#503) farm#3615. 万岁[wan4 sui4] (万#466 岁#679) Long live (the king, the revolution etc)!; Your Majesty; His Majesty#3616. 幽[you1] (山#334 𢆶#1538) remote; hidden away; secluded; serene; peaceful; to imprison; in superstition indicates the underworld; ancient district spanning Liaonang and Hebei provinces#3617. 规定[gui1 ding4] (规#1564 定#347) to stipulate; to specify; to prescribe; to fix (a price); to set (a quota); regulations; rules; provisions; stipulations#3618. 递[di4] (辶#33 弟#756) to hand over; to pass on; to deliver; (bound form) progressively; in the proper order#3619. 接到[jie1 dao4] (接#639 到#127) to receive (letter etc)#3620. 旅馆[lu:3 guan3] (旅#1710 馆#1883) hotel; CL:家[jia1]#3621. 卸[xie4] (𦈢#3622 卩#254) to unload; to unhitch; to remove or strip; to get rid of#3622. 𦈢(𠂉#82 一#1 ③) #3623. 耻[chi3] (耳#235 止#92) (bound form) shame; humiliation; disgrace#3624. 故意[gu4 yi4] (故#228 意#417) deliberately; on purpose#3625. 沾[zhan1] (氵#60 占#184) to moisten; to be infected by; to receive benefit or advantage through a contact; to touch; variant of 沾[zhan1]; to moisten#3626. 朴[piao2] (木#38 卜#88) surname Piao; Korean surname (Park, Pak or Bak); also pr. [Pu2]; used in 朴刀[po1dao1]; Celtis sinensis var. japonica; plain and simple; Taiwan pr. [pu2]#3627. 打扮[da3 ban5] (打#272 扮#2189) to decorate; to dress; to make up; to adorn; manner of dressing; style of dress#3628. 至于[zhi4 yu2] (至#108 于#342) as for; as to; to go so far as to#3629. 学会[xue2 hui4] (学#542 会#76) to learn; to master; institute; learned society; (scholarly) association#3630. 债[zhai4] (亻#7 责#1103) debt; CL:筆|笔[bi3]#3631. 不断[bu4 duan4] (不#23 断#1325) unceasing; uninterrupted; continuous; constant#3632. 泉[quan2] (白#20 水#457) spring (small stream); mouth of a spring; coin (archaic)#3633. 裸[luo3] (衤#325 果#332) variant of 裸[luo3]; naked; variant of 裸[luo3]#3634. 假装[jia3 zhuang1] (假#1150 装#1000) to feign; to pretend#3635. 经验[jing1 yan4] (经#349 验#1528) experience; to experience#3636. 想起[xiang3 qi3] (想#178 起#285) to recall; to think of; to call to mind#3637. 出门[chu1 men2] (出#192 门#51) to go out; to leave home; to go on a journey; away from home; (of a woman) to get married#3638. 废话[fei4 hua4] (废#2094 话#296) nonsense; rubbish; superfluous words; You don't say!; No kidding! (gently sarcastic)#3639. 厨房[chu2 fang2] (厨#2370 房#699) kitchen; CL:間|间[jian1]#3640. 舱[cang1] (舟#631 仓#520) cabin; the hold of a ship or airplane#3641. 瞒[man2] (目#72 𬜯#1201) to conceal from; to keep (sb) in the dark#3642. 宙[zhou4] (宀#66 由#368) eternity; (geology) eon#3643. 颜色[yan2 se4] (颜#3252 色#594) color; countenance; appearance; facial expression; pigment; dyestuff#3644. 罪犯[zui4 fan4] (罪#1138 犯#743) criminal#3645. 信心[xin4 xin1] (信#494 心#61) confidence; faith (in sb or sth); CL:個|个[ge4]#3646. 片子[pian1 zi5] (片#572 子#47) film; movie; film reel; phonograph record; X-ray image; thin flake; small piece#3647. 特殊[te4 shu1] (特#623 殊#3513) special; particular; unusual; extraordinary#3648. 单身[dan1 shen1] (单#693 身#281) unmarried; single; alone#3649. 思考[si1 kao3] (思#784 考#953) to reflect on; to ponder over#3650. 小说[xiao3 shuo1] (小#16 说#125) novel; fiction; CL:本[ben3],部[bu4]#3651. 鼻子[bi2 zi5] (鼻#2776 子#47) nose; CL:個|个[ge4],隻|只[zhi1]#3652. 姨[yi2] (女#29 夷#2816) mother's sister; aunt#3653. 情报[qing2 bao4] (情#489 报#808) information; intelligence#3654. 现金[xian4 jin1] (现#268 金#871) cash#3655. 披[pi1] (扌#52 皮#289) to drape over one's shoulders; to open; to unroll; to split open; to spread out#3656. 好奇[hao4 qi2] (好#69 奇#734) inquisitive; curious; inquisitiveness; curiosity#3657. 跟踪[gen1 zong1] (跟#404 踪#1814) to follow sb's tracks; to tail; to shadow; tracking#3658. 社区[she4 qu1] (社#1730 区#694) community; neighborhood#3659. 虫子[chong2 zi5] (虫#410 子#47) insect; bug; worm; CL:條|条[tiao2],隻|只[zhi1]#3660. 出租车[chu1 zu1 che1] (出#192 租#1936 车#180) taxi; (Tw) rental car#3661. 忍受[ren3 shou4] (忍#1741 受#585) to bear; to endure#3662. 公共[gong1 gong4] (公#419 共#617) public; common; communal#3663. 白色[bai2 se4] (白#20 色#594) white; fig. reactionary; anti-communist#3664. 郡[jun4] (君#1252 阝#46) canton; county; region#3665. 酪[lao4] (酉#493 各#355) (bound form) semi-solid food made from milk (junket, cheese etc); (bound form) fruit jelly; sweet paste made with crushed nuts; Taiwan pr. [luo4]#3666. 公民[gong1 min2] (公#419 民#987) citizen#3667. 妳(女#29 尔#24) #3668. 玩具[wan2 ju4] (玩#615 具#210) plaything; toy#3669. 达到[da2 dao4] (达#931 到#127) to reach; to achieve; to attain#3670. 酸[suan1] (酉#493 夋#2421) sour; tart; sick at heart; grieved; sore; aching; pedantic; impractical; to make sarcastic remarks about sb; an acid#3671. 关上[guan1 shang4] (关#329 上#56) to close (a door); to turn off (light, electrical equipment etc)#3672. 重大[zhong4 da4] (重#566 大#35) great; important; major; significant#3673. 中午[zhong1 wu3] (中#174 午#383) noon; midday; CL:個|个[ge4]#3674. 神经[shen2 jing1] (神#880 经#349) nerve; mental state; (coll.) unhinged; nutjob#3675. 上车[shang4 che1] (上#56 车#180) to get on or into (a bus, train, car etc)#3676. 以外[yi3 wai4] (以#172 外#568) apart from; other than; except for; external; outside of; on the other side of; beyond#3677. 警告[jing3 gao4] (警#908 告#336) to warn; to admonish#3678. 㫗(日#15 子#47) #3679. 厚[hou4] (厂#219 㫗#3678) thick; deep or profound; kind; generous; rich or strong in flavor; to favor; to stress#3680. 针对[zhen1 dui4] (针#1929 对#113) to target; to focus on; to be aimed at or against; in response to#3681. 打架[da3 jia4] (打#272 架#1330) to fight; to scuffle; to come to blows; CL:場|场[chang2]#3682. 宠[chong3] (宀#66 龙#1055) to love; to pamper; to spoil; to favor#3683. 共同[gong4 tong2] (共#617 同#482) common; joint; jointly; together; collaborative#3684. 蛮[man2] (亦#507 虫#410) barbarian; bullying; very; quite; rough; reckless#3685. 设备[she4 bei4] (设#1191 备#778) equipment; facilities; installations; CL:個|个[ge4]#3686. 佐[zuo3] (亻#7 左#1182) to assist; assistant; aide; to accompany#3687. 尽量[jin3 liang4] (尽#861 量#1188) as much as possible; to the greatest extent; as much as possible; to the greatest extent#3688. 牺[xi1] (牛#216 西#398) sacrifice#3689. 恐惧[kong3 ju4] (恐#1492 惧#3115) to be frightened; fear; dread#3690. 唤[huan4] (口#3 奂#1036) to call#3691. 椅子[yi3 zi5] (椅#2900 子#47) chair; CL:把[ba3],張|张[zhang1]#3692. 右边[you4 bian5] (右#771 边#589) right side; right, to the right#3693. 相同[xiang1 tong2] (相#160 同#482) identical; same#3694. 老人[lao3 ren2] (老#372 人#6) old man or woman; the elderly; one's aged parents or grandparents#3695. 小妞(小#16 妞#2280) #3696. 政治[zheng4 zhi4] (政#1531 治#1137) politics; political#3697. 医疗[yi1 liao2] (医#688 疗#1637) medical treatment#3698. 大事[da4 shi4] (大#35 事#182) major event; major political event (war or change of regime); major social event (wedding or funeral); (do sth) in a big way; CL:件[jian4],樁|桩[zhuang1]#3699. 夌[ling2] (土#13 八#41 夂#165) to dawdle; the name of the father of the Emperor Yao#3700. 妒[du4] (女#29 户#358) to envy (success, talent); jealous; variant of 妒[du4]#3701. 密码[mi4 ma3] (密#1168 码#1274) cipher; secret code; password; PIN#3702. 擅[shan4] (扌#52 亶#3269) without authority; to usurp; to arrogate to oneself; to monopolize; expert in; to be good at#3703. 一点儿[yi1 dian3 r5] (一#1 点#225 儿#50) erhua variant of 一點|一点[yi1 dian3]#3704. 档案[dang4 an4] (档#1987 案#795) file; record; archive#3705. 大不了[da4 bu4 liao3] (大#35 不#23 了#9) at worst; if worst comes to worst; (usu. in the negative) serious; alarming#3706. 意大利[yi4 da4 li4] (意#417 大#35 利#633) Italy#3707. 底下[di3 xia5] (底#800 下#109) the location below sth; afterwards#3708. 笑话[xiao4 hua5] (笑#809 话#296) joke; jest (CL:個|个[ge4]); to laugh at; to mock; ridiculous; absurd#3709. 港[gang3] (氵#60 巷#3013) Hong Kong (abbr. for 香港[Xiang1gang3]); surname Gang; harbor; port; CL:個|个[ge4]#3710. 坠[zhui4] (队#529 土#13) to fall; to drop; to weigh down#3711. 均[jun1] (土#13 匀#3136) equal; even; all; uniform#3712. 矿[kuang4] (石#348 广#194) mineral deposit; ore deposit; ore; a mine; variant of 礦|矿[kuang4]#3713. 忌[ji4] (己#229 心#61) to be jealous of; fear; dread; scruple; to avoid or abstain from; to quit; to give up sth#3714. 振[zhen4] (扌#52 辰#1500) to shake; to flap; to vibrate; to resonate; to rise up with spirit; to rouse oneself#3715. 碗[wan3] (石#348 宛#2720) variant of 碗[wan3]; variant of 碗[wan3]; variant of 碗[wan3]; bowl; cup; CL:隻|只[zhi1],個|个[ge4]#3716. 糊[hu2] (米#240 胡#1374) variant of 糊[hu2]; to smear; to daub; to cover (a surface with sth sticky or paste-like); Taiwan pr. [hu2]; to paste; to glue; blurry; unclear; muddled; (esp. of food) scorched; burnt; paste; mush; thick gruel; paste; cream; congee; (in 糊口[hu2kou3]) to feed oneself#3717. 前进[qian2 jin4] (前#346 进#412) to go forward; to forge ahead; to advance; onward#3718. 𦣞#3719. 机器[ji1 qi4] (机#471 器#1232) machine; CL:臺|台[tai2],部[bu4],個|个[ge4]#3720. 动力[dong4 li4] (动#444 力#78) motive power; (fig.) motivation; impetus#3721. 粘[nian2] (米#240 占#184) variant of 黏[nian2]; to glue; to paste; to adhere; to stick to#3722. 歌手[ge1 shou3] (歌#1136 手#211) singer#3723. 钻石[zuan4 shi2] (钻#2473 石#348) diamond; CL:顆|颗[ke1]#3724. 俗[su2] (亻#7 谷#888) custom; convention; popular; common; coarse; vulgar; secular#3725. 太空[tai4 kong1] (太#173 空#716) outer space#3726. 肿[zhong3] (月#40 中#174) to swell; swelling; swollen#3727. 篮[lan2] (竹#191 监#1037) basket (receptacle); basket (in basketball)#3728. 桃[tao2] (木#38 兆#692) peach#3729. 角度[jiao3 du4] (角#390 度#927) angle; point of view#3730. 抚[fu3] (扌#52 无#424) to comfort; to console; to stroke; to caress; an old term for province or provincial governor#3731. 旋[xuan2] (方#198 𭻾#3732) to revolve; a loop; a circle; to whirl; immediately; variant of 鏇|镟[xuan4]#3732. 𭻾(𠂉#82 疋#698) #3733. 唇[chun2] (辰#1500 口#3) lip; variant of 唇[chun2]#3734. 手指[shou3 zhi3] (手#211 指#779) finger; CL:個|个[ge4],隻|只[zhi1]#3735. 应付[ying4 fu5] (应#506 付#654) to deal with; to cope#3736. 墓[mu4] (莫#920 土#13) grave; tomb; mausoleum#3737. 吸血鬼[xi1 xue4 gui3] (吸#1076 血#816 鬼#774) leech; bloodsucking vermin; vampire (translated European notion); fig. cruel exploiter, esp. a capitalist exploiting the workers#3738. 详[xiang2] (讠#36 羊#152) detailed; comprehensive#3739. 竟然[jing4 ran2] (竟#1194 然#409) unexpectedly; to one's surprise; in spite of everything; in that crazy way; actually; to go as far as to#3740. 功夫[gong1 fu5] (功#1100 夫#287) skill; art; kung fu; labor; effort#3741. 普通[pu3 tong1] (普#1648 通#819) common; ordinary; general; average#3742. 背后[bei4 hou4] (背#1368 后#270) behind; at the back; in the rear; behind sb's back#3743. 歇[xie1] (曷#763 欠#183) to rest; to take a break; to stop; to halt; (dialect) to sleep; a moment; a short while#3744. 龄[ling2] (齿#2302 令#496) age; length of experience, membership etc#3745. 一两(一#1 两#320) #3746. 大楼[da4 lou2] (大#35 楼#1358) building (a relatively large, multistory one); CL:幢[zhuang4],座[zuo4]#3747. 老大[lao3 da4] (老#372 大#35) old age; very; eldest child in a family; leader of a group; boss; captain of a boat; leader of a criminal gang#3748. 早就[zao3 jiu4] (早#350 就#139) already at an earlier time#3749. 程序[cheng2 xu4] (程#1428 序#2645) procedures; sequence; order; computer program#3750. 翏[liu4] (羽#1083 㐱#1493) the sound of the wind; to soar#3751. 岩[yan2] (山#334 石#348) cliff; rock; variant of 巖|岩[yan2]; variant of 岩[yan2]; variant of 巖|岩[yan2]#3752. 有效[you3 xiao4] (有#63 效#1771) effective; in effect; valid#3753. 詹[zhan1] (厃#1135 儿#50 言#354) surname Zhan; (literary) verbose; (literary) to arrive, to reach#3754. 会见[hui4 jian4] (会#76 见#123) to meet with (sb who is paying a visit); CL:次[ci4]#3755. 夏天[xia4 tian1] (夏#2103 天#124) summer; CL:個|个[ge4]#3756. 开除[kai1 chu2] (开#157 除#983) to expel (a member of an organization); to fire (an employee)#3757. 手段[shou3 duan4] (手#211 段#1040) method; way; means (of doing sth); skill; ability; trick; wile#3758. 大部分[da4 bu4 fen5] (大#35 部#668 分#306) the greater part; the majority; most; Taiwan pr. [da4bu4fen4]#3759. 奇迹[qi2 ji4] (奇#734 迹#1926) variant of 奇蹟|奇迹[qi2ji4]; miracle; wonder; marvel#3760. 帛[bo2] (白#20 巾#151) silk#3761. 作业[zuo4 ye4] (作#359 业#413) school assignment; homework; work; task; operation; CL:個|个[ge4]; to operate#3762. 日记[ri4 ji4] (日#15 记#516) diary; CL:則|则[ze2],本[ben3],篇[pian1]#3763. 沙发[sha1 fa1] (沙#1230 发#302) sofa (loanword); CL:條|条[tiao2],張|张[zhang1]; (Internet slang) the first reply or replier to a forum post#3764. 筑[zhu4] (竹#191 巩#1365) short name for Guiyang 貴陽|贵阳[Gui4 yang2]; five-string lute; Taiwan pr. [zhu2]; to build; to construct; to ram; to hit; Taiwan pr. [zhu2]#3765. 棍[gun4] (木#38 昆#1046) stick; rod; truncheon; scoundrel; villain#3766. 佣[yong4] (亻#7 用#196) commission (for middleman); brokerage fee; to hire; to employ; servant; hired laborer; domestic help#3767. 方便[fang1 bian4] (方#198 便#1044) convenient; suitable; to facilitate; to make things easy; having money to spare; (euphemism) to relieve oneself#3768. 作证[zuo4 zheng4] (作#359 证#674) to bear witness; to testify; to serve as evidence#3769. 释放[shi4 fang4] (释#1672 放#446) to release; to set free; to liberate (a prisoner); to discharge#3770. 时机[shi2 ji1] (时#224 机#471) opportunity; opportune moment#3771. 区域[qu1 yu4] (区#694 域#2998) area; region; district#3772. 提醒[ti2 xing3] (提#867 醒#1380) to remind; to call attention to; to warn of#3773. 叮[ding1] (口#3 丁#62) to sting or bite (of mosquito, bee etc); to say repeatedly; to urge insistently; to ask repeatedly; to stick to a point; (onom.) tinkling or jingling sound#3774. 美妙[mei3 miao4] (美#541 妙#1860) beautiful; wonderful; splendid#3775. 牺牲[xi1 sheng1] (牺#3688 牲#3121) to sacrifice one's life; to sacrifice (sth valued); beast slaughtered as a sacrifice#3776. 失陪[shi1 pei2] (失#618 陪#1522) Excuse me, I must be leaving now.#3777. 马克[ma3 ke4] (马#70 克#553) Mark (name); mark (monetary unit)#3778. 行李[xing2 li5] (行#316 李#2092) luggage; CL:件[jian4]#3779. 卫星[wei4 xing1] (卫#1140 星#719) satellite; moon; CL:顆|颗[ke1]#3780. 谍[die2] (讠#36 枼#2717) to spy#3781. 审判[shen3 pan4] (审#1689 判#1550) a trial; to try sb#3782. 数字[shu4 zi4] (数#1151 字#690) numeral; digit; number; figure; amount; digital (electronics etc); CL:個|个[ge4]#3783. 立即[li4 ji2] (立#122 即#1309) immediately#3784. 翟[di2] (羽#1083 隹#209) surname Di; variant of 狄[Di2], generic name for northern ethnic minorities during the Qin and Han Dynasties (221 BC-220 AD); surname Zhai; long-tail pheasant#3785. 偶像[ou3 xiang4] (偶#2165 像#434) idol#3786. 郁[yu4] (有#63 阝#46) variant of 鬱|郁[yu4]; surname Yu; (bound form) strongly fragrant; old variant of 鬱|郁[yu4]; surname Yu; (bound form) (of vegetation) lush; luxuriant; (bound form) melancholy; depressed#3787. 肋[lei4] (月#40 力#78) rib; Taiwan pr. [le4]#3788. 聊天[liao2 tian1] (聊#1504 天#124) to chat; to gossip#3789. 局长[ju2 zhang3] (局#979 长#308) bureau chief; CL:位[wei4],個|个[ge4]#3790. 骨头[gu3 tou5] (骨#1289 头#207) bone; CL:根[gen1],塊|块[kuai4]; moral character; bitterness; Taiwan pr. [gu2 tou5]#3791. 暂时[zan4 shi2] (暂#2922 时#224) temporary; provisional; for the time being#3792. 江[jiang1] (氵#60 工#144) surname Jiang; river; CL:條|条[tiao2],道[dao4]#3793. 凉[liang2] (冫#81 京#131) the five Liang of the Sixteen Kingdoms, namely: Former Liang 前涼|前凉 (314-376), Later Liang 後涼|后凉 (386-403), Northern Liang 北涼|北凉 (398-439), Southern Liang 南涼|南凉[Nan2 Liang2] (397-414), Western Liang 西涼|西凉 (400-421); cool; cold; to let sth cool down#3794. 四处[si4 chu4] (四#711 处#579) all over the place; everywhere and all directions#3795. 趁[chen4] (走#147 㐱#1493) to avail oneself of; to take advantage of; old variant of 趁[chen4]#3796. 考试[kao3 shi4] (考#953 试#675) to take an exam; exam; CL:次[ci4]#3797. 氧[yang3] (气#501 羊#152) oxygen (chemistry)#3798. 大声[da4 sheng1] (大#35 声#796) loud voice; in a loud voice; loudly#3799. 时尚[shi2 shang4] (时#224 尚#1486) fashion; fad; fashionable#3800. 孤独[gu1 du2] (孤#2285 独#1386) lonely; solitary#3801. 好莱坞[hao3 lai2 wu4] (好#69 莱#1478 坞#3477) Hollywood; also pr. [Hao3lai2wu1]#3802. 文章[wen2 zhang1] (文#65 章#1849) article; essay; literary works; writings; hidden meaning; CL:篇[pian1],段[duan4],頁|页[ye4]#3803. 筹[chou2] (竹#191 寿#1970) chip (in gambling); token (for counting); ticket; to prepare; to plan; to raise (funds); resource; way; means#3804. 搅[jiao3] (扌#52 觉#464) to disturb; to annoy; to mix; to stir#3805. 否认[fou3 ren4] (否#1047 认#365) to declare to be untrue; to deny#3806. 态度[tai4 du5] (态#1691 度#927) manner; bearing; attitude; approach; CL:個|个[ge4]#3807. 发明[fa1 ming2] (发#302 明#411) to invent; an invention; CL:個|个[ge4]#3808. 争取[zheng1 qu3] (争#724 取#331) to fight for; to strive for; to win over#3809. 搜查[sou1 cha2] (搜#2217 查#680) to search#3810. 税[shui4] (禾#107 兑#120) taxes; duties#3811. 保佑[bao3 you4] (保#620 佑#3300) to bless and protect; blessing#3812. 蛋糕[dan4 gao1] (蛋#1014 糕#2082) cake; CL:塊|块[kuai4],個|个[ge4]#3813. 碰到[peng4 dao4] (碰#1491 到#127) to come across; to run into; to meet; to hit#3814. 上门[shang4 men2] (上#56 门#51) to drop in; to visit; to lock a door; (of a shop) to close; to go and live with one's wife's family, in effect becoming a member of her family#3815. 神奇[shen2 qi2] (神#880 奇#734) magical; mystical; miraculous#3816. 魅[mei4] (鬼#774 未#596) demon; magic; to charm#3817. 广场[guang3 chang3] (广#194 场#503) public square; plaza#3818. 不安[bu4 an1] (不#23 安#407) unpeaceful; unstable; uneasy; disturbed; restless; worried#3819. 城里(城#1164 里#158) #3820. 对劲[dui4 jin4] (对#113 劲#1830) suitable; to one's liking; to get along together#3821. 理论[li3 lun4] (理#658 论#904) theory; CL:個|个[ge4]; to argue; to take notice of#3822. 烫[tang4] (汤#1351 火#187) to scald; to burn (by scalding); to blanch (cooking); to heat (sth) up in hot water; to perm; to iron; scalding hot#3823. 一时[yi1 shi2] (一#1 时#224) a period of time; a while; for a short while; temporary; momentary; at the same time#3824. 义务[yi4 wu4] (义#659 务#958) duty; obligation (CL:項|项[xiang4]); volunteer (work etc)#3825. 一向[yi1 xiang4] (一#1 向#484) a period of time in the recent past; (indicating a period of time up to the present) all along; the whole time#3826. 自动[zi4 dong4] (自#142 动#444) automatic; voluntarily#3827. 船上(船#1183 上#56) #3828. 同学[tong2 xue2] (同#482 学#542) to study at the same school; fellow student; classmate; CL:位[wei4],個|个[ge4]#3829. 并非[bing4 fei1] (并#431 非#387) really isn't#3830. 弗兰克[fu2 lan2 ke4] (弗#852 兰#856 克#553) Frank (name)#3831. 指控[zhi3 kong4] (指#779 控#1261) accusation; a (criminal) charge; to accuse#3832. 星球[xing1 qiu2] (星#719 球#799) celestial body (e.g. planet, satellite etc); heavenly body#3833. 慌[huang1] (忄#140 荒#1339) to get panicky; to lose one's head; (coll.) (after 得[de2]) unbearably; terribly#3834. 即将[ji2 jiang1] (即#1309 将#548) about to; on the point of; soon#3835. 裙子[qun2 zi5] (裙#3146 子#47) skirt; CL:條|条[tiao2]#3836. 廊[lang2] (广#194 郎#2037) corridor; veranda; porch#3837. 兔子[tu4 zi5] (兔#2515 子#47) hare; rabbit; CL:隻|只[zhi1]#3838. 呜[wu1] (口#3 乌#1845) (onom.) for humming or whimpering#3839. 一共[yi1 gong4] (一#1 共#617) in total; altogether#3840. 鹿[lu4] (广#194 コ#293 丨#11 丨#11 比#261) deer#3841. 教训[jiao4 xun5] (教#872 训#1704) to provide guidance; to lecture sb; to upbraid; a talking-to; a bitter lesson; CL:番[fan1],頓|顿[dun4]#3842. 毯[tan3] (毛#676 炎#603) blanket; rug#3843. 拍摄[pai1 she4] (拍#939 摄#2359) to take (a picture); to shoot (a film)#3844. 关掉[guan1 diao4] (关#329 掉#708) to switch off; to shut off#3845. 吃惊[chi1 jing1] (吃#401 惊#1446) to be startled; to be shocked; to be amazed#3846. 效果[xiao4 guo3] (效#1771 果#332) result; effect; efficacy; (theater) sound or visual effects#3847. 肝[gan1] (月#40 干#162) liver (CL:葉|叶[ye4]); (slang) to put in long hours, typically late into the night, playing (a video game); (of a video game) involving a lot of repetition in order to progress; grindy#3848. 误会[wu4 hui4] (误#1696 会#76) to misunderstand; to mistake; misunderstanding; CL:個|个[ge4]#3849. 移动[yi2 dong4] (移#1923 动#444) to move; movement; migration; mobile; portable#3850. 牙齿[ya2 chi3] (牙#474 齿#2302) tooth; dental; CL:顆|颗[ke1]#3851. 宇宙[yu3 zhou4] (宇#2772 宙#3642) universe; cosmos; space#3852. 炉[lu2] (火#187 户#358) stove; furnace; variant of 爐|炉[lu2]#3853. 上场[shang4 chang3] (上#56 场#503) on stage; to go on stage; to take the field#3854. 大会[da4 hui4] (大#35 会#76) general assembly; general meeting; convention; CL:個|个[ge4],屆|届[jie4]#3855. 部队[bu4 dui4] (部#668 队#529) army; armed forces; troops; force; unit; CL:個|个[ge4]#3856. 击中[ji1 zhong4] (击#787 中#174) to hit (a target etc); to strike#3857. 役[yi4] (彳#75 殳#95) forced labor; corvée; obligatory task; military service; to use as servant; to enserf; servant (old); war; campaign; battle#3858. 美金[mei3 jin1] (美#541 金#871) US dollar; USD#3859. 昂[ang2] (日#15 卬#1035) to lift; to raise; to raise one's head; high; high spirits; soaring; expensive#3860. 薄[bo2] (艹#150 溥#3565) surname Bo; thin; cold in manner; indifferent; weak; light; infertile; meager; slight; weak; ungenerous or unkind; frivolous; to despise; to belittle; to look down on; to approach or near; see 薄荷[bo4 he5]#3861. 侄[zhi2] (亻#7 至#108) variant of 姪|侄[zhi2]; variant of 姪|侄[zhi2]; brother's son; nephew#3862. 速度[su4 du4] (速#1815 度#927) speed; rate; velocity; (music) tempo; CL:個|个[ge4]#3863. 不论[bu4 lun4] (不#23 论#904) whatever; no matter what (who, how etc); regardless of; not to discuss#3864. 体内[ti3 nei4] (体#683 内#414) within the body; in vivo (vs in vitro); internal to#3865. 一路[yi1 lu4] (一#1 路#791) the whole journey; all the way; going the same way; going in the same direction; of the same kind#3866. 勇敢[yong3 gan3] (勇#2077 敢#1058) brave; courageous#3867. 越来越[yue4 lai2 yue4] (越#1267 来#87 越#1267) more and more#3868. 媒体[mei2 ti3] (媒#3230 体#683) media, esp. news media#3869. 融[rong2] (鬲#2292 虫#410) to melt; to thaw; to blend; to merge; to be in harmony; old variant of 融[rong2]#3870. 举行[ju3 xing2] (举#1456 行#316) to hold (a meeting, ceremony etc)#3871. 损失[sun3 shi1] (损#2524 失#618) loss; damage; CL:個|个[ge4]; to lose; to suffer damage#3872. 陪审团[pei2 shen3 tuan2] (陪#1522 审#1689 团#1210) jury#3873. 所谓[suo3 wei4] (所#309 谓#2796) what is meant by the expression ...; what is referred to as ...; (derog.) so-called#3874. 中士(中#174 士#205) #3875. 堪[kan1] (土#13 甚#1322) (bound form) may; can; (bound form) to endure; to bear; (in 堪輿|堪舆[kan1 yu2]) heaven (contrasted with earth 輿|舆[yu2])#3876. 赫[he4] (赤#2133 赤#2133) surname He; awe-inspiring; abbr. for 赫茲|赫兹[he4 zi1], hertz (Hz)#3877. 眉[mei2] (𠃜#775 目#72) eyebrow; upper margin#3878. 大师[da4 shi1] (大#35 师#750) great master; master#3879. 承诺[cheng2 nuo4] (承#1357 诺#1700) to promise; to undertake to do something; commitment#3880. 合法[he2 fa3] (合#153 法#443) lawful; legitimate; legal#3881. 狄[di2] (犭#312 火#187) surname Di; generic name for northern ethnic minorities during the Qin and Han Dynasties (221 BC-220 AD); low ranking public official (old)#3882. 间谍[jian4 die2] (间#384 谍#3780) spy#3883. 纠[jiu1] (纟#91 丩#288) old variant of 糾|纠[jiu1]; to gather together; to investigate; to entangle; to correct#3884. 午餐[wu3 can1] (午#383 餐#1536) lunch; luncheon; CL:份[fen4],頓|顿[dun4],次[ci4]#3885. 鉴[jian4] (〢#588 𠂉#82 丶#4 金#871) variant of 鑑|鉴[jian4]; old variant of 鑒|鉴[jian4]; bronze mirror (used in ancient times); to reflect; to mirror; sth that serves as a warning or a lesson; to examine; to scrutinize; variant of 鑑|鉴[jian4]#3886. 堵[du3] (土#13 者#161) to block up (a road, pipe etc); to stop up (a hole); (fig.) (of a person) choked up with anxiety or stress; wall (literary); (classifier for walls)#3887. 独立[du2 li4] (独#1386 立#122) independent; independence; to stand alone#3888. 惩[cheng2] (征#2190 心#61) to punish; to reprimand; to warn#3889. 不可思议[bu4 ke3 si1 yi4] (不#23 可#84 思#784 议#974) (idiom) inconceivable; unimaginable; unfathomable#3890. 幻想[huan4 xiang3] (幻#1992 想#178) to fantasize; to imagine; an illusion; a fantasy#3891. 药物[yao4 wu4] (药#1077 物#686) medicaments; pharmaceuticals; medication; medicine; drug#3892. 可笑[ke3 xiao4] (可#84 笑#809) funny; ridiculous#3893. 反抗[fan3 kang4] (反#481 抗#1829) to resist; to rebel#3894. 古怪[gu3 guai4] (古#166 怪#844) strange; weird; eccentric; bizarre#3895. 财产[cai2 chan3] (财#2158 产#954) property; assets; estate; CL:筆|笔[bi3]#3896. 恼[nao3] (忄#140 㐫#502) to get angry#3897. 歌曲[ge1 qu3] (歌#1136 曲#955) song#3898. 心灵[xin1 ling2] (心#61 灵#1288) bright; smart; quick-witted; heart; thoughts; spirit#3899. 燃[ran2] (火#187 然#409) to burn; to ignite; to light; fig. to spark off (hopes); to start (debate); to raise (hopes)#3900. 玻[bo1] (王#97 皮#289) glass#3901. 了不起[liao3 bu5 qi3] (了#9 不#23 起#285) amazing; terrific; extraordinary#3902. 沟[gou1] (氵#60 勾#1313) ditch; gutter; groove; gully; ravine; CL:道[dao4]#3903. 宅[zhai2] (宀#66 乇#921) residence; (coll.) to stay in at home; to hang around at home#3904. 口袋[kou3 dai4] (口#3 袋#1747) pocket; bag; sack#3905. 踩[cai3] (𧾷#262 采#1110) variant of 踩[cai3]; to step on; to tread; to stamp; to press a pedal; to pedal (a bike); (online) to downvote#3906. 刀子[dao1 zi5] (刀#59 子#47) knife; CL:把[ba3]#3907. 战士[zhan4 shi4] (战#893 士#205) fighter; soldier; warrior; CL:個|个[ge4]#3908. 毛病[mao2 bing4] (毛#676 病#911) fault; defect; shortcomings; ailment; CL:個|个[ge4]#3909. 饱[bao3] (饣#635 包#422) to eat till full; satisfied#3910. 重复[chong2 fu4] (重#566 复#1080) to repeat; to duplicate; CL:個|个[ge4]; variant of 重複|重复[chong2 fu4]#3911. 忧[you1] (忄#140 尤#130) to worry; to concern oneself with; worried; anxiety; sorrow; (literary) to observe mourning#3912. 印度[yin4 du4] (印#1320 度#927) India#3913. 活力[huo2 li4] (活#546 力#78) energy; vitality; vigor; vital force#3914. 狮[shi1] (犭#312 师#750) (bound form) lion#3915. 想念[xiang3 nian4] (想#178 念#1430) to miss; to remember with longing; to long to see again#3916. 耐心[nai4 xin1] (耐#2769 心#61) to be patient; patience#3917. 拐[guai3] (扌#52 另#203) to turn (a corner etc); to kidnap; to swindle; to misappropriate; seven (used as a substitute for 七[qi1]); variant of 枴|拐[guai3]; cane; walking stick; crutch; old man's staff; variant of 枴|拐[guai3]#3918. 箭[jian4] (竹#191 前#346) arrow; CL:支[zhi1]#3919. 玛丽[ma3 li4] (玛#1714 丽#1253) Mary or Marie (name); Mali#3920. 能否[neng2 fou3] (能#155 否#1047) whether or not; can it or can't it; is it possible?#3921. 英语[ying1 yu3] (英#1067 语#1226) English (language)#3922. 滴[di1] (氵#60 啇#2953) a drop; to drip#3923. 古巴[gu3 ba1] (古#166 巴#74) Cuba#3924. 蓝色[lan2 se4] (蓝#2237 色#594) blue (color)#3925. 承受[cheng2 shou4] (承#1357 受#585) to bear; to support; to inherit#3926. 餐厅[can1 ting1] (餐#1536 厅#1720) dining hall; dining room; restaurant; CL:間|间[jian1],家[jia1]#3927. 地板[di4 ban3] (地#317 板#1302) floor#3928. 逃跑[tao2 pao3] (逃#1342 跑#926) to flee from sth; to run away; to escape#3929. 血液[xue4 ye4] (血#816 液#2522) blood; (fig.) lifeblood#3930. 绅[shen1] (纟#91 申#660) member of gentry#3931. 轰[hong1] (车#180 双#780) explosion; bang; boom; rumble; to attack; to shoo away; to expel#3932. 发射[fa1 she4] (发#302 射#371) to shoot (a projectile); to fire (a rocket); to launch; to emit (a particle); to discharge; emanation; emission#3933. 天赋[tian1 fu4] (天#124 赋#3405) gift; innate skill#3934. 的话[de5 hua4] (的#22 话#296) if (coming after a conditional clause)#3935. 抑[yi4] (扌#52 卬#1035) to restrain; to restrict; to keep down; or#3936. 感激[gan3 ji1] (感#578 激#1639) to be grateful; to appreciate; thankful#3937. 遵[zun1] (辶#33 尊#1797) to observe; to obey; to follow; to comply with#3938. 第五[di4 wu3] (第#539 五#536) fifth#3939. 朔[shuo4] (屰#3065 月#40) beginning; first day of lunar month; north#3940. 腰[yao1] (月#40 要#103) the waist and lower back; (bound form) kidney of an animal (as food); the waist of trousers or a skirt; (metonym) money pouch; pocket; (bound form) the middle section of an upright object (mountain, bottle etc)#3941. 乡村[xiang1 cun1] (乡#1964 村#1971) rustic; village; countryside#3942. 稣[su1] (鱼#873 禾#107) archaic variant of 蘇|苏[su1]; to revive#3943. 沓[ta4] (水#457 日#15) surname Ta; classifier for sheets of papers etc: pile, pad; Taiwan pr. [ta4]; again and again; many#3944. 臂[bi4] (辟#1752 月#40) arm#3945. 遇见[yu4 jian4] (遇#1647 见#123) to meet#3946. 闯入[chuang3 ru4] (闯#2295 入#505) to intrude; to charge in; to gate-crash#3947. 类似[lei4 si4] (类#1048 似#1398) similar; analogous#3948. 决不[jue2 bu4] (决#792 不#23) not at all; simply (can) not#3949. 誉[yu4] (兴#677 言#354) to praise; to acclaim; reputation#3950. 语言[yu3 yan2] (语#1226 言#354) language; CL:門|门[men2],種|种[zhong3]#3951. 实验室[shi2 yan4 shi4] (实#530 验#1528 室#932) laboratory; CL:間|间[jian1]#3952. 罩[zhao4] (罒#396 卓#681) to cover; to spread over; a cover; a shade; a hood; bamboo fish trap; bamboo chicken coop; (Tw) (coll.) to protect; to have sb's back; (Tw) (coll.) awesome; incredible; (Tw) (coll.) (often as 罩得住[zhao4de2zhu4]) to have things under control; to be able to handle it#3953. 达成[da2 cheng2] (达#931 成#335) to reach (an agreement); to accomplish#3954. 追踪[zhui1 zong1] (追#1418 踪#1814) to track; to trace; to follow up; (HK, Tw) to follow (on social media)#3955. 收入[shou1 ru4] (收#764 入#505) to take in; income; revenue; CL:筆|笔[bi3],個|个[ge4]#3956. 耶稣[ye1 su1] (耶#1336 稣#3942) Jesus#3957. 组合[zu3 he2] (组#1010 合#153) to assemble; to combine; to compose; combination; association; set; compilation; (math.) combinatorial#3958. 辈子[bei4 zi5] (辈#2388 子#47) all one's life; lifetime#3959. 抖[dou3] (扌#52 斗#709) to tremble; to shake out; to reveal; to make it in the world#3960. 骑士[qi2 shi4] (骑#2049 士#205) knight; cavalier; (Tw) bike rider (scooter, bicycle etc)#3961. 礼拜[li3 bai4] (礼#993 拜#1018) to attend a religious service; (coll.) week; (coll.) Sunday#3962. 靠近[kao4 jin4] (靠#1402 近#950) to be close to; to approach; to draw near#3963. 解雇[jie3 gu4] (解#706 雇#1942) to fire; to sack; to dismiss; to terminate employment#3964. 仆人[pu2 ren2] (仆#2988 人#6) servant#3965. 愤怒[fen4 nu4] (愤#3470 怒#2554) angry; indignant; wrath; ire#3966. 袜[wa4] (衤#325 末#1431) socks; stockings; variant of 韤|袜[wa4]; variant of 襪|袜[wa4]#3967. 赶紧[gan3 jin3] (赶#1269 紧#1081) hurriedly; without delay#3968. 违反[wei2 fan3] (违#2576 反#481) to violate (a law)#3969. 挪[nuo2] (扌#52 那#79) to shift; to move#3970. 打扫[da3 sao3] (打#272 扫#2135) to clean; to sweep#3971. 内部[nei4 bu4] (内#414 部#668) interior; inside (part, section); internal#3972. 尼克[ni2 ke4] (尼#241 克#553) Nick (name)#3973. 少女[shao4 nu:3] (少#360 女#29) girl; young lady#3974. 当心[dang1 xin1] (当#299 心#61) to take care; to look out#3975. 本地[ben3 di4] (本#343 地#317) local; this locality#3976. 技巧[ji4 qiao3] (技#1674 巧#1447) skill; technique#3977. 仒[xx5] (人#6 ⺀#517) one of the characters used in kwukyel (phonetic "eo" or "sya"), an ancient Korean writing system#3978. 於[yu1] (方#198 仒#3977) surname Yu; Taiwan pr. [Yu2]; (literary) Oh!; Ah!#3979. 剧本[ju4 ben3] (剧#1523 本#343) script; screenplay; scenario; libretto#3980. 神秘[shen2 mi4] (神#880 秘#1626) mysterious; mystery#3981. 愚蠢[yu2 chun3] (愚#3457 蠢#2153) silly; stupid#3982. 证实[zheng4 shi2] (证#674 实#530) to confirm (sth to be true); to verify#3983. 退后[tui4 hou4] (退#1084 后#270) to stand back; to go back (in time); to yield; to make concessions#3984. 友好[you3 hao3] (友#298 好#69) Youhao district of Yichun city 伊春市[Yi1 chun1 shi4], Heilongjiang; friendly; amicable; close friend#3985. 挨[ai1] (扌#52 矣#1684) in order; in sequence; close to; adjacent to; to suffer; to endure; to pull through (hard times); to delay; to stall; to play for time; to dawdle#3986. 妇女[fu4 nu:3] (妇#1785 女#29) woman#3987. 查理(查#680 理#658) #3988. 扩[kuo4] (扌#52 广#194) to enlarge#3989. 校长[xiao4 zhang3] (校#1118 长#308) (college, university) president; headmaster; CL:個|个[ge4],位[wei4],名[ming2]#3990. 公正[gong1 zheng4] (公#419 正#251) just; fair; equitable#3991. 吓坏[xia4 huai4] (吓#1147 坏#770) to be terrified; to terrify sb#3992. 陷入[xian4 ru4] (陷#2369 入#505) to sink into; to get caught up in; to land in (a predicament)#3993. 映[ying4] (日#15 央#965) to reflect (light); to shine; to project (an image onto a screen etc); old variant of 映[ying4]#3994. 巴黎[ba1 li2] (巴#74 黎#3327) Paris, capital of France#3995. 钱包[qian2 bao1] (钱#537 包#422) purse; wallet#3996. 发表[fa1 biao3] (发#302 表#652) to issue; to publish#3997. 回报[hui2 bao4] (回#260 报#808) (in) return; reciprocation; payback; retaliation; to report back; to reciprocate#3998. 以上[yi3 shang4] (以#172 上#56) that level or higher; that amount or more; the above-mentioned; (used to indicate that one has completed one's remarks) That is all.#3999. 伞[san3] (人#6 丷#31 十#10) umbrella; parasol; CL:把[ba3]; damask silk; variant of 傘|伞[san3]#4000. 粉丝[fen3 si1] (粉#2194 丝#1268) bean vermicelli; mung bean starch noodles; cellophane noodles; fan; enthusiast for sb or sth (loanword from "fans")#4001. 芙[fu2] (艹#150 夫#287) used in 芙蓉[fu2 rong2], lotus#4002. 浮[fu2] (氵#60 孚#2267) to float; superficial; floating; unstable; movable; provisional; temporary; transient; impetuous; hollow; inflated; to exceed; superfluous; excessive; surplus#4003. 逛[guang4] (辶#33 狂#1149) to stroll; to visit#4004. 好笑[hao3 xiao4] (好#69 笑#809) laughable; funny; ridiculous#4005. 煮[zhu3] (者#161 灬#134) variant of 煮[zhu3]; to cook; to boil#4006. 培[pei2] (土#13 咅#576) to bank up with earth; to cultivate (lit. or fig.); to train (people)#4007. 走运[zou3 yun4] (走#147 运#876) to have good luck; to be in luck#4008. 国际[guo2 ji4] (国#612 际#1618) international#4009. 假设[jia3 she4] (假#1150 设#1191) to suppose; to presume; to assume; supposing that ...; if; hypothesis; conjecture#4010. 基地[ji1 di4] (基#1224 地#317) al-Qaeda; base (of operations, industrial, military, research etc)#4011. 到来[dao4 lai2] (到#127 来#87) to arrive; arrival; advent#4012. 毛巾[mao2 jin1] (毛#676 巾#151) towel; CL:條|条[tiao2]#4013. 主角[zhu3 jue2] (主#295 角#390) leading role; lead; protagonist#4014. 录像[lu4 xiang4] (录#976 像#434) to videotape; to videorecord; video recording; CL:盤|盘[pan2]#4015. 小小[xiao3 xiao3] (小#16 小#16) very small; very few; very minor#4016. 保姆[bao3 mu3] (保#620 姆#1497) nanny; babysitter; housekeeper#4017. 提到[ti2 dao4] (提#867 到#127) to mention; to raise (a subject); to refer to#4018. 踏[ta1] (𧾷#262 沓#3943) see 踏實|踏实[ta1 shi5]; to tread; to stamp; to step on; to press a pedal; to investigate on the spot#4019. 赐[ci4] (贝#189 易#1005) (bound form) to confer; to bestow; to grant; (literary) gift; favor; Taiwan pr. [si4]#4020. 每年[mei3 nian2] (每#345 年#340) every year; each year; yearly#4021. 壁[bi4] (辟#1752 土#13) wall; rampart#4022. 情绪[qing2 xu4] (情#489 绪#2978) mood; state of mind; moodiness; CL:種|种[zhong3]#4023. 鞋子[xie2 zi5] (鞋#1986 子#47) shoe#4024. 抱怨[bao4 yuan4] (抱#830 怨#2892) to complain; to grumble; to harbor a complaint; to feel dissatisfied#4025. 网络[wang3 luo4] (网#1448 络#2857) Internet; network (computing, telecommunications, transport etc)#4026. 胡子[hu2 zi5] (胡#1374 子#47) beard; mustache or whiskers; facial hair; CL:撮[zuo3],根[gen1]; (coll.) bandit#4027. 表明[biao3 ming2] (表#652 明#411) to make clear; to make known; to state clearly; to indicate; known#4028. 几千[ji3 qian1] (几#141 千#185) several thousand#4029. 匆[cong1] (勿#491 丶#4) hurried; hasty; variant of 匆[cong1]; variant of 匆[cong1]#4030. 绅士[shen1 shi4] (绅#3930 士#205) gentleman#4031. 重点[chong2 dian3] (重#566 点#225) to recount (e.g. results of election); to re-evaluate; important point; main point; focus; key (project etc); to focus on; to put the emphasis on#4032. 最佳[zui4 jia1] (最#380 佳#2618) optimum; optimal; peak; best (athlete, movie etc)#4033. 黑暗[hei1 an4] (黑#475 暗#2022) dark; darkly; darkness#4034. 从不[cong2 bu4] (从#133 不#23) never#4035. 交流[jiao1 liu2] (交#499 流#1124) to exchange; exchange; communication; interaction; to have social contact (with sb)#4036. 大伙[da4 huo3] (大#35 伙#547) everybody; everyone; we all#4037. 受害人[shou4 hai4 ren2] (受#585 害#728 人#6) victim#4038. 大多数[da4 duo1 shu4] (大#35 多#204 数#1151) (great) majority#4039. 孩儿[hai2 r5] (孩#400 儿#50) child#4040. 金发[jin1 fa4] (金#871 发#302) blond; blonde; fair-haired#4041. 教育[jiao4 yu4] (教#872 育#1856) to educate; to teach; education#4042. 谎言[huang3 yan2] (谎#1662 言#354) lie#4043. 发型[fa4 xing2] (发#302 型#1412) hairstyle; coiffure; hairdo#4044. 栏[lan2] (木#38 兰#856) fence; railing; hurdle; column or box (of text or other data)#4045. 慢慢[man4 man4] (慢#1633 慢#1633) slowly; gradually#4046. 肌肉[ji1 rou4] (肌#3022 肉#1122) muscle; flesh#4047. 葬礼[zang4 li3] (葬#3106 礼#993) burial; funeral#4048. 观点[guan1 dian3] (观#1284 点#225) point of view; viewpoint; standpoint; CL:個|个[ge4]#4049. 老鼠[lao3 shu3] (老#372 鼠#2669) rat; mouse (CL:隻|只[zhi1])#4050. 虾[ha2] (虫#410 下#109) used in 蝦蟆|虾蟆[ha2ma5]; shrimp; prawn#4051. 海军[hai3 jun1] (海#581 军#757) navy#4052. 被捕[bei4 bu3] (被#356 捕#2011) to be arrested; under arrest#4053. 风险[feng1 xian3] (风#597 险#1166) risk; hazard#4054. 不会[bu4 hui4] (不#23 会#76) improbable; unlikely; will not (act, happen etc); not able; not having learned to do sth; (coll.) (Tw) don't mention it; not at all#4055. 位子[wei4 zi5] (位#524 子#47) place; seat#4056. 坑[keng1] (土#13 亢#1238) pit; hollow; depression; (mining) pit; shaft; tunnel; (literary) to bury alive; (coll.) to cheat; to scam; to screw over; variant of 坑[keng1]#4057. 慰[wei4] (尉#2195 心#61) to comfort; to console; to reassure#4058. 结局[jie2 ju2] (结#687 局#979) conclusion; ending#4059. 后果[hou4 guo3] (后#270 果#332) consequences; aftermath#4060. 白天[bai2 tian1] (白#20 天#124) daytime; during the day; day; CL:個|个[ge4]#4061. 仓库[cang1 ku4] (仓#520 库#1286) depot; storehouse; warehouse#4062. 竞争[jing4 zheng1] (竞#2586 争#724) to compete; competition#4063. 非法[fei1 fa3] (非#387 法#443) illegal#4064. 喽[lou2] (口#3 娄#821) (bound form) subordinates in a gang of bandits; (final particle equivalent to 了[le5]); (particle calling attention to, or mildly warning of, a situation)#4065. 绩[ji4] (纟#91 责#1103) to spin (hemp etc); merit; accomplishment; Taiwan pr. [ji1]#4066. 毙[bi4] (比#261 死#271) to die; to shoot dead; to reject; to fall forward; (suffix) to death; to collapse; variant of 斃|毙[bi4]; variant of 獙[bi4]#4067. 交往[jiao1 wang3] (交#499 往#964) to associate (with); to have contact (with); to hang out (with); to date; (interpersonal) relationship; association; contact#4068. 吉他[ji2 ta1] (吉#573 他#48) guitar (loanword); CL:把[ba3]#4069. 艰难[jian1 nan2] (艰#3367 难#653) difficult; hard; challenging#4070. 折磨[zhe2 mo2] (折#1332 磨#2858) to torment; to torture#4071. 商店[shang1 dian4] (商#1699 店#1052) store; shop; CL:家[jia1],個|个[ge4]#4072. 车祸[che1 huo4] (车#180 祸#3201) traffic accident; car crash; CL:起[qi3]#4073. 巧合[qiao3 he2] (巧#1447 合#153) coincidence; coincidental; to coincide#4074. 虐[nu:e4] (虍#995 匚#367 一#1) (bound form) brutal; oppressive; harsh; (literary) disaster; catastrophe#4075. 接触[jie1 chu4] (接#639 触#2588) to touch; to contact; access; in touch with#4076. 潮[chao2] (氵#60 朝#1733) tide; damp; moist; humid; fashionable; trendy; (coll.) inferior; substandard#4077. 山姆(山#334 姆#1497) #4078. 悉[xi1] (釆#1032 心#61) in all cases; know#4079. 囚犯[qiu2 fan4] (囚#3168 犯#743) prisoner; convict#4080. 旱[han4] (日#15 干#162) drought#4081. 电梯[dian4 ti1] (电#433 梯#2794) elevator; escalator; CL:臺|台[tai2],部[bu4]#4082. 夜晚[ye4 wan3] (夜#1042 晚#528) night; CL:個|个[ge4]#4083. 冒犯[mao4 fan4] (冒#1362 犯#743) to offend#4084. 呼叫[hu1 jiao4] (呼#1355 叫#328) to shout; to yell; (telecommunications) to call#4085. 投资[tou2 zi1] (投#1068 资#1602) investment; to invest#4086. 死刑[si3 xing2] (死#271 刑#1170) death penalty; capital punishment#4087. 对象[dui4 xiang4] (对#113 象#374) target; object; partner; boyfriend; girlfriend; CL:個|个[ge4]#4088. 渡[du4] (氵#60 度#927) to cross; to pass through; to ferry#4089. 桩[zhuang1] (木#38 庄#1359) stump; stake; pile; classifier for events, cases, transactions, affairs etc#4090. 下班[xia4 ban1] (下#109 班#1190) to finish work; to get off work; next service (train, bus, etc)#4091. 犹太[you2 tai4] (犹#2225 太#173) the Jews; Judea#4092. 魅力[mei4 li4] (魅#3816 力#78) charm; fascination; glamor; charisma#4093. 无比[wu2 bi3] (无#424 比#261) incomparable; matchless#4094. 上升[shang4 sheng1] (上#56 升#1487) to rise; to go up; to ascend#4095. 唱片[chang4 pian4] (唱#1116 片#572) gramophone record; LP; music CD; musical album; CL:張|张[zhang1]#4096. 後(彳#75 幺#363 夂#165) #4097. 支付[zhi1 fu4] (支#634 付#654) to pay (money)#4098. 诡[gui3] (讠#36 危#1205) (bound form) sly; crafty; (literary) weird; bizarre; (literary) contradictory; inconsistent#4099. 唱歌[chang4 ge1] (唱#1116 歌#1136) to sing a song#4100. 天上[tian1 shang4] (天#124 上#56) the sky; the heavens#4101. 满足[man3 zu2] (满#1278 足#1185) to satisfy; to meet (the needs of); satisfied; content#4102. 矮[ai3] (矢#175 委#1677) (of a person) short; (of a wall etc) low; (of rank) inferior (to); lower (than)#4103. 双手[shuang1 shou3] (双#780 手#211) both hands#4104. 具体[ju4 ti3] (具#210 体#683) concrete; specific; detailed#4105. 节日[jie2 ri4] (节#766 日#15) holiday; festival; CL:個|个[ge4]#4106. 评价[ping2 jia4] (评#1555 价#1259) to evaluate; to assess#4107. 巴士[ba1 shi4] (巴#74 士#205) bus (loanword); motor coach#4108. 惩罚[cheng2 fa2] (惩#3888 罚#2587) penalty; punishment; to punish#4109. 诅[zu3] (讠#36 且#136) curse; swear (oath)#4110. 欣赏[xin1 shang3] (欣#3178 赏#2962) to appreciate; to enjoy; to admire#4111. 留下来(留#717 下#109 来#87) #4112. 距离[ju4 li2] (距#3451 离#605) distance; CL:個|个[ge4]; to be apart from#4113. 嵒(品#858 山#334) #4114. 癌[ai2] (疒#389 嵒#4113) cancer; (esp.) carcinoma#4115. 危机[wei1 ji1] (危#1205 机#471) crisis; CL:個|个[ge4]#4116. 大小[da4 xiao3] (大#35 小#16) large and small; size; adults and children; consideration of seniority; at any rate#4117. 末日[mo4 ri4] (末#1431 日#15) Judgment Day (in Christian eschatology); last day; end; final days; doomsday#4118. 肾[shen4] (〢#588 又#34 月#40) kidney#4119. 蜂[feng1] (虫#410 夆#1869) variant of 蜂[feng1]; bee; wasp; old variant of 蜂[feng1]#4120. 尴[gan1] (尢#112 监#1037) used in 尷尬|尴尬[gan1ga4]#4121. 周五[zhou1 wu3] (周#570 五#536) Friday#4122. 厓[ya2] (厂#219 圭#519) old form of 崖 (cliff) and 涯 (bank)#4123. 豁[hua2] (害#728 谷#888) to play Chinese finger-guessing game; opening; stake all; sacrifice; crack; slit; open; clear; liberal-minded; generous; to exempt; to remit#4124. 请问[qing3 wen4] (请#512 问#369) Excuse me, may I ask...?#4125. 尬[ga4] (尢#112 介#609) (bound form) embarrassing; awkward#4126. 尴尬[gan1 ga4] (尴#4120 尬#4125) awkward; embarrassed#4127. 成人[cheng2 ren2] (成#335 人#6) to reach adulthood; an adult#4128. 凌[ling2] (冫#81 夌#3699) surname Ling; to approach; to rise high; thick ice; to insult or maltreat#4129. 上课[shang4 ke4] (上#56 课#1661) to go to class; to attend class; to go to teach a class#4130. 罐[guan4] (缶#1090 雚#3217) can; jar; pot; variant of 罐[guan4]#4131. 浓[nong2] (氵#60 农#1977) concentrated; dense; strong (smell etc)#4132. 熬[ao1] (敖#2198 灬#134) to boil; to simmer; to cook on a slow fire; to extract by heating; to decoct; to endure#4133. 查出[cha2 chu1] (查#680 出#192) to find out; to discover#4134. 一阵[yi1 zhen4] (一#1 阵#2144) a burst; a fit; a peal; a spell (period of time)#4135. 贾[jia3] (覀#100 贝#189) surname Jia; merchant; to buy#4136. 头脑[tou2 nao3] (头#207 脑#1038) brains; mind; skull; (fig.) gist (of a matter); leader; boss#4137. 嫉[ji2] (女#29 疾#2859) jealousy; to be jealous of#4138. 勤[qin2] (堇#3290 力#78) diligent; industrious; hardworking; frequent; regular; constant; (bound form) work; duty; attendance; variant of 勤[qin2]; industrious; solicitous#4139. 诚实[cheng2 shi2] (诚#2252 实#530) honest#4140. 说法[shuo1 fa3] (说#125 法#443) to expound Buddhist teachings; way of speaking; wording; formulation; one's version (of events); statement; theory; hypothesis; interpretation#4141. 坐牢[zuo4 lao2] (坐#571 牢#1935) to be imprisoned#4142. 铺[pu4] (钅#227 甫#912) variant of 鋪|铺[pu4]; store; to spread; to display; to set up; (old) holder for door-knocker; plank bed; place to sleep; shop; store; (old) relay station#4143. 钩[gou1] (钅#227 勾#1313) variant of 鉤|钩[gou1]; to hook; to sew; to crochet; hook; check mark or tick; window catch#4144. 吸毒[xi1 du2] (吸#1076 毒#1163) to take drugs#4145. 为此[wei4 ci3] (为#104 此#221) for this reason; with regards to this; in this respect; in order to do this; to this end#4146. 讽[feng3] (讠#36 风#597) to satirize; to mock; to recite; Taiwan pr. [feng4]#4147. 生病[sheng1 bing4] (生#167 病#911) to fall ill#4148. 天空[tian1 kong1] (天#124 空#716) sky#4149. 观察[guan1 cha2] (观#1284 察#1265) to observe; to watch; to survey#4150. 山上(山#334 上#56) #4151. 威尔(威#1326 尔#24) #4152. 上台[shang4 tai2] (上#56 台#378) to rise to power (in politics); to go on stage (in the theater)#4153. 瘾[yin3] (疒#389 隐#2115) addiction; craving#4154. 撕[si1] (扌#52 斯#641) to tear#4155. 诅咒[zu3 zhou4] (诅#4109 咒#2798) to curse#4156. 何时[he2 shi2] (何#555 时#224) when#4157. 圤(土#13 卜#88) #4158. 盐[yan2] (圤#4157 皿#456) salt; CL:粒[li4]#4159. 女郎[nu:3 lang2] (女#29 郎#2037) young woman; maiden; girl; CL:個|个[ge4],位[wei4]#4160. 目击[mu4 ji1] (目#72 击#787) to see with one's own eyes; to witness#4161. 说实话[shuo1 shi2 hua4] (说#125 实#530 话#296) to speak the truth; truth to tell; frankly#4162. 入侵[ru4 qin1] (入#505 侵#2533) to invade#4163. 字母[zi4 mu3] (字#690 母#283) letter (of the alphabet); CL:個|个[ge4]#4164. 舌头[she2 tou5] (舌#199 头#207) tongue; CL:個|个[ge4]; enemy soldier captured for the purpose of extracting information#4165. 圣经[sheng4 jing1] (圣#622 经#349) the Confucian classics; (Christianity, Judaism) the holy scriptures; CL:本[ben3],部[bu4]#4166. 进攻[jin4 gong1] (进#412 攻#1722) to attack; to assault; to go on the offensive; attack; assault; offense (sports)#4167. 假如[jia3 ru2] (假#1150 如#292) if#4168. 孙子[sun1 zi3] (孙#2184 子#47) Sun Tzu, also known as Sun Wu 孫武|孙武[Sun1 Wu3] (c. 500 BC, dates of birth and death uncertain), general, strategist and philosopher of the Spring and Autumn Period (700-475 BC), believed to be the author of the “Art of War” 孫子兵法|孙子兵法[Sun1 zi3 Bing1 fa3], one of the Seven Military Classics of ancient China 武經七書|武经七书[Wu3 jing1 Qi1 shu1]; grandson; son's son#4169. 注射[zhu4 she4] (注#1070 射#371) injection; to inject#4170. 辛苦[xin1 ku3] (辛#854 苦#1524) exhausting; hard; tough; arduous; to work hard; to go to a lot of trouble; hardship(s)#4171. 午夜[wu3 ye4] (午#383 夜#1042) midnight#4172. 淡[dan4] (氵#60 炎#603) insipid; diluted; weak; mild; light in color; tasteless; indifferent; (variant of 氮[dan4]) nitrogen#4173. 比利[bi3 li4] (比#261 利#633) (HK, Sg, Tw) Pelé (1940-2022), Edson Arantes Do Nascimento, Brazilian football star#4174. 垮[kua3] (土#13 夸#2168) to collapse (lit. or fig.)#4175. 指望[zhi3 wang4] (指#779 望#691) to count on; to hope for; prospect; hope#4176. 没事儿[mei2 shi4 r5] (没#105 事#182 儿#50) to have spare time; free from work; it's not important; it's nothing; never mind#4177. 汤米(汤#1351 米#240) #4178. 交换[jiao1 huan4] (交#499 换#1105) to exchange; to swap; to switch (telecom); commutative (math); to commute#4179. 妖[yao1] (女#29 夭#595) goblin; witch; devil; bewitching; enchanting; monster; phantom; demon#4180. 对了[dui4 le5] (对#113 了#9) Correct!; Oh, that's right, ... (when one suddenly remembers sth one wanted to mention); Oh, by the way, ...#4181. 大哥[da4 ge1] (大#35 哥#722) eldest brother; big brother (polite address for a man of about the same age as oneself); gang leader; boss#4182. 早晨[zao3 chen2] (早#350 晨#3021) early morning; CL:個|个[ge4]; also pr. [zao3chen5]#4183. 确信[que4 xin4] (确#739 信#494) to be convinced; to be sure; to firmly believe; to be positive that; definite news#4184. 三明治[san1 ming2 zhi4] (三#171 明#411 治#1137) (loanword) sandwich#4185. 作出[zuo4 chu1] (作#359 出#192) to put out; to come up with; to make (a choice, decision, proposal, response, comment etc); to issue (a permit, statement, explanation, apology, reassurance to the public etc); to draw (conclusion); to deliver (speech, judgment); to devise (explanation); to extract#4186. 氛[fen1] (气#501 分#306) miasma; vapor#4187. 滚开[gun3 kai1] (滚#1560 开#157) (of a liquid) to boil; boiling hot; (rude) get out!; go away!; fuck off!#4188. 专心[zhuan1 xin1] (专#560 心#61) to focus one's attention; to concentrate on (doing sth)#4189. 盲[mang2] (亡#330 目#72) blind#4190. 沿[yan2] (氵#60 几#141 口#3) along; to follow (a line, tradition etc); to carry on; to trim (a border with braid, tape etc); border; edge#4191. 廉[lian2] (广#194 兼#788) old variant of 廉[lian2]; old variant of 廉[lian2]; surname Lian; incorruptible; honest; inexpensive; to investigate (old); side wall of a traditional Chinese house (old)#4192. 拥抱[yong1 bao4] (拥#1667 抱#830) to embrace; to hug#4193. 浅[jian1] (氵#60 戋#418) sound of moving water; shallow; light (color)#4194. 男性[nan2 xing4] (男#559 性#713) the male sex; a male#4195. 擅长[shan4 chang2] (擅#3702 长#308) to be good at; to be expert in#4196. 实验[shi2 yan4] (实#530 验#1528) experiment; test; CL:個|个[ge4],次[ci4]; experimental; to experiment#4197. 中尉[zhong1 wei4] (中#174 尉#2195) lieutenant (navy); first lieutenant (army); subaltern#4198. 玉米[yu4 mi3] (玉#463 米#240) corn; maize; CL:粒[li4]#4199. 系列[xi4 lie4] (系#700 列#1051) series; set#4200. 淋[lin2] (氵#60 林#421) to sprinkle; to drip; to pour; to drench; to filter; to strain; to drain; gonorrhea; (TCM) strangury#4201. 台词[tai2 ci2] (台#378 词#1197) an actor's lines; dialogue; Taiwanese word#4202. 穿过[chuan1 guo4] (穿#794 过#148) to pass through#4203. 几百(几#141 百#943) #4204. 非洲[fei1 zhou1] (非#387 洲#2384) Africa; abbr. for 阿非利加洲[A1 fei1 li4 jia1 Zhou1]#4205. 环境[huan2 jing4] (环#1880 境#2283) environment; circumstances; surroundings; CL:個|个[ge4]; ambient#4206. 各种[ge4 zhong3] (各#355 种#527) every kind of; all kinds of; various#4207. 证词[zheng4 ci2] (证#674 词#1197) testimony#4208. 屠[tu2] (尸#99 者#161) surname Tu; to slaughter (animals for food); to massacre#4209. 捅[tong3] (扌#52 甬#627) to poke; to jab; to give (sb) a nudge; to prod; to disclose; to reveal#4210. 坚强[jian1 qiang2] (坚#1612 强#1028) staunch; strong#4211. 渐[jian1] (氵#60 斩#2211) to imbue; gradual; gradually#4212. 楼上[lou2 shang4] (楼#1358 上#56) upstairs; (Internet slang) previous poster in a forum thread#4213. 化妆[hua4 zhuang1] (化#488 妆#2749) to put on makeup#4214. 娱[yu2] (女#29 吴#1507) to amuse#4215. 有空[you3 kong4] (有#63 空#716) to have time (to do sth)#4216. 德国[de2 guo2] (德#1030 国#612) Germany#4217. 没法[mei2 fa3] (没#105 法#443) at a loss; unable to do anything about it; to have no choice#4218. 姿势[zi1 shi4] (姿#3385 势#1884) posture; position#4219. 没事[mei2 shi4] (没#105 事#182) it's not important; it's nothing; never mind; to have nothing to do; to be free; to be all right (out of danger or trouble)#4220. 猴子[hou2 zi5] (猴#3420 子#47) monkey; CL:隻|只[zhi1]#4221. 鸭[ya1] (甲#143 鸟#804) duck (CL:隻|只[zhi1]); (slang) male prostitute#4222. 空中[kong1 zhong1] (空#716 中#174) in the sky; in the air#4223. 脾[pi2] (月#40 卑#1296) spleen#4224. 袖[xiu4] (衤#325 由#368) sleeve; to tuck inside one's sleeve#4225. 面试[mian4 shi4] (面#428 试#675) to be interviewed (as a candidate); interview#4226. 情人[qing2 ren2] (情#489 人#6) lover; sweetheart#4227. 名义[ming2 yi4] (名#453 义#659) name; titular; nominal; in name; ostensible purpose#4228. 恶魔[e4 mo2] (恶#1206 魔#1972) demon; fiend#4229. 届[jie4] (尸#99 由#368) to arrive at (place or time); period; to become due; classifier for events, meetings, elections, sporting fixtures, years (of graduation)#4230. 一百万(一#1 百#943 万#466) #4231. 南方[nan2 fang1] (南#1410 方#198) south; southern direction; (in China) southern regions, often referring to areas south of the Yangtze River#4232. 小队(小#16 队#529) #4233. 采访[cai3 fang3] (采#1110 访#2098) to interview; to gather news; to hunt for and collect; to cover#4234. 旗[qi2] (方#198 𠂉#82 其#338) flag; variant of 旗[qi2]; banner; flag; (in Qing times) Manchu (cf. 八旗[Ba1 qi2]); administrative subdivision in inner Mongolia equivalent to 縣|县[xian4] county; CL:面[mian4]#4235. 所在[suo3 zai4] (所#309 在#55) place; location; (after a noun) place where it is located#4236. 开头[kai1 tou2] (开#157 头#207) beginning; to start#4237. 储[chu3] (亻#7 诸#3103) surname Chu; Taiwan pr. [Chu2]; (bound form) to store up; to keep in reserve; heir to the throne; Taiwan pr. [chu2]#4238. 盍[he2] (去#80 皿#456) variant of 盍[he2]; why not#4239. 军人[jun1 ren2] (军#757 人#6) serviceman; soldier; military personnel#4240. 刚好[gang1 hao3] (刚#495 好#69) just; exactly; to happen to be#4241. 作家[zuo4 jia1] (作#359 家#307) author; CL:個|个[ge4],位[wei4]#4242. 无所谓[wu2 suo3 wei4] (无#424 所#309 谓#2796) to be indifferent; not to matter; cannot be said to be#4243. 恤[xu4] (忄#140 血#816) variant of 恤[xu4]; anxiety; sympathy; to sympathize; to give relief; to compensate; anxiety; sympathy; to sympathize; to give relief; to compensate; variant of 恤[xu4]#4244. 主动[zhu3 dong4] (主#295 动#444) to take the initiative; to do sth of one's own accord; spontaneous; active; opposite: passive 被動|被动[bei4 dong4]; drive (of gears and shafts etc)#4245. 瘦[shou4] (疒#389 叟#1679) thin; to lose weight; (of clothing) tight; (of meat) lean; (of land) unproductive#4246. 产品[chan3 pin3] (产#954 品#858) goods; merchandise; product; CL:個|个[ge4]#4247. 男子[nan2 zi3] (男#559 子#47) a man; a male#4248. 签名[qian1 ming2] (签#1756 名#453) to sign (one's name with a pen etc); to autograph; signature#4249. 饶[rao2] (饣#635 尧#1119) surname Rao; rich; abundant; exuberant; to add for free; to throw in as bonus; to spare; to forgive; despite; although#4250. 混乱[hun4 luan4] (混#1123 乱#1173) confused; chaotic; disorderly#4251. 哀[ai1] (亠#26 口#3 𧘇#352) Ai (c. 2000 BC), sixth of legendary Flame Emperors 炎帝[Yan2 di4] descended from Shennong 神農|神农[Shen2 nong2] Farmer God, also known as Li 釐|厘[Li2]; (bound form) sorrow; grief; pity; (bound form) to grieve for; to pity; to lament; to condole#4252. 丛[cong2] (从#133 一#1) cluster; collection; collection of books; thicket#4253. 滋[zi1] (氵#60 兹#1712) to grow; to nourish; to increase; to cause; juice; taste; (dialect) to spout; to spurt#4254. 病毒[bing4 du2] (病#911 毒#1163) virus#4255. 冲动[chong1 dong4] (冲#1073 动#444) to have an urge; to be impetuous; impulse; urge#4256. 坏事[huai4 shi4] (坏#770 事#182) bad thing; misdeed; to ruin things#4257. 带子[dai4 zi5] (带#449 子#47) belt; band; ribbon; strap; girdle; (coll.) audio or video tape; Farrer's scallop (Chlamys farreri); comb pen shell (Atrina pectinata)#4258. 囷[qun1] (囗#86 禾#107) granary; Taiwan pr. [jun1]#4259. 菌[jun1] (艹#150 囷#4258) germ; bacteria; fungus; mold; Taiwan pr. [jun4]; mushroom#4260. 道理[dao4 li5] (道#250 理#658) reason; argument; sense; principle; basis; justification; CL:個|个[ge4]#4261. 驾驶[jia4 shi3] (驾#2287 驶#3020) to drive (vehicle); to pilot (ship, airplane etc); driver; pilot; captain#4262. 谊[yi4] (讠#36 宜#2718) friendship; also pr. [yi2]#4263. 实力[shi2 li4] (实#530 力#78) strength#4264. 老头[lao3 tou2] (老#372 头#207) old fellow; old man; father; husband#4265. 茄[jia1] (艹#150 加#408) phonetic character used in loanwords for the sound "jia", although 夾|夹[jia2] is more common; eggplant#4266. 攸[you1] (亻#7 丨#11 攵#114) distant, far; adverbial prefix#4267. 枕[zhen3] (木#38 冘#3359) (bound form) pillow; to rest one's head on (Taiwan pr. [zhen4])#4268. 周六[zhou1 liu4] (周#570 六#878) Saturday#4269. 大大[da4 da4] (大#35 大#35) greatly; enormously; (dialect) dad; uncle#4270. 赔[pei2] (贝#189 咅#576) to compensate for loss; to indemnify; to suffer a financial loss#4271. 对抗[dui4 kang4] (对#113 抗#1829) to withstand; to resist; to stand off; antagonism; confrontation#4272. 阿门[a1 men2] (阿#223 门#51) amen (loanword)#4273. 截[jie2] (𢦏#1220 隹#209) to cut off (a length); to stop; to intercept; section; chunk; length#4274. 标准[biao1 zhun3] (标#1308 准#731) standard; norm; criterion; (adjective) standard; good; correct; conforming to a standard#4275. 本身[ben3 shen1] (本#343 身#281) itself; in itself; per se#4276. 如今[ru2 jin1] (如#292 今#370) nowadays; now#4277. 外套[wai4 tao4] (外#568 套#1348) coat; jacket; CL:件[jian4]#4278. 不如[bu4 ru2] (不#23 如#292) not equal to; not as good as; inferior to; it would be better to#4279. 铐[kao4] (钅#227 考#953) shackles; fetters; manacle#4280. 报警[bao4 jing3] (报#808 警#908) to sound an alarm; to report sth to the police#4281. 电台[dian4 tai2] (电#433 台#378) transmitter-receiver; broadcasting station; radio station; CL:個|个[ge4],家[jia1]#4282. 全世界[quan2 shi4 jie4] (全#458 世#689 界#967) worldwide; entire world#4283. 充分[chong1 fen4] (充#909 分#306) ample; sufficient; adequate; full; fully; to the full#4284. 开会[kai1 hui4] (开#157 会#76) to hold a meeting; to attend a meeting#4285. 出事[chu1 shi4] (出#192 事#182) to have an accident; to meet with a mishap#4286. 窝[wo1] (穴#392 呙#2228) nest; pit or hollow on the human body; lair; den; place; to harbor or shelter; to hold in check; to bend; classifier for litters and broods#4287. 浑[hun2] (氵#60 军#757) muddy; turbid; brainless; foolish; (bound form) simple; natural; (bound form) whole; entire; all over#4288. 转移[zhuan3 yi2] (转#942 移#1923) to shift; to relocate; to transfer; (fig.) to shift (attention); to change (the subject etc); (medicine) to metastasize#4289. 拘[ju1] (扌#52 句#357) to capture; to restrain; to constrain; to adhere rigidly to; inflexible#4290. 倦[juan4] (亻#7 卷#1271) tired; old variant of 倦[juan4]#4291. 疏[shu1] (𤴔#4292 㐬#1050) variant of 疏[shu1]; surname Shu; to dredge; to clear away obstruction; thin; sparse; scanty; distant (relation); not close; to neglect; negligent; to present a memorial to the Emperor; commentary; annotation#4292. 𤴔#4293. 符合[fu2 he2] (符#2938 合#153) in accordance with; to agree with; to conform to; to meet (a requirement); (physics) coincidence#4294. 吵架[chao3 jia4] (吵#1635 架#1330) to quarrel; to have a row; quarrel; CL:頓|顿[dun4]#4295. 打断[da3 duan4] (打#272 断#1325) to interrupt; to break off; to break (a bone)#4296. 报复[bao4 fu4] (报#808 复#1080) to make reprisals; to retaliate; revenge; retaliation#4297. 袋子[dai4 zi5] (袋#1747 子#47) bag#4298. 警长(警#908 长#308) #4299. 愈[yu4] (俞#855 心#61) the more...(the more...); to recover; to heal; better; variant of 愈[yu4]; to heal#4300. 发动[fa1 dong4] (发#302 动#444) to start; to launch; to unleash; to mobilize; to arouse#4301. 耗[hao4] (耒#3333 毛#676) to waste; to spend; to consume; to squander; news; (coll.) to delay; to dilly-dally#4302. 将来[jiang1 lai2] (将#548 来#87) in the future; future; the future; CL:個|个[ge4]#4303. 发疯[fa1 feng1] (发#302 疯#886) to go mad; to go crazy; to lose one's mind#4304. 绳子[sheng2 zi5] (绳#3080 子#47) cord; string; rope; CL:條|条[tiao2]#4305. 边上(边#589 上#56) #4306. 及时[ji2 shi2] (及#465 时#224) timely; at the right time; promptly; without delay#4307. 黑色[hei1 se4] (黑#475 色#594) black#4308. 全身[quan2 shen1] (全#458 身#281) the whole body; (typography) em#4309. 出卖[chu1 mai4] (出#192 卖#606) to offer for sale; to sell; to sell out; to betray#4310. 早餐[zao3 can1] (早#350 餐#1536) breakfast; CL:份[fen4],頓|顿[dun4],次[ci4]#4311. 俊[jun4] (亻#7 夋#2421) old variant of 俊[jun4]; smart; eminent; handsome; talented; (dialectal pronunciation of 俊[jun4]); cool; neat; variant of 俊[jun4]#4312. 复仇[fu4 chou2] (复#1080 仇#2319) to avenge; vengeance#4313. 光临[guang1 lin2] (光#742 临#2012) (formal) to honor with one's presence; to attend#4314. 流血[liu2 xue4] (流#1124 血#816) to bleed; to shed blood#4315. 发挥[fa1 hui1] (发#302 挥#2180) to display; to exhibit; to bring out implicit or innate qualities; to express (a thought or moral); to develop (an idea); to elaborate (on a theme)#4316. 歪[wai1] (不#23 正#251) askew; at a crooked angle; devious; noxious; (coll.) to lie on one's side; to sprain (one's ankle) (Tw)#4317. 庞[pang2] (广#194 龙#1055) surname Pang; (bound form) huge; (bound form) numerous and disordered; (bound form) face#4318. 喘[chuan3] (口#3 耑#1379) to gasp; to pant; asthma#4319. 纪念[ji4 nian4] (纪#1433 念#1430) to commemorate; to honor the memory of; memento; keepsake; souvenir#4320. 交通[jiao1 tong1] (交#499 通#819) to be connected; traffic; transportation; communications; liaison#4321. 托尼[tuo1 ni2] (托#962 尼#241) (name) Tony#4322. 凯文[kai3 wen2] (凯#1610 文#65) Kevin (person name)#4323. 诈[zha4] (讠#36 乍#186) to cheat; to swindle; to pretend; to feign; to draw sb out; to try to extract information by deceit or bluff#4324. 腐[fu3] (府#1834 肉#1122) decay; rotten#4325. 剥[bao1] (录#976 刂#67) to peel; to skin; to shell; to shuck; to peel; to skin; to flay; to shuck#4326. 晋[jin4] (亚#732 日#15) surname Jin; the Jin Dynasties (265-420); Western Jin 西晉|西晋[Xi1 Jin4] (265-316), Eastern Jin 東晉|东晋[Dong1 Jin4] (317-420) and Later Jin Dynasty (936-946); short name for Shanxi province 山西[Shan1xi1]; to move forward; to promote; to advance#4327. 璃[li2] (王#97 离#605) (phonetic character used in transliteration of foreign names); Taiwan pr. [li4]; variant of 璃[li2]; colored glaze; glass; variant of 璃[li2]#4328. 嫉妒[ji2 du4] (嫉#4137 妒#3700) to be jealous of; to envy#4329. 讼[song4] (讠#36 公#419) litigation#4330. 在家[zai4 jia1] (在#55 家#307) to be at home; (at a workplace) to be in (as opposed to being away on official business 出差[chu1chai1]); (Buddhism etc) to remain a layman (as opposed to becoming a monk or a nun 出家[chu1jia1])#4331. 下巴[xia4 ba5] (下#109 巴#74) chin#4332. 啰[luo1] (口#3 罗#906) used in 囉唆|啰唆[luo1suo5] and 囉嗦|啰嗦[luo1suo5]; used in 囉唣|啰唣[luo2zao4]; (final exclamatory particle)#4333. 大量[da4 liang4] (大#35 量#1188) great amount; large quantity; bulk; numerous; generous; magnanimous#4334. 当初[dang1 chu1] (当#299 初#1947) at that time; originally#4335. 胖子[pang4 zi5] (胖#2300 子#47) fat person; fatty#4336. 斗争[dou4 zheng1] (斗#709 争#724) a struggle; fight; battle#4337. 龟[gui1] (𠂊#12 日#15 乚#18) tortoise; turtle; (coll.) cuckold; variant of 皸|皲[jun1]; used in 龜茲|龟兹[Qiu1 ci2]#4338. 卧室[wo4 shi4] (卧#3040 室#932) bedroom; CL:間|间[jian1]#4339. 远离[yuan3 li2] (远#718 离#605) to be far from; to keep away from#4340. 公车[gong1 che1] (公#419 车#180) bus; abbr. for 公共汽車|公共汽车[gong1 gong4 qi4 che1]; car belonging to an organization and used by its members (government car, police car, company car etc); abbr. for 公務用車|公务用车[gong1 wu4 yong4 che1]#4341. 艳[yan4] (丰#303 色#594) variant of 豔|艳[yan4]; variant of 豔|艳[yan4]; old variant of 豔|艳[yan4]; bright; fresh and attractive; glamorous; (bound form) amorous; romantic; (literary) to admire; to envy#4342. 领导[ling3 dao3] (领#1534 导#1482) lead; leading; to lead; leadership; leader; CL:位[wei4],個|个[ge4]#4343. 十几[shi2 ji3] (十#10 几#141) more than ten; a dozen or more#4344. 膀[bang3] (月#40 旁#1483) upper arm; wing; used in 吊膀子[diao4 bang4 zi5]; puffed (swollen); used in 膀胱[pang2guang1]; old variant of 膀[bang3]#4345. 贫[pin2] (分#306 贝#189) poor; inadequate; deficient; garrulous#4346. 倠(亻#7 隹#209) #4347. 墨西哥[mo4 xi1 ge1] (墨#3131 西#398 哥#722) Mexico#4348. 委员会[wei3 yuan2 hui4] (委#1677 员#586 会#76) committee; commission#4349. 能量[neng2 liang4] (能#155 量#1188) energy; capabilities#4350. 整天[zheng3 tian1] (整#1072 天#124) all day long; whole day#4351. 弘[hong2] (弓#237 厶#17) great; liberal#4352. 没用[mei2 yong4] (没#105 用#196) useless#4353. 公路[gong1 lu4] (公#419 路#791) highway; road; CL:條|条[tiao2]#4354. 饮料[yin3 liao4] (饮#2982 料#1539) drink; beverage#4355. 被告[bei4 gao4] (被#356 告#336) defendant#4356. 程度[cheng2 du4] (程#1428 度#927) degree; level; extent#4357. 采取[cai3 qu3] (采#1110 取#331) to adopt or carry out (measures, policies, course of action); to take#4358. 内衣[nei4 yi1] (内#414 衣#544) undergarment; underwear; CL:件[jian4]#4359. 巨人[ju4 ren2] (巨#1021 人#6) giant#4360. 马车[ma3 che1] (马#70 车#180) cart; chariot; carriage; buggy#4361. 感染[gan3 ran3] (感#578 染#2316) to infect; infection; (fig.) to influence#4362. 猜猜(猜#1178 猜#1178) #4363. 满意[man3 yi4] (满#1278 意#417) satisfied; pleased; to one's satisfaction#4364. 购物[gou4 wu4] (购#2747 物#686) shopping#4365. 一家[yi1 jia1] (一#1 家#307) the whole family; the same family; the family ... (when preceded by a family name); group#4366. 描述[miao2 shu4] (描#3031 述#2759) to describe; description#4367. 疤[ba1] (疒#389 巴#74) scar; scab#4368. 缓[huan3] (纟#91 爰#2003) slow; unhurried; sluggish; gradual; not tense; relaxed; to postpone; to defer; to stall; to stave off; to revive; to recuperate#4369. 对话[dui4 hua4] (对#113 话#296) to talk (with sb); dialogue; conversation#4370. 鬼魂[gui3 hun2] (鬼#774 魂#2329) ghost#4371. 圼(日#15 土#13) #4372. 一下子[yi1 xia4 zi5] (一#1 下#109 子#47) in a short while; all at once; all of a sudden#4373. 火灾[huo3 zai1] (火#187 灾#2817) serious fire (in a city or a forest etc)#4374. 送给[song4 gei3] (送#790 给#215) to send; to give as a present#4375. 㸒(爫#266 壬#441) #4376. 淫[yin2] (氵#60 㸒#4375) excess; excessive; wanton; lewd; lascivious; obscene; depraved; variant of 淫[yin2]#4377. 查查(查#680 查#680) #4378. 精力[jing1 li4] (精#1324 力#78) energy#4379. 退休[tui4 xiu1] (退#1084 休#1316) to retire (from the workforce); to go into retirement#4380. 按照[an4 zhao4] (按#1378 照#870) according to; in accordance with; in the light of; on the basis of#4381. 刺激[ci4 ji1] (刺#1719 激#1639) to provoke; to irritate; to upset; to stimulate; to excite; irritant#4382. 侣[lu:3] (亻#7 吕#1216) companion#4383. 制服[zhi4 fu2] (制#1020 服#769) to subdue; to check; to bring under control; (in former times) what one is allowed to wear depending on social status; uniform (army, party, school etc); livery (for company employees); CL:套[tao4]#4384. 亨利[heng1 li4] (亨#2088 利#633) Henry (name); henry (unit of inductance)#4385. 传奇[chuan2 qi2] (传#981 奇#734) legendary; fantasy saga; romance; short stories of the Tang and Song Dynasty#4386. 码头[ma3 tou2] (码#1274 头#207) dock; pier; wharf; CL:個|个[ge4]#4387. 电力[dian4 li4] (电#433 力#78) electrical power; electricity#4388. 私下[si1 xia4] (私#1273 下#109) in private#4389. 苹[ping2] (艹#150 平#705) (artemisia); duckweed; used in 蘋果|苹果[ping2guo3]#4390. 适应[shi4 ying4] (适#1553 应#506) to adapt; to fit; to suit#4391. 招呼[zhao1 hu5] (招#1625 呼#1355) to call out to; to greet; to say hello to; to inform; to take care of; to take care that one does not#4392. 小家伙(小#16 家#307 伙#547) #4393. 物品[wu4 pin3] (物#686 品#858) articles; goods#4394. 起码[qi3 ma3] (起#285 码#1274) at the minimum; at the very least#4395. 不妙[bu4 miao4] (不#23 妙#1860) (of a turn of events) not too encouraging; far from good; anything but reassuring#4396. 古老[gu3 lao3] (古#166 老#372) ancient; old; age-old#4397. 呕[ou3] (口#3 区#694) vomit#4398. 嫌犯[xian2 fan4] (嫌#2754 犯#743) criminal suspect#4399. 痕迹[hen2 ji4] (痕#2850 迹#1926) vestige; mark; trace#4400. 姬[ji1] (女#29 𦣞#3718) surname Ji; family name of the royal family of the Zhou Dynasty 周代[Zhou1dai4] (1046-256 BC); woman; concubine; female entertainer (archaic)#4401. 保密[bao3 mi4] (保#620 密#1168) to keep sth confidential; to maintain secrecy#4402. 十万[shi2 wan4] (十#10 万#466) hundred thousand#4403. 只好[zhi3 hao3] (只#164 好#69) to have no other option but to ...; to have to; to be forced to#4404. 信用卡[xin4 yong4 ka3] (信#494 用#196 卡#747) credit card#4405. 什么的[shen2 me5 de5] (什#89 么#58 的#22) and so on; and so forth; and what not#4406. 冲浪[chong1 lang4] (冲#1073 浪#1721) to surf; surfing#4407. 呦[you1] (口#3 幼#2823) Oh! (exclamation of dismay etc); used in 呦呦[you1you1]#4408. 衰[cui1] (亠#26 口#3 一#1 𧘇#352) variant of 縗|缞[cui1]; (bound form) to decay; to decline; to wane#4409. 悲伤[bei1 shang1] (悲#2390 伤#678) sad; sorrowful#4410. 恋爱[lian4 ai4] (恋#1739 爱#406) (romantic) love; CL:個|个[ge4],場|场[chang3]; in love; to have an affair#4411. 薪[xin1] (艹#150 新#656) (literary) firewood; fuel; (bound form) salary#4412. 小时候[xiao3 shi2 hou5] (小#16 时#224 候#522) in one's childhood#4413. 才华[cai2 hua2] (才#193 华#1512) talent; CL:份[fen4]#4414. 见识[jian4 shi5] (见#123 识#754) to gain first-hand knowledge of sth; to experience for oneself; knowledge; experience; insight#4415. 遥[yao2] (辶#33 䍃#2065) (bound form) distant; remote; far away#4416. 镜头[jing4 tou2] (镜#2238 头#207) camera lens; camera shot (in a movie etc); scene#4417. 谜[mei4] (讠#36 迷#1364) see 謎兒|谜儿[mei4 r5], riddle; riddle#4418. 兜[dou1] (② 白#20 コ#293 儿#50) pocket; bag; to wrap up or hold in a bag; to move in a circle; to canvas or solicit; to take responsibility for; to disclose in detail; combat armor (old); old variant of 兜[dou1]#4419. 牛肉[niu2 rou4] (牛#216 肉#1122) beef#4420. 畺[jiang1] (一#1 田#168 一#1 田#168 一#1) old variant of 疆[jiang1]#4421. 人体[ren2 ti3] (人#6 体#683) human body#4422. 清理[qing1 li3] (清#973 理#658) to clear up; to tidy up; to dispose of#4423. 闪电[shan3 dian4] (闪#1686 电#433) lightning; CL:道[dao4]#4424. 经纪人[jing1 ji4 ren2] (经#349 纪#1433 人#6) broker; middleman; agent; manager#4425. 平时[ping2 shi2] (平#705 时#224) ordinarily; in normal times; in peacetime#4426. 塑[su4] (朔#3939 土#13) to model (a figure) in clay; (bound form) plastic (i.e. the synthetic material)#4427. 飞船[fei1 chuan2] (飞#628 船#1183) spaceship; spacecraft; dirigible; airship#4428. 掌握[zhang3 wo4] (掌#1870 握#2505) to grasp (often fig.); to control; to seize (initiative, opportunity, destiny); to master; to know well; to understand sth well and know how to use it; fluency#4429. 幻觉[huan4 jue2] (幻#1992 觉#464) illusion; hallucination; figment of one's imagination#4430. 彼得[bi3 de2] (彼#2183 得#202) Peter (name)#4431. 搏[bo2] (扌#52 尃#1196) to fight; to combat; to seize; (of heart) to beat#4432. 每周[mei3 zhou1] (每#345 周#570) every week#4433. 高级[gao1 ji2] (高#454 级#1199) high level; high grade; advanced; high-ranking#4434. 最高[zui4 gao1] (最#380 高#454) tallest; highest; supreme (court etc)#4435. 助理[zhu4 li3] (助#988 理#658) assistant#4436. 欧洲[ou1 zhou1] (欧#2033 洲#2384) Europe (abbr. for 歐羅巴洲|欧罗巴洲[Ou1luo2ba1 Zhou1])#4437. 自豪[zi4 hao2] (自#142 豪#2846) proud (of one's achievements etc)#4438. 乡下[xiang1 xia5] (乡#1964 下#109) countryside; rural area; CL:個|个[ge4]#4439. 传说[chuan2 shuo1] (传#981 说#125) legend; folk tale; to repeat from mouth to mouth; they say that...#4440. 气氛[qi4 fen1] (气#501 氛#4186) atmosphere; mood#4441. 陌生人[mo4 sheng1 ren2] (陌#3494 生#167 人#6) stranger#4442. 杀人犯[sha1 ren2 fan4] (杀#366 人#6 犯#743) murderer; homicide#4443. 删[shan1] (册#2068 刂#67) to delete#4444. 活儿[huo2 r5] (活#546 儿#50) work; (lots of) things to do#4445. 射击[she4 ji1] (射#371 击#787) to shoot; to fire (a gun)#4446. 奴隶[nu2 li4] (奴#994 隶#1496) slave#4447. 赶上[gan3 shang4] (赶#1269 上#56) to keep up with; to catch up with; to overtake; to chance upon; in time for#4448. 跪[gui4] (𧾷#262 危#1205) to kneel#4449. 枪击[qiang1 ji1] (枪#650 击#787) to shoot with a gun; shooting incident#4450. 花园[hua1 yuan2] (花#727 园#1565) garden; CL:座[zuo4],個|个[ge4]#4451. 皮特(皮#289 特#623) #4452. 哈哈[ha1 ha1] (哈#956 哈#956) (onom.) laughing out loud#4453. 疌#4454. 双方[shuang1 fang1] (双#780 方#198) bilateral; both sides; both parties involved#4455. 机器人[ji1 qi4 ren2] (机#471 器#1232 人#6) robot; android#4456. 货车[huo4 che1] (货#1596 车#180) truck; van; freight wagon#4457. 相互[xiang1 hu4] (相#160 互#1968) each other; mutual#4458. 之上[zhi1 shang4] (之#256 上#56) above#4459. 腊[xi1] (月#40 昔#388) dried meat; also pr. [xi2]; old variant of 臘|腊[la4]; ancient practice of offering sacrifices to the gods in the 12th lunar month; the 12th lunar month; (bound form) (of meat, fish etc) cured in winter, esp. in the 12th lunar month#4460. 浪漫[lang4 man4] (浪#1721 漫#2721) romantic#4461. 咋[za3] (口#3 乍#186) dialectal equivalent of 怎麼|怎么[zen3me5]; Taiwan pr. [ze2]; (literary) to bite; to gnaw; used in 咋呼[zha1hu5]; Taiwan pr. [ze2]#4462. 卫生[wei4 sheng1] (卫#1140 生#167) hygienic; sanitary; hygiene; sanitation#4463. 处女[chu3 nu:3] (处#579 女#29) virgin; maiden; maiden (voyage etc); virgin (land); (a novelist's) first (work)#4464. 合伙人[he2 huo3 ren2] (合#153 伙#547 人#6) partner; associate#4465. 禁止[jin4 zhi3] (禁#2377 止#92) to prohibit; to forbid; to ban#4466. 措[cuo4] (扌#52 昔#388) to handle; to manage; to put in order; to arrange; to administer; to execute; to take action on; to plan#4467. 夫妻[fu1 qi1] (夫#287 妻#1156) husband and wife; married couple#4468. 成交[cheng2 jiao1] (成#335 交#499) to complete a contract; to reach a deal#4469. 标记[biao1 ji4] (标#1308 记#516) sign; mark; symbol; to mark up; (computing) token#4470. 治安[zhi4 an1] (治#1137 安#407) law and order; public security#4471. 外科[wai4 ke1] (外#568 科#1264) surgery (branch of medicine)#4472. 楼下[lou2 xia4] (楼#1358 下#109) downstairs#4473. 爵士[jue2 shi4] (爵#2750 士#205) knight; Sir; (loanword) jazz#4474. 大火[da4 huo3] (大#35 火#187) conflagration; large fire; CL:場|场[chang2]#4475. 经济[jing1 ji4] (经#349 济#3320) economy; economic#4476. 腾[teng2] (月#40 龹#989 马#70) (bound form) to gallop; to prance; (bound form) to soar; to hover; to make room; to clear out; to vacate; (verb suffix indicating repeated action)#4477. 添[tian1] (氵#60 忝#3266) to add; to increase; to replenish#4478. 自私[zi4 si1] (自#142 私#1273) selfish; selfishness#4479. 座位[zuo4 wei4] (座#1552 位#524) seat; CL:個|个[ge4]#4480. 收回[shou1 hui2] (收#764 回#260) to regain; to retake; to take back; to withdraw; to revoke#4481. 逃走[tao2 zou3] (逃#1342 走#147) to escape; to flee; to run away#4482. 上来[shang4 lai2] (上#56 来#87) to come up; to approach; (verb complement indicating success)#4483. 卦[gua4] (圭#519 卜#88) divinatory diagram; one of the eight divinatory trigrams of the Book of Changes 易經|易经[Yi4 jing1]; one of the sixty-four divinatory hexagrams of the Book of Changes 易經|易经[Yi4 jing1]#4484. 注定[zhu4 ding4] (注#1070 定#347) to foreordain; to be bound to; to be destined to; to be doomed to; inevitably#4485. 留给[liu2 gei3] (留#717 给#215) to set aside for#4486. 磁[ci2] (石#348 兹#1712) magnetic; magnetism; porcelain#4487. 㓞(丰#303 刀#59) #4488. 惠[hui4] (⑧ 心#61) surname Hui; (bound form) act of kindness (from a superior); (honorific prefix) kind (as in 惠顧|惠顾[hui4 gu4])#4489. 身材[shen1 cai2] (身#281 材#2551) stature; build (height and weight); figure#4490. 当事人[dang1 shi4 ren2] (当#299 事#182 人#6) persons involved or implicated; party (to an affair)#4491. 聊聊(聊#1504 聊#1504) #4492. 英寸[ying1 cun4] (英#1067 寸#42) inch (unit of length equal to 2.54 cm.)#4493. 讽刺[feng3 ci4] (讽#4146 刺#1719) to satirize; to mock; irony; satire; sarcasm#4494. 岗[gang1] (山#334 冈#476) variant of 岡|冈 [gang1]; (bound form) hillock; mound; sentry post; policeman's beat; (bound form) job; post#4495. 契[qi4] (㓞#4487 大#35) to carve; carved words; to agree; a contract; a deed#4496. 顾客[gu4 ke4] (顾#1608 客#992) customer; client; CL:位[wei4]#4497. 纱[sha1] (纟#91 少#360) cotton yarn; muslin#4498. 直升机[zhi2 sheng1 ji1] (直#403 升#1487 机#471) helicopter; CL:架[jia4]#4499. 合理[he2 li3] (合#153 理#658) rational; reasonable; sensible; fair#4500. 绿色[lu:4 se4] (绿#2646 色#594) green#4501. 娱乐[yu2 le4] (娱#4214 乐#671) to entertain; to amuse; entertainment; recreation; amusement; hobby; fun; joy#4502. 许可[xu3 ke3] (许#437 可#84) to allow; to permit#4503. 提要[ti2 yao4] (提#867 要#103) summary; abstract#4504. 加拿大[jia1 na2 da4] (加#408 拿#514 大#35) Canada#4505. 永不[yong3 bu4] (永#882 不#23) never; will never#4506. 坎[kan3] (土#13 欠#183) pit; threshold; one of the Eight Trigrams 八卦[ba1 gua4], symbolizing water; ☵; old variant of 坎[kan3]; pit; hole#4507. 沮[ju3] (氵#60 且#136) to destroy; to stop#4508. 稳定[wen3 ding4] (稳#2936 定#347) steady; stable; stability; to stabilize; to pacify#4509. 怪人[guai4 ren2] (怪#844 人#6) strange person; eccentric#4510. 卡片[ka3 pian4] (卡#747 片#572) card#4511. 沮丧[ju3 sang4] (沮#4507 丧#2784) dispirited; dejected; dismayed#4512. 后门[hou4 men2] (后#270 门#51) back door; back gate; (fig.) back-door influence; under-the-table dealings; anus; (computing) backdoor#4513. 疚[jiu4] (疒#389 久#533) chronic disease; guilt; remorse#4514. 网站[wang3 zhan4] (网#1448 站#897) website#4515. 手枪[shou3 qiang1] (手#211 枪#650) pistol; CL:把[ba3]#4516. 起飞[qi3 fei1] (起#285 飞#628) (of an aircraft or rocket) to take off; to lift off; (fig.) (of an enterprise etc) to start to develop rapidly#4517. 茨[ci2] (艹#150 次#284) Caltrop or puncture vine (Tribulus terrestris); to thatch (a roof)#4518. 宁愿[ning4 yuan4] (宁#2172 愿#1162) would rather ... (than ...)#4519. 协会[xie2 hui4] (协#1796 会#76) an association; a society; CL:個|个[ge4],家[jia1]#4520. 大众[da4 zhong4] (大#35 众#1283) Volkswagen (automobile manufacturer); the masses; the great bulk of the population; popular (of music, science etc)#4521. 棵[ke1] (木#38 果#332) classifier for trees, cabbages, plants etc#4522. 无论如何[wu2 lun4 ru2 he2] (无#424 论#904 如#292 何#555) (idiom) whatever the case; in any event; no matter what; by all possible means#4523. 霉[mei2] (雨#468 每#345) mold; mildew; to become moldy; variant of 霉[mei2]#4524. 相反[xiang1 fan3] (相#160 反#481) opposite; contrary#4525. 毁灭[hui3 mie4] (毁#1568 灭#1873) to perish; to ruin; to destroy#4526. 喉[hou2] (口#3 侯#2599) throat; larynx#4527. 进步[jin4 bu4] (进#412 步#890) progress; improvement; to improve; to progress; CL:個|个[ge4]#4528. 年龄[nian2 ling2] (年#340 龄#3744) (a person's) age; CL:把[ba3],個|个[ge4]#4529. 建筑[jian4 zhu4] (建#996 筑#3764) to construct; building; CL:個|个[ge4]#4530. 内裤[nei4 ku4] (内#414 裤#2058) underpants; panties; briefs#4531. 室友[shi4 you3] (室#932 友#298) roommate#4532. 殿下[dian4 xia4] (殿#3207 下#109) Your Majesty (honorific); His or Her Highness#4533. 曳[ye4] to drag; to pull; Taiwan pr. [yi4]#4534. 诉讼[su4 song4] (诉#430 讼#4329) lawsuit#4535. 多亏[duo1 kui1] (多#204 亏#1509) thanks to; luckily#4536. 设计师[she4 ji4 shi1] (设#1191 计#525 师#750) designer; architect#4537. 雾[wu4] (雨#468 务#958) fog; mist; CL:場|场[chang2],陣|阵[zhen4]#4538. 化学[hua4 xue2] (化#488 学#542) chemistry; chemical#4539. 葛[ge3] (艹#150 曷#763) surname Ge; kudzu (Pueraria lobata); hemp cloth#4540. 阶段[jie1 duan4] (阶#3223 段#1040) stage; section; phase; period; CL:個|个[ge4]#4541. 人选[ren2 xuan3] (人#6 选#738) choice of person; candidate#4542. 然而[ran2 er2] (然#409 而#231) however; but; yet#4543. 妄[wang4] (亡#330 女#29) absurd; fantastic; presumptuous; rash#4544. 俄国[e2 guo2] (俄#2615 国#612) Russia#4545. 挽[wan3] (扌#52 免#467) to pull; to draw (a cart or a bow); to roll up; to coil; to carry on the arm; to lament the dead; (fig.) to pull against; to recover; variant of 挽[wan3]; to draw (a cart); to lament the dead#4546. 便宜[bian4 yi2] (便#1044 宜#2718) convenient; cheap; inexpensive; a petty advantage; to let sb off lightly#4547. 木头[mu4 tou5] (木#38 头#207) slow-witted; blockhead; log (of wood, timber etc); CL:塊|块[kuai4],根[gen1]#4548. 汀[ting1] (氵#60 丁#62) sandbar; shoal; sandbank#4549. 通话[tong1 hua4] (通#819 话#296) to hold a conversation; to talk over the telephone; phone call#4550. 匪[fei3] (匚#367 非#387) bandit; (literary) not#4551. 找回[zhao3 hui2] (找#301 回#260) to retrieve#4552. 匠[jiang4] (匚#367 斤#117) craftsman#4553. 出名[chu1 ming2] (出#192 名#453) well-known for sth; to become well known; to make one's mark; to lend one's name (to an event, endeavor etc)#4554. 䧹(广#194 倠#4346) #4555. 公布[gong1 bu4] (公#419 布#543) variant of 公布[gong1bu4]; to announce; to make public; to publish#4556. 屋里(屋#898 里#158) #4557. 热情[re4 qing2] (热#1214 情#489) cordial; enthusiastic; passion; passionate; passionately#4558. 强奸[qiang2 jian1] (强#1028 奸#2972) to rape#4559. 具有[ju4 you3] (具#210 有#63) to have; to possess#4560. 洒[sa3] (氵#60 西#398) to sprinkle; to spray; to spill; to shed#4561. 引发[yin3 fa1] (引#1065 发#302) to lead to; to trigger; to initiate; to cause; to evoke (emotions)#4562. 笼[long2] (竹#191 龙#1055) enclosing frame made of bamboo, wire etc; cage; basket; steamer basket; to envelop; to cover; (used in 籠子|笼子[long3 zi5]) large box; Taiwan pr. [long2]#4563. 明早[ming2 zao3] (明#411 早#350) tomorrow morning; tomorrow#4564. 最好[zui4 hao3] (最#380 好#69) best; had better ...; it would be best to ...#4565. 丢人[diu1 ren2] (丢#1108 人#6) to lose face#4566. 用于[yong4 yu2] (用#196 于#342) to use in; to use on; to use for#4567. 成熟[cheng2 shu2] (成#335 熟#2296) mature; ripe; to mature; to ripen; Taiwan pr. [cheng2shou2]#4568. 评论[ping2 lun4] (评#1555 论#904) to comment on; to discuss; comment; commentary; CL:篇[pian1]#4569. 催[cui1] (亻#7 崔#2627) to urge; to press; to prompt; to rush sb; to hasten sth; to expedite#4570. 右手[you4 shou3] (右#771 手#211) right hand; right-hand side#4571. 收集[shou1 ji2] (收#764 集#1184) to gather; to collect#4572. 泼[po1] (氵#60 发#302) to splash; to spill; rough and coarse; brutish#4573. 打破[da3 po4] (打#272 破#1222) to break; to smash#4574. 介入[jie4 ru4] (介#609 入#505) to intervene; to get involved#4575. 裹[guo3] (亠#26 果#332 𧘇#352) to wrap around; bundle; parcel; package; to press into service; to pressgang; to make off with (sth)#4576. 悬[xuan2] (县#3330 心#61) to hang or suspend; to worry; public announcement; unresolved; baseless; without foundation#4577. 街区[jie1 qu1] (街#1334 区#694) block; neighborhood#4578. 致命[zhi4 ming4] (致#1624 命#712) fatal; mortal; deadly; to sacrifice one's life#4579. 屏[bing1] (尸#99 并#431) used in 屏營|屏营[bing1ying2]; to get rid of; to put aside; to reject; to keep control; to hold (one's breath); (standing) screen#4580. 点子[dian3 zi5] (点#225 子#47) spot; point; dot; speck; drop (of liquid); droplet; point (of argument); idea; crux; indication; pointer#4581. 联络[lian2 luo4] (联#1212 络#2857) to get in touch with; to contact; to stay in contact (with); liaison; (math.) connection#4582. 僵[jiang1] (亻#7 畺#4420) rigid; deadlock; stiff (corpse); variant of 僵[jiang1]#4583. 鹰[ying1] (䧹#4554 鸟#804) eagle; falcon; hawk#4584. 刊[kan1] (干#162 刂#67) to print; to publish; publication; periodical; to peel with a knife; to carve; to amend; old variant of 刊[kan1]; to peel with a knife; to carve; to amend#4585. 保守[bao3 shou3] (保#620 守#1387) conservative; to guard; to keep#4586. 物质[wu4 zhi4] (物#686 质#1663) matter; substance; material; materialistic; CL:個|个[ge4]#4587. 资格[zi1 ge2] (资#1602 格#1004) qualifications; seniority#4588. 即便[ji2 bian4] (即#1309 便#1044) even if; even though; right away; immediately#4589. 棒球[bang4 qiu2] (棒#781 球#799) baseball; CL:個|个[ge4],隻|只[zhi1]#4590. 事物[shi4 wu4] (事#182 物#686) thing; object; CL:個|个[ge4]#4591. 崇[chong2] (山#334 宗#1331) surname Chong; high; sublime; lofty; to esteem; to worship#4592. 苍[cang1] (艹#150 仓#520) surname Cang; dark blue; deep green; ash-gray#4593. 欢乐[huan1 le4] (欢#518 乐#671) gaiety; gladness; glee; merriment; pleasure; happy; joyous; gay#4594. 从小[cong2 xiao3] (从#133 小#16) from childhood; from a young age#4595. 哥们儿[ge1 men5 r5] (哥#722 们#64 儿#50) erhua variant of 哥們|哥们[ge1 men5]#4596. 扳[ban1] (扌#52 反#481) to pull; to turn (sth) around; to turn around (a situation); to recoup; variant of 攀[pan1]#4597. 华盛顿[hua2 sheng4 dun4] (华#1512 盛#2925 顿#1472) Washington (name); George Washington (1732-1799), first US president; Washington, US State; Washington, D.C. (US federal capital)#4598. 异常[yi4 chang2] (异#1697 常#613) unusual; abnormal; extremely; exceptionally#4599. 公里[gong1 li3] (公#419 里#158) kilometer#4600. 同一个(同#482 一#1 个#43) #4601. 干扰[gan1 rao3] (干#162 扰#1587) to disturb; to interfere; perturbation; interference (physics)#4602. 订婚[ding4 hun1] (订#1676 婚#982) to get engaged#4603. 血迹[xue4 ji4] (血#816 迹#1926) bloodstain#4604. 娃娃[wa2 wa5] (娃#2628 娃#2628) baby; small child; doll#4605. 决赛[jue2 sai4] (决#792 赛#980) finals (of a competition)#4606. 学院[xue2 yuan4] (学#542 院#1167) college; educational institute; school; faculty; CL:所[suo3]#4607. 安娜[an1 na4] (安#407 娜#2069) Anna (name)#4608. 漠[mo4] (氵#60 莫#920) desert; unconcerned#4609. 玻璃[bo1 li5] (玻#3900 璃#4327) glass; CL:張|张[zhang1],塊|块[kuai4]; (slang) male homosexual#4610. 忠诚[zhong1 cheng2] (忠#2502 诚#2252) devoted; loyal; fidelity; loyalty#4611. 水果[shui3 guo3] (水#457 果#332) fruit; CL:個|个[ge4]#4612. 掘[jue2] (扌#52 屈#2932) to dig#4613. 杯子[bei1 zi5] (杯#928 子#47) cup; glass; CL:個|个[ge4],隻|只[zhi1]#4614. 接下来[jie1 xia4 lai2] (接#639 下#109 来#87) to accept; to take; next; following#4615. 迈克(迈#2249 克#553) #4616. 外星人[wai4 xing1 ren2] (外#568 星#719 人#6) space alien; extraterrestrial#4617. 类型[lei4 xing2] (类#1048 型#1412) type; kind; category; (computer programming) type#4618. 会面[hui4 mian4] (会#76 面#428) to meet with; meeting#4619. 前往[qian2 wang3] (前#346 往#964) to leave for; to proceed towards; to go to#4620. 晒[shai4] (日#15 西#398) variant of 曬|晒[shai4]; (of the sun) to shine on; to bask in (the sunshine); to dry (clothes, grain etc) in the sun; (fig.) to expose and share (one's experiences and thoughts) on the Web (loanword from "share"); (coll.) to give the cold shoulder to#4621. 械[xie4] (木#38 戒#1728) appliance; tool; weapon; shackles; also pr. [jie4]#4622. 抽烟[chou1 yan1] (抽#1683 烟#1788) to smoke (tobacco) (variant of 抽菸|抽烟[chou1yan1]); to smoke (tobacco)#4623. 哲[zhe2] (折#1332 口#3) wise; a sage#4624. 完蛋[wan2 dan4] (完#451 蛋#1014) (coll.) to be done for#4625. 同情[tong2 qing2] (同#482 情#489) to sympathize with; sympathy#4626. 买卖[mai3 mai4] (买#381 卖#606) to buy and sell; purchase and sale; transaction; shop; store#4627. 艇[ting3] (舟#631 廷#831) vessel; small ship#4628. 指导[zhi3 dao3] (指#779 导#1482) to guide; to direct; to instruct; coach; trainer#4629. 小镇[xiao3 zhen4] (小#16 镇#1920) small town; village#4630. 卪[jie2] (卩#254 丶#4) old variant of 節|节[jie2]; one of the characters used in kwukyel, an ancient Korean writing system#4631. 卵[luan3] (𠂑#4632 卪#4630) egg; ovum; spawn; (coll.) testicles; (old) penis; (expletive) fucking#4632. 𠂑(𠂎#1367 丶#4) #4633. 流行[liu2 xing2] (流#1124 行#316) (of a contagious disease etc) to spread; to propagate; (of a style of clothing, song etc) popular; fashionable#4634. 诊所[zhen3 suo3] (诊#2723 所#309) clinic#4635. 老朋友[lao3 peng2 you5] (老#372 朋#592 友#298) old friend; (slang) period; menstruation#4636. 胡说[hu2 shuo1] (胡#1374 说#125) to talk nonsense; drivel#4637. 用来[yong4 lai2] (用#196 来#87) to be used for#4638. 车库[che1 ku4] (车#180 库#1286) garage#4639. 强壮[qiang2 zhuang4] (强#1028 壮#922) strong; sturdy; robust#4640. 指挥[zhi3 hui1] (指#779 挥#2180) to conduct; to command; to direct; conductor (of an orchestra); CL:個|个[ge4]#4641. 法语[fa3 yu3] (法#443 语#1226) French (language)#4642. 耀[yao4] (光#742 翟#3784) brilliant; glorious#4643. 守卫[shou3 wei4] (守#1387 卫#1140) to guard; to defend#4644. 相关[xiang1 guan1] (相#160 关#329) related; relevant; pertinent; to be interrelated; (statistics) correlation#4645. 华生(华#1512 生#167) #4646. 快要[kuai4 yao4] (快#290 要#103) nearly at the point of (doing sth); about to (do sth)#4647. 监控[jian1 kong4] (监#1037 控#1261) to monitor#4648. 拍照[pai1 zhao4] (拍#939 照#870) to take a picture#4649. 注意力[zhu4 yi4 li4] (注#1070 意#417 力#78) attention#4650. 法院[fa3 yuan4] (法#443 院#1167) court of law; court#4651. 灾难[zai1 nan4] (灾#2817 难#653) disaster; catastrophe#4652. 玩儿[wan2 r5] (玩#615 儿#50) to play; to have fun; to hang out#4653. 闯进[chuang3 jin4] (闯#2295 进#412) to burst in#4654. 做爱[zuo4 ai4] (做#239 爱#406) to make love#4655. 出场[chu1 chang3] (出#192 场#503) (of a performer) to come onto the stage to perform; (of an athlete) to enter the arena to compete; (fig.) to enter the scene (e.g. a new product); (of an examinee etc) to leave the venue#4656. 溃[hui4] (氵#60 贵#1360) used in 潰膿|溃脓[hui4nong2]; Taiwan pr. [kui4]; (bound form) (of floodwaters) to break through a dam or dike; (bound form) to break through (a military encirclement); (bound form) to be routed; to be overrun; to fall to pieces; (bound form) to fester; to ulcerate#4657. 冬天[dong1 tian1] (冬#697 天#124) winter; CL:個|个[ge4]#4658. 拜拜[bai2 bai2] (拜#1018 拜#1018) (loanword) bye-bye; also pr. [bai1 bai1] etc; (coll.) to part ways (with sb); (fig.) to have nothing further to do (with sb or sth); to pay one's respects by bowing with hands in front of one's chest clasping joss sticks, or with palms pressed together; (Tw) religious ceremony in which offerings are made to a deity#4659. 凑[cou4] (冫#81 奏#2001) to gather together, pool or collect; to happen by chance; to move close to; to exploit an opportunity#4660. 你家(你#25 家#307) #4661. 湾[wan1] (氵#60 弯#2845) bay; gulf; to cast anchor; to moor (a boat)#4662. 驴[lu:2] (马#70 户#358) variant of 驢|驴[lu:2]; donkey; CL:頭|头[tou2]#4663. 娅[ya4] (女#29 亚#732) (literary) term of address between husbands of sisters; (used to transliterate foreign names); (used in Chinese women's names)#4664. 勾引[gou1 yin3] (勾#1313 引#1065) to seduce; to tempt#4665. 妨[fang2] (女#29 方#198) to hinder; (in the negative or interrogative) (no) harm; (what) harm#4666. 寻求[xun2 qiu2] (寻#1540 求#395) to seek; to look for#4667. 成绩[cheng2 ji4] (成#335 绩#4065) achievement; performance records; grades; CL:項|项[xiang4],個|个[ge4]#4668. 疫[yi4] (疒#389 殳#95) (bound form) epidemic; plague#4669. 手套[shou3 tao4] (手#211 套#1348) glove; mitten; CL:雙|双[shuang1],隻|只[zhi1]#4670. 横[heng2] (木#38 黄#1932) horizontal; across; crosswise; horizontal stroke (in Chinese characters); to place (sth) flat (on a surface); to cross (a river, etc); in a jumble; chaotic; (in fixed expressions) harsh and unreasonable; violent; harsh and unreasonable; unexpected#4671. 海滩[hai3 tan1] (海#581 滩#3456) beach; CL:片[pian4]#4672. 扮演[ban4 yan3] (扮#2189 演#936) to play the role of; to act#4673. 经典[jing1 dian3] (经#349 典#2244) the classics; scriptures; classical; classic (example, case etc); typical#4674. 谬[miu4] (讠#36 翏#3750) (bound form) false; erroneous; absurd; mu (Greek letter Μμ)#4675. 跃[yue4] (𧾷#262 夭#595) to jump; to leap#4676. 协助[xie2 zhu4] (协#1796 助#988) to provide assistance; to aid#4677. 家长[jia1 zhang3] (家#307 长#308) head of a household; family head; patriarch; parent or guardian of a child#4678. 过于[guo4 yu2] (过#148 于#342) excessively; too#4679. 发火[fa1 huo3] (发#302 火#187) to catch fire; to ignite; to detonate; to get angry#4680. 傻子[sha3 zi5] (傻#1441 子#47) idiot; fool#4681. 苹果[ping2 guo3] (苹#4389 果#332) Apple (American tech company); apple; CL:個|个[ge4],顆|颗[ke1]#4682. 五十[wu3 shi2] (五#536 十#10) fifty#4683. 舔[tian3] (舌#199 忝#3266) to lick; to lap#4684. 棕[zong1] (木#38 宗#1331) palm; palm fiber; coir (coconut fiber); brown; variant of 棕[zong1]#4685. 贤[xian2] (〢#588 又#34 贝#189) worthy or virtuous person; honorific used for a person of the same or a younger generation#4686. 洗手间[xi3 shou3 jian1] (洗#1291 手#211 间#384) toilet; lavatory; washroom#4687. 良好[liang2 hao3] (良#648 好#69) good; favorable; well; fine#4688. 判断[pan4 duan4] (判#1550 断#1325) to judge; to determine; judgment#4689. 站住[zhan4 zhu4] (站#897 住#461) to stand#4690. 拽[ye4] (扌#52 曳#4533) variant of 曳[ye4]; to throw; to fling; self-satisfied; cocky (alternative written form of 跩[zhuai3]); to pull; to tug at (sth)#4691. 试验[shi4 yan4] (试#675 验#1528) experiment; test; CL:次[ci4],個|个[ge4]; to experiment; experimental#4692. 呗[bai4] (口#3 贝#189) (bound form) to chant (from Sanskrit "pāṭhaka"); modal particle indicating lack of enthusiasm; modal particle indicating that things should only or can only be done a certain way#4693. 严肃[yan2 su4] (严#1611 肃#3528) (of an atmosphere etc) solemn; grave; serious; (of a manner etc) earnest; severe; exacting; to strictly enforce#4694. 神圣[shen2 sheng4] (神#880 圣#622) divine; hallow; holy; sacred#4695. 叨[dao1] (口#3 刀#59) garrulous; to receive the benefit of#4696. 赎[shu2] (贝#189 卖#606) to redeem; to ransom#4697. 取得[qu3 de2] (取#331 得#202) to acquire; to get; to obtain#4698. 探长[tan4 zhang3] (探#1093 长#308) (police) detective#4699. 有用[you3 yong4] (有#63 用#196) useful#4700. 奶酪[nai3 lao4] (奶#1125 酪#3665) cheese; CL:塊|块[kuai4],盒[he2],片[pian4]#4701. 汇报[hui4 bao4] (汇#2674 报#808) to report; to give an account of; to collect information and report back; to report; to give an account of; report#4702. 尊敬[zun1 jing4] (尊#1797 敬#820) to respect; to revere; to esteem; honorable; distinguished (used on formal occasions before a term of address)#4703. 顾问[gu4 wen4] (顾#1608 问#369) adviser; consultant#4704. 提议[ti2 yi4] (提#867 议#974) proposal; suggestion; to propose; to suggest#4705. 瘤[liu2] (疒#389 留#717) tumor; old variant of 瘤[liu2]#4706. 保留[bao3 liu2] (保#620 留#717) to keep; to retain; to have reservations (about sth); to hold back (from saying sth); to put aside for later#4707. 几十(几#141 十#10) #4708. 地下室[di4 xia4 shi4] (地#317 下#109 室#932) basement; cellar#4709. 贪[tan1] (今#370 贝#189) to have a voracious desire for; to covet; greedy; corrupt#4710. 纪录[ji4 lu4] (纪#1433 录#976) variant of 記錄|记录[ji4 lu4] (but in Taiwan, not for the verb sense "to record")#4711. 数据[shu4 ju4] (数#1151 据#1223) data#4712. 公子[gong1 zi3] (公#419 子#47) son of an official; son of nobility; your son (honorific)#4713. 衬衫[chen4 shan1] (衬#3530 衫#3444) shirt; blouse; CL:件[jian4]#4714. 包围[bao1 wei2] (包#422 围#1557) to surround; to encircle; to hem in#4715. 主题[zhu3 ti2] (主#295 题#733) theme; subject#4716. 称为[cheng1 wei2] (称#1630 为#104) to be called; to be known as; to call it "..."#4717. 熟悉[shu2 xi1] (熟#2296 悉#4078) to be familiar with; to know well#4718. 话题[hua4 ti2] (话#296 题#733) subject (of a talk or conversation); topic#4719. 屋顶[wu1 ding3] (屋#898 顶#1680) roof#4720. 起床[qi3 chuang2] (起#285 床#984) to get out of bed; to get up#4721. 第六(第#539 六#878) #4722. 一阵子[yi1 zhen4 zi5] (一#1 阵#2144 子#47) a while; a spell; a short time; a burst#4723. 锋[feng1] (钅#227 夆#1869) point of a spear; edge of a tool; vanguard; forward (in sports team)#4724. 增加[zeng1 jia1] (增#3144 加#408) to raise; to increase#4725. 大赛[da4 sai4] (大#35 赛#980) grand contest#4726. 长久[chang2 jiu3] (长#308 久#533) long-time; long-term; lasting; enduring; permanent; for a long time#4727. 𦐇(日#15 羽#1083) #4728. 审讯[shen3 xun4] (审#1689 讯#2250) inquest; trial; interrogation; to try; to interrogate#4729. 亚当[ya4 dang1] (亚#732 当#299) Adam#4730. 修女[xiu1 nu:3] (修#1397 女#29) nun or sister (of the Roman Catholic or Greek Orthodox churches)#4731. 熏[xun1] to smoke; to fumigate; to assail the nostrils; to perfume; variant of 熏[xun1]; fragrance; warm; to educate; variant of 熏[xun1]; to smoke; to fumigate#4732. 难以置信[nan2 yi3 zhi4 xin4] (难#653 以#172 置#1646 信#494) (idiom) hard to believe; incredible#4733. 八卦[ba1 gua4] (八#41 卦#4483) the eight divinatory trigrams of the Book of Changes 易經|易经[Yi4 jing1]; gossip; gossipy#4734. 没门(没#105 门#51) #4735. 展现[zhan3 xian4] (展#1415 现#268) to unfold before one's eyes; to emerge; to reveal; to display#4736. 筒[tong3] (竹#191 同#482) tube; cylinder; to encase in sth cylindrical (such as hands in sleeves etc); variant of 筒[tong3]#4737. 狗屁[gou3 pi4] (狗#776 屁#1231) bullshit; nonsense#4738. 电池[dian4 chi2] (电#433 池#2446) battery; CL:節|节[jie2],組|组[zu3]#4739. 伐[fa2] (亻#7 戈#159) to cut down; to fell; to dispatch an expedition against; to attack; to boast; Taiwan pr. [fa1]#4740. 惊人[jing1 ren2] (惊#1446 人#6) astonishing#4741. 获胜[huo4 sheng4] (获#1828 胜#1589) victorious; to win; to triumph#4742. 嘲[chao2] (口#3 朝#1733) to ridicule; to mock; used in 嘲哳[zhao1zha1]#4743. 美味[mei3 wei4] (美#541 味#1235) delicious; delicious food; delicacy#4744. 亲人[qin1 ren2] (亲#402 人#6) one's close relatives#4745. 平安[ping2 an1] (平#705 安#407) safe and sound; well; without mishap; quiet and safe; at peace#4746. 阿姨[a1 yi2] (阿#223 姨#3652) maternal aunt; step-mother; childcare worker; nursemaid; woman of similar age to one's parents (term of address used by child); CL:個|个[ge4]#4747. 灯光[deng1 guang1] (灯#1541 光#742) (stage) lighting; light#4748. 抄[chao1] (扌#52 少#360) to make a copy; to plagiarize; to search and seize; to raid; to grab; to go off with; to take a shortcut; to make a turning move; to fold one's arms#4749. 一早[yi1 zao3] (一#1 早#350) early in the morning; at dawn#4750. 不准[bu4 zhun3] (不#23 准#731) not to allow; to forbid; to prohibit#4751. 承担[cheng2 dan1] (承#1357 担#885) to undertake; to assume (responsibility etc)#4752. 机密[ji1 mi4] (机#471 密#1168) secret; classified (information)#4753. 友谊[you3 yi4] (友#298 谊#4262) companionship; fellowship; friendship#4754. 全球[quan2 qiu2] (全#458 球#799) the whole world; worldwide; global#4755. 立场[li4 chang3] (立#122 场#503) position; standpoint; CL:個|个[ge4]#4756. 蹲[cun2] (𧾷#262 尊#1797) (dialect) to sprain one's foot or leg due to a sudden impact or landing; to crouch; to squat; to stay (somewhere)#4757. 暗示[an4 shi4] (暗#2022 示#391) to hint; to suggest; hint; suggestion#4758. 厌倦[yan4 juan4] (厌#1270 倦#4290) to be weary of; to be fed up with; to be bored with#4759. 期间[qi1 jian1] (期#1069 间#384) period of time; time; time period; period; CL:個|个[ge4]#4760. 成立[cheng2 li4] (成#335 立#122) to establish; to set up; to be tenable; to hold water#4761. 芯[xin1] (艹#150 心#61) (bound form) the pith of the rush plant (used as a lampwick); used in 芯子[xin4zi5]; Taiwan pr. [xin1]#4762. 十五[shi2 wu3] (十#10 五#536) fifteen; 15#4763. 曲子[qu3 zi5] (曲#955 子#47) poem for singing; tune; music; CL:支[zhi1]#4764. 说不定[shuo1 bu5 ding4] (说#125 不#23 定#347) can't say for sure; maybe#4765. 足以[zu2 yi3] (足#1185 以#172) sufficient to...; so much so that; so that#4766. 慈善[ci2 shan4] (慈#3378 善#1981) benevolent; charitable#4767. 毕竟[bi4 jing4] (毕#1687 竟#1194) after all; all in all; when all is said and done; in the final analysis#4768. 工资[gong1 zi1] (工#144 资#1602) wages; pay; CL:份[fen4]#4769. 逝[shi4] (辶#33 折#1332) (of flowing water or time) to pass by; to pass away; to die#4770. 欢呼[huan1 hu1] (欢#518 呼#1355) to cheer for; to acclaim#4771. 墙上(墙#2353 上#56) #4772. 判决[pan4 jue2] (判#1550 决#792) judgment (by a court of law); to pass judgment on; to sentence#4773. 摘[zhai1] (扌#52 啇#2953) to take; to pick (flowers, fruit etc); to pluck; to remove; to take off (glasses, hat etc); to select; to pick out; to borrow money at a time of urgent need#4774. 症状[zheng4 zhuang4] (症#1975 状#1592) symptom (of an illness)#4775. 口音[kou3 yin1] (口#3 音#337) (linguistics) oral speech sounds; voice; accent#4776. 煎[jian1] (前#346 灬#134) to pan fry; to sauté#4777. 装置[zhuang1 zhi4] (装#1000 置#1646) to install; installation; equipment; system; unit; device#4778. 有着[you3 zhe5] (有#63 着#267) to have; to possess#4779. 神像[shen2 xiang4] (神#880 像#434) likeness of a god or Buddha; (old) portrait of the deceased#4780. 平民[ping2 min2] (平#705 民#987) ordinary people; commoner (contrasted with the privileged); civilian (contrasted with the military)#4781. 论文[lun4 wen2] (论#904 文#65) paper; treatise; thesis; CL:篇[pian1]; to discuss a paper or thesis (old)#4782. 说说[shuo1 shuo5] (说#125 说#125) to say sth#4783. 拜访[bai4 fang3] (拜#1018 访#2098) to pay a visit; to call on#4784. 对面[dui4 mian4] (对#113 面#428) (sitting) opposite; across (the street); directly in front; to be face to face#4785. 骗人[pian4 ren2] (骗#1435 人#6) to cheat sb; a scam#4786. 宗教[zong1 jiao4] (宗#1331 教#872) religion#4787. 巴西[ba1 xi1] (巴#74 西#398) Brazil#4788. 样本[yang4 ben3] (样#264 本#343) sample; specimen#4789. 平静[ping2 jing4] (平#705 静#1396) tranquil; undisturbed; serene#4790. 逻[luo2] (辶#33 罗#906) patrol#4791. 宣传[xuan1 chuan2] (宣#2044 传#981) to disseminate; to give publicity to; propaganda; CL:個|个[ge4]#4792. 劣[lie4] (少#360 力#78) inferior#4793. 鹅[e2] (我#14 鸟#804) variant of 鵝|鹅[e2]; goose; CL:隻|只[zhi1]; variant of 鵝|鹅[e2]#4794. 莲[lian2] (艹#150 连#875) lotus#4795. 发布[fa1 bu4] (发#302 布#543) variant of 發布|发布[fa1bu4]; to release; to issue; to announce; to distribute#4796. 服装[fu2 zhuang1] (服#769 装#1000) dress; clothing; costume; clothes; CL:身[shen1]#4797. 干脆[gan1 cui4] (干#162 脆#3316) candid; direct and to the point; simply; just; might as well#4798. 天下[tian1 xia4] (天#124 下#109) land under heaven; the whole world; the whole of China; realm; rule#4799. 医学[yi1 xue2] (医#688 学#542) medicine; medical science; study of medicine#4800. 翘[qiao2] (尧#1119 羽#1083) outstanding; to raise; to stick up; to rise on one end; to tilt#4801. 优势[you1 shi4] (优#1855 势#1884) superiority; dominance; advantage#4802. 行事[xing2 shi4] (行#316 事#182) to execute; to handle; behavior; action; conduct#4803. 醒来[xing3 lai2] (醒#1380 来#87) to waken#4804. 明年[ming2 nian2] (明#411 年#340) next year#4805. 尝尝(尝#1688 尝#1688) #4806. 扔下[reng1 xia4] (扔#1064 下#109) to throw down; to drop (bomb)#4807. 出版[chu1 ban3] (出#192 版#2138) to publish#4808. 村子[cun1 zi5] (村#1971 子#47) village#4809. 小事[xiao3 shi4] (小#16 事#182) trifle; trivial matter; CL:點|点[dian3]#4810. 摆脱[bai3 tuo1] (摆#2132 脱#1473) to break away from; to cast off (old ideas etc); to get rid of; to break away (from); to break out (of); to free oneself from; to extricate oneself#4811. 颈[geng3] (𢀖#322 页#311) used in 脖頸|脖颈[bo2geng3]; neck#4812. 靴[xue1] (革#1148 化#488) boots; variant of 靴[xue1]#4813. 救救(救#865 救#865) #4814. 其他人(其#338 他#48 人#6) #4815. 废物[fei4 wu4] (废#2094 物#686) rubbish; waste material; useless person#4816. 联盟[lian2 meng2] (联#1212 盟#3608) alliance; union; coalition#4817. 追求[zhui1 qiu2] (追#1418 求#395) to pursue (a goal etc) stubbornly; to seek after; to woo#4818. 至今[zhi4 jin1] (至#108 今#370) so far; to this day; until now#4819. 搜索[sou1 suo3] (搜#2217 索#1566) to search (a place, a database, online etc); to search for (sth)#4820. 清醒[qing1 xing3] (清#973 醒#1380) clear-headed; sober; awake#4821. 琼[qiong2] (王#97 京#131) abbr. for Hainan Province 海南[Hai3nan2]; jasper; fine jade; beautiful; exquisite (e.g. wine, food); abbr. for Hainan province#4822. 场合[chang3 he2] (场#503 合#153) situation; occasion; context; setting; location; venue#4823. 等于[deng3 yu2] (等#439 于#342) to equal; to be tantamount to#4824. 读书[du2 shu1] (读#1321 书#649) to read a book; to study; to attend school#4825. 渣[zha1] (氵#60 查#680) slag (in mining or smelting); dregs#4826. 復(彳#75 复#1080) #4827. 方案[fang1 an4] (方#198 案#795) plan; program (for action etc); proposal; proposed bill; CL:個|个[ge4],套[tao4]#4828. 腔[qiang1] (月#40 空#716) (bound form) cavity; tune; accent (in one's speech); (old) (classifier for carcasses of slaughtered livestock)#4829. 偷走(偷#1179 走#147) #4830. 残忍[can2 ren3] (残#2378 忍#1741) cruel; mean; merciless; ruthless#4831. 颠[dian1] (真#222 页#311) top (of the head); apex; to fall forwards; inverted; to jolt#4832. 出席[chu1 xi2] (出#192 席#2422) to attend; to participate; present#4833. 眼前[yan3 qian2] (眼#990 前#346) before one's eyes; now; at present#4834. 生产[sheng1 chan3] (生#167 产#954) to produce; to manufacture; to give birth to a child#4835. 海盗[hai3 dao4] (海#581 盗#2825) pirate#4836. 深刻[shen1 ke4] (深#1455 刻#1186) profound; deep; deep-going#4837. 管用[guan3 yong4] (管#785 用#196) efficacious; useful#4838. 持续[chi2 xu4] (持#970 续#1169) to continue; to persist; to last; sustainable; preservation#4839. 衡[heng2] (彳#75 𩵋#4840 亍#300) to weigh; weight; measure#4840. 𩵋(𠂊#12 田#168 大#35) #4841. 消灭[xiao1 mie4] (消#1007 灭#1873) to put an end to; to annihilate; to cause to perish; to perish; annihilation (in quantum field theory)#4842. 刹[cha4] (杀#366 刂#67) Buddhist monastery, temple or shrine (abbr. for 剎多羅|刹多罗[cha4duo1luo2], Sanskrit "ksetra"); to brake#4843. 膝[xi1] (月#40 桼#3596) old variant of 膝[xi1]; knee#4844. 怪异[guai4 yi4] (怪#844 异#1697) monstrous; strange; strange phenomenon#4845. 州长[zhou1 zhang3] (州#1094 长#308) governor (of a province or colony); (US) state governor; (Australian) state premier#4846. 早安[zao3 an1] (早#350 安#407) Good morning!#4847. 微笑[wei1 xiao4] (微#2221 笑#809) smile; CL:個|个[ge4],絲|丝[si1]; to smile#4848. 想见[xiang3 jian4] (想#178 见#123) to infer; to gather#4849. 军事[jun1 shi4] (军#757 事#182) military affairs; (attributive) military#4850. 询问[xun2 wen4] (询#3396 问#369) to inquire#4851. 详细[xiang2 xi4] (详#3738 细#1590) detailed; in detail; minute#4852. 夸张[kua1 zhang1] (夸#2168 张#672) to exaggerate; overstated; exaggerated; hyperbole; (coll.) excessive; ridiculous; outrageous#4853. 桌上(桌#1991 上#56) #4854. 游泳[you2 yong3] (游#1258 泳#2867) swimming; to swim#4855. 开工[kai1 gong1] (开#157 工#144) to begin work (of a factory or engineering operation); to start a construction job#4856. 超人[chao1 ren2] (超#1219 人#6) Superman, comic book superhero; superhuman; exceptional#4857. 谱[pu3] (讠#36 普#1648) chart; list; table; register; score (music); spectrum (physics); to set to music#4858. 魔法[mo2 fa3] (魔#1972 法#443) enchantment; magic#4859. 体育[ti3 yu4] (体#683 育#1856) sports; physical education#4860. 名片[ming2 pian4] (名#453 片#572) (business) card#4861. 如同[ru2 tong2] (如#292 同#482) like; as#4862. 粒[li4] (米#240 立#122) grain; granule; pellet; particle; classifier for small round objects (peas, bullets, peanuts, pills, grains etc); (Tw) classifier for larger round objects (watermelon etc)#4863. 痒[yang3] (疒#389 羊#152) variant of 癢|痒[yang3]; to itch; to tickle; to itch; to tickle#4864. 职责[zhi2 ze2] (职#1558 责#1103) duty; responsibility; obligation#4865. 昍(日#15 日#15) #4866. 晶[jing1] (日#15 昍#4865) crystal#4867. 发作[fa1 zuo4] (发#302 作#359) to flare up; to break out#4868. 放到(放#446 到#127) #4869. 闰[run4] (门#51 王#97) intercalary; an extra day or month inserted into the lunar or solar calendar (such as February 29)#4870. 配合[pei4 he2] (配#1642 合#153) matching; fitting in with; compatible with; to correspond; to fit; to conform to; rapport; to coordinate with; to act in concert with; to cooperate; to become man and wife; to combine parts of machine#4871. 悠[you1] (攸#4266 心#61) long or drawn out; remote in time or space; leisurely; to swing; pensive; worried#4872. 匡[kuang1] (匚#367 王#97) surname Kuang; (literary) to rectify; (literary) to assist; (coll.) to calculate roughly; to estimate#4873. 失业[shi1 ye4] (失#618 业#413) unemployment; to lose one's job#4874. 检测[jian3 ce4] (检#1513 测#1702) to detect; to test; detection; sensing#4875. 竞选[jing4 xuan3] (竞#2586 选#738) to take part in an election; to run for office#4876. 金属[jin1 shu3] (金#871 属#1779) metal; CL:種|种[zhong3]#4877. 好样(好#69 样#264) #4878. 航班[hang2 ban1] (航#2218 班#1190) (scheduled) flight; (scheduled) sailing#4879. 忏[chan4] (忄#140 千#185) (bound form) to feel remorse; (bound form) scripture read to atone for sb's sins (from Sanskrit "ksama")#4880. 忏悔[chan4 hui3] (忏#4879 悔#2620) to repent; (religion) to confess#4881. 挣扎[zheng1 zha2] (挣#2637 扎#1904) to struggle#4882. 武士[wu3 shi4] (武#1583 士#205) warrior; samurai#4883. 火力[huo3 li4] (火#187 力#78) fire; firepower#4884. 自行车[zi4 xing2 che1] (自#142 行#316 车#180) bicycle; bike; CL:輛|辆[liang4]#4885. 脂[zhi1] (月#40 旨#752) fat; rouge (cosmetics); resin#4886. 坟[fen2] (土#13 文#65) grave; tomb; CL:座[zuo4]; embankment; mound; ancient book#4887. 亲密[qin1 mi4] (亲#402 密#1168) intimate; close#4888. 礼貌[li3 mao4] (礼#993 貌#3246) courtesy; politeness; manners; courteous; polite#4889. 营地[ying2 di4] (营#2114 地#317) camp#4890. 标志[biao1 zhi4] (标#1308 志#1438) sign; mark; symbol; logo; to symbolize; to indicate; to mark#4891. 吻合[wen3 he2] (吻#1454 合#153) to be a good fit; to be identical with; to adjust oneself to; to fit in#4892. 眼神[yan3 shen2] (眼#990 神#880) expression or emotion showing in one's eyes; meaningful glance; wink; eyesight (dialect)#4893. 可恶[ke3 wu4] (可#84 恶#1206) repulsive; vile; hateful; abominable#4894. 盆[pen2] (分#306 皿#456) basin; flower pot; unit of volume equal to 12 斗[dou3] and 8 升[sheng1], approx 128 liters; CL:個|个[ge4]#4895. 稿[gao3] (禾#107 高#454) variant of 稿[gao3]; manuscript; draft; stalk of grain#4896. 饥[ji1] (饣#635 几#141) (bound form) hungry; variant of 飢|饥[ji1]#4897. 券[quan4] (龹#989 刀#59) bond (esp. document split in two, with each party holding one half); contract; deed (i.e. title deeds); ticket; voucher; certificate; variant of 券[quan4]#4898. 手头[shou3 tou2] (手#211 头#207) on hand; at hand; one's financial situation#4899. 困扰[kun4 rao3] (困#1502 扰#1587) to perplex; to disturb; to cause complications#4900. 茱[zhu1] (艹#150 朱#1636) used in 茱萸[zhu1yu2]#4901. 不利[bu4 li4] (不#23 利#633) unfavorable; disadvantageous; harmful; detrimental#4902. 润[run4] (氵#60 闰#4869) moist; glossy; sleek; to moisten; to lubricate; to embellish; to enhance; profit; remuneration; (neologism c. 2021) (slang) (loanword from "run") to emigrate (in order to flee adverse conditions)#4903. 锅[guo1] (钅#227 呙#2228) pot; pan; wok; cauldron; pot-shaped thing; CL:口[kou3],隻|只[zhi1]#4904. 比如说[bi3 ru2 shuo1] (比#261 如#292 说#125) for example#4905. 火鸡[huo3 ji1] (火#187 鸡#1280) turkey#4906. 全新[quan2 xin1] (全#458 新#656) all new; completely new#4907. 依然[yi1 ran2] (依#2245 然#409) still; as before#4908. 少校[shao4 xiao4] (少#360 校#1118) junior ranking officer in Chinese army; major; lieutenant commander#4909. 盼[pan4] (目#72 分#306) to hope for; to long for; to expect#4910. 嘻[xi1] (口#3 喜#562) laugh; giggle; (interjection expressing admiration, surprise etc); (interjection expressing surprise, grief etc); variant of 嘻[xi1]#4911. 思想[si1 xiang3] (思#784 想#178) thought; thinking; idea; ideology; CL:個|个[ge4]#4912. 伽[ga1] (亻#7 加#408) used in the transliteration of Greek letters; traditionally used as phonetic for "ga"; used to transliterate Sanskrit "gha"#4913. 管理[guan3 li3] (管#785 理#658) to supervise; to manage; to administer; management; administration; CL:個|个[ge4]#4914. 一整天(一#1 整#1072 天#124) #4915. 天天[tian1 tian1] (天#124 天#124) every day#4916. 腹[fu4] (月#40 复#1080) abdomen; stomach; belly#4917. 圣诞老人[sheng4 dan4 lao3 ren2] (圣#622 诞#1852 老#372 人#6) Father Christmas; Santa Claus#4918. 平常[ping2 chang2] (平#705 常#613) ordinary; common; usually; ordinarily#4919. 毒气[du2 qi4] (毒#1163 气#501) poison gas; toxic gas; manifestation of passion, anger etc (Buddhism)#4920. 保重[bao3 zhong4] (保#620 重#566) to take care of oneself#4921. 有力[you3 li4] (有#63 力#78) powerful; forceful; vigorous#4922. 争吵[zheng1 chao3] (争#724 吵#1635) to quarrel; dispute#4923. 费用[fei4 yong4] (费#1189 用#196) cost; expenditure; expense; CL:筆|笔[bi3],個|个[ge4]#4924. 恒[heng2] (忄#140 亘#1887) surname Heng; permanent; constant; fixed; usual; ordinary; rule (old); one of the 64 hexagrams of the Book of Changes (䷟); variant of 恆|恒[heng2]#4925. 了结[liao3 jie2] (了#9 结#687) to settle; to finish; to conclude; to wind up#4926. 行业[hang2 ye4] (行#316 业#413) trade; profession; industry; business#4927. 登记[deng1 ji4] (登#1698 记#516) to register (one's name)#4928. 主席[zhu3 xi2] (主#295 席#2422) chairperson; premier; chairman; CL:個|个[ge4],位[wei4]#4929. 十足[shi2 zu2] (十#10 足#1185) ample; complete; hundred percent; a pure shade (of some color)#4930. 应得[ying1 de2] (应#506 得#202) to deserve#4931. 演讲[yan3 jiang3] (演#936 讲#829) to give a lecture; to make a speech#4932. 魔鬼[mo2 gui3] (魔#1972 鬼#774) devil#4933. 材料[cai2 liao4] (材#2551 料#1539) (raw) material; data; (fig.) person who has the potential to do the job#4934. 摇滚[yao2 gun3] (摇#2585 滚#1560) rock 'n' roll (music); to rock; to fall off#4935. 从此[cong2 ci3] (从#133 此#221) from now on; since then; henceforth#4936. 回见[hui2 jian4] (回#260 见#123) See you later!#4937. 大道[da4 dao4] (大#35 道#250) main street; avenue#4938. 饭店[fan4 dian4] (饭#1111 店#1052) restaurant; hotel; CL:家[jia1],個|个[ge4]#4939. 掩护[yan3 hu4] (掩#3069 护#952) to screen; to shield; to cover; protection; cover; CL:面[mian4]#4940. 吉姆(吉#573 姆#1497) #4941. 小小的(小#16 小#16 的#22) #4942. 峰[feng1] (山#334 夆#1869) variant of 峰[feng1]; (of a mountain) high and tapered peak or summit; mountain-like in appearance; highest level; classifier for camels#4943. 罕[han3] (㓁#838 干#162) rare#4944. 奖励[jiang3 li4] (奖#1649 励#3454) to reward; reward (as encouragement)#4945. 餐馆[can1 guan3] (餐#1536 馆#1883) restaurant; CL:家[jia1]#4946. 交谈[jiao1 tan2] (交#499 谈#629) to discuss; to converse; chat; discussion#4947. 捷[jie2] (扌#52 疌#4453) variant of 捷[jie2]; quick; nimble; Czech; Czech Republic; abbr. for 捷克[Jie2 ke4]; victory; triumph; quick; nimble; prompt#4948. 幸存者[xing4 cun2 zhe3] (幸#1088 存#1128 者#161) survivor#4949. 委托[wei3 tuo1] (委#1677 托#962) to entrust; to trust; to commission#4950. 真心[zhen1 xin1] (真#222 心#61) wholeheartedness; sincerity#4951. 晋级[jin4 ji2] (晋#4326 级#1199) to advance in rank; promotion; advancement#4952. 直觉[zhi2 jue2] (直#403 觉#464) intuition#4953. 夹克[jia1 ke4] (夹#1668 克#553) (loanword) jacket; also pr. [jia2 ke4]#4954. 白宫[bai2 gong1] (白#20 宫#2433) White House#4955. 辩护[bian4 hu4] (辩#3004 护#952) to speak in defense of; to argue in favor of; to defend; to plead#4956. 市民[shi4 min2] (市#896 民#987) city resident#4957. 手表[shou3 biao3] (手#211 表#652) wristwatch; CL:塊|块[kuai4],隻|只[zhi1],個|个[ge4]#4958. 莓[mei2] (艹#150 每#345) berry; strawberry#4959. 指示[zhi3 shi4] (指#779 示#391) to point out; to indicate; to instruct; directives; instructions; CL:個|个[ge4]#4960. 欺骗[qi1 pian4] (欺#3329 骗#1435) to deceive; to cheat#4961. 艺术家[yi4 shu4 jia1] (艺#1586 术#869 家#307) artist; CL:個|个[ge4],位[wei4],名[ming2]#4962. 商业[shang1 ye4] (商#1699 业#413) business; trade; commerce#4963. 女巫[nu:3 wu1] (女#29 巫#2647) witch; sorceress#4964. 求婚[qiu2 hun1] (求#395 婚#982) to propose marriage#4965. 碟[die2] (石#348 枼#2717) dish; plate#4966. 保罗[bao3 luo2] (保#620 罗#906) Paul#4967. 愧[kui4] (忄#140 鬼#774) old variant of 愧[kui4]; ashamed#4968. 第七(第#539 七#294) #4969. 侄子[zhi2 zi5] (侄#3861 子#47) brother's son; nephew#4970. 良心[liang2 xin1] (良#648 心#61) conscience#4971. 乖乖[guai1 guai1] (乖#2276 乖#2276) (of a child) well-behaved; obediently; (term of endearment for a child) darling; sweetie; goodness gracious!; oh my lord!#4972. 新鲜[xin1 xian1] (新#656 鲜#2968) fresh (experience, food etc); freshness; novel; uncommon#4973. 得分[de2 fen1] (得#202 分#306) to score a point (in a competition, test etc); score; rating; grade#4974. 姜[jiang1] (𦍌#492 女#29) surname Jiang; variant of 薑|姜[jiang1]; ginger#4975. 黛[dai4] (代#726 黑#475) umber-black dye for painting the eyebrow#4976. 芝加哥[zhi1 jia1 ge1] (芝#3582 加#408 哥#722) Chicago, USA#4977. 十一[shi2 yi1] (十#10 一#1) PRC National Day (October 1st); eleven; 11#4978. 声明[sheng1 ming2] (声#796 明#411) to state; to declare; statement; declaration; CL:項|项[xiang4],份[fen4]#4979. 爱人[ai4 ren5] (爱#406 人#6) spouse (PRC); lover (non-PRC); CL:個|个[ge4]#4980. 馅[xian4] (饣#635 臽#1879) filling; stuffing (for dumplings, pies etc)#4981. 疲[pi2] (疒#389 皮#289) weary#4982. 地盘[di4 pan2] (地#317 盘#1985) domain; territory under one's control; foundation of a building; base of operations; crust of earth#4983. 抓紧[zhua1 jin3] (抓#777 紧#1081) to keep a firm grip on; to pay close attention to; to lose no time in (doing sth)#4984. 腕[wan4] (月#40 宛#2720) wrist; (squid, starfish etc) arm#4985. 奎[kui2] (大#35 圭#519) crotch; 15th of the 28th constellations of Chinese astronomy#4986. 偶尔[ou3 er3] (偶#2165 尔#24) occasionally; once in a while; sometimes#4987. 局里(局#979 里#158) #4988. 罪名[zui4 ming2] (罪#1138 名#453) charge; accusation; stigma; bad name; stained reputation#4989. 小孩子[xiao3 hai2 zi5] (小#16 孩#400 子#47) child#4990. 打仗[da3 zhang4] (打#272 仗#3183) to fight a battle; to go to war#4991. 疾病[ji2 bing4] (疾#2859 病#911) disease; sickness; ailment#4992. 侵犯[qin1 fan4] (侵#2533 犯#743) to infringe on; to encroach on; to violate; to assault#4993. 时期[shi2 qi1] (时#224 期#1069) period; phase; CL:個|个[ge4]#4994. 小声[xiao3 sheng1] (小#16 声#796) in a low voice; (speak) in whispers#4995. 歧[qi2] (止#92 支#634) divergent; side road#4996. 陶[tao2] (阝#46 匋#1965) surname Tao; pottery; pleased#4997. 老弟[lao3 di4] (老#372 弟#756) (affectionate form of address for a male who is not very much younger than oneself) my boy; old pal#4998. 皇后[huang2 hou4] (皇#2333 后#270) empress; imperial consort#4999. 但愿[dan4 yuan4] (但#218 愿#1162) if only (sth were possible); I wish (that)#5000. 人力[ren2 li4] (人#6 力#78) manpower; labor power
\ No newline at end of file diff --git a/tests/Language/Chinese/size.golden b/tests/Language/Chinese/size.golden deleted file mode 100644 index c227083..0000000 --- a/tests/Language/Chinese/size.golden +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/tests/Language/ChineseSpec.hs b/tests/Language/ChineseSpec.hs index e57dbd3..0e34b9b 100644 --- a/tests/Language/ChineseSpec.hs +++ b/tests/Language/ChineseSpec.hs @@ -26,7 +26,9 @@ import Data.Validity.Map () import Data.Validity.Set () import Data.Validity.Text () import GHC.Stack (HasCallStack) +import Paths_worksheets qualified as Self import System.FilePath (joinPath, pathSeparator, (<.>), ()) +import System.FilePath.Posix qualified as File import Test.Syd import Text.Show (Show (..)) @@ -34,7 +36,7 @@ import Language.Chinese (ChineseDict (..), ChineseDictEntries (..), unChineseDic import Language.Chinese qualified as Chinese import Worksheets.Utils.Prelude -getGoldenPath title = do +getGoldenPath title ext = do descrPath <- getTestDescriptionPath let dirPath = List.reverse descrPath @@ -43,38 +45,44 @@ getGoldenPath title = do (Text.pack ".") (Text.singleton pathSeparator) & joinPath - return $ "tests" dirPath title <.> "golden" + return $ "tests" dirPath title <.> ext -goldenShowWithOuter :: Show a => String -> (outer -> a) -> TestDefM (outer : outers) () () -goldenShowWithOuter title run = do - outPath <- getGoldenPath title +goldenShowWithOuter :: Show a => String -> String -> (outer -> a) -> TestDefM (outer : outers) () () +goldenShowWithOuter title ext run = do + outPath <- getGoldenPath title ext itWithOuter title \outer -> do goldenPrettyShowInstance outPath $ run outer -goldenBuilderWithOuter :: String -> (outer -> Builder.Builder) -> TestDefM (outer : outers) () () -goldenBuilderWithOuter title run = do - outPath <- getGoldenPath title +goldenBuilderWithOuter :: String -> String -> (outer -> Builder.Builder) -> TestDefM (outer : outers) () () +goldenBuilderWithOuter title ext run = do + outPath <- getGoldenPath title ext itWithOuter title \outer -> do pureGoldenByteStringBuilderFile outPath $ run outer spec :: HasCallStack => Spec spec = - aroundAll (\k -> Chinese.readChineseLexicalDatabase >>= k) do - goldenShowWithOuter "size" $ unChineseDict >>> Map.size - goldenShowWithOuter "keyLengthToSumOfEntries" $ Chinese.keyLengthToSumOfEntries - goldenShowWithOuter "keysWithoutStrokes" keysWithoutStrokes - goldenShowWithOuter "keysWithoutDecomp" keysWithoutDecomp - goldenShowWithOuter "keysWithoutFreq" $ keysWithoutFreq >>> Set.size + aroundAll (\k -> Chinese.readChineseDict >>= k) do + {- + goldenShowWithOuter "size" "txt" $ unChineseDict >>> Map.size + goldenShowWithOuter "keyLengthToSumOfEntries" "txt" $ Chinese.keyLengthToSumOfEntries + goldenShowWithOuter "keysWithoutStrokes" "txt" keysWithoutStrokes + goldenShowWithOuter "keysWithoutDecomp" "txt" keysWithoutDecomp + goldenShowWithOuter "keysWithoutFreq" "txt" $ keysWithoutFreq >>> Set.size describe "dictToWeights" do aroundAllWith (\k dict -> k (Chinese.dictToWeights dict)) do - goldenShowWithOuter "size" $ Chinese.weightsMap >>> Map.size - goldenShowWithOuter "take_10" $ Chinese.weightsMap >>> Map.take 10 + goldenShowWithOuter "size" "txt" $ Chinese.weightsMap >>> Map.size + goldenShowWithOuter "take_10" "txt" $ Chinese.weightsMap >>> Map.take 10 describe "dictOrder" do aroundAllWith (\k weights -> k ((Chinese.dictOrder weights))) do - goldenBuilderWithOuter "all" chineseOrderTsv - goldenBuilderWithOuter "take_10" $ Chinese.unChineseOrder >>> Map.take 10 >>> Chinese.ChineseOrder >>> chineseOrderTsv + goldenBuilderWithOuter "all" "tsv" chineseOrderTsv + goldenBuilderWithOuter "take_10" "tsv" $ Chinese.unChineseOrder >>> Map.take 10 >>> Chinese.ChineseOrder >>> chineseOrderTsv + -} + outPath <- getGoldenPath "order.5000" "html" + itWithOuter "order" \dict -> do + goldenByteStringBuilderFile outPath do + Chinese.orderHTML (Just 5000) dict chineseOrderTsv :: Chinese.ChineseOrder -> Builder.Builder chineseOrderTsv (Chinese.ChineseOrder o) = @@ -84,7 +92,7 @@ chineseOrderTsv (Chinese.ChineseOrder o) = , key & ShortText.unpack & Builder.stringUtf8 , "\n" ] - & mconcat + & mconcat | (Down weight, keyToBC) <- o & Map.toList , key <- keyToBC & Chinese.weightsMap & Map.keys ] diff --git a/tests/Spec.hs b/tests/Spec.hs index ea7a011..76b4772 100644 --- a/tests/Spec.hs +++ b/tests/Spec.hs @@ -24,24 +24,25 @@ spec = do -- MathSpec.spec -- WiktionarySpec.spec - -- xdescribe "Language" do - -- describe "Chinese" do - -- Language.ChineseSpec.spec - withTimeout 3000000 do - withoutRetries do - -- describe "Language" do - -- describe "EnglishSpec" do - -- Language.EnglishSpec.spec - describe "FrenchSpec" do - Language.FrenchSpec.spec - - withoutRetries do - describe "Rosetta" do - describe "MatchingSpec" do - Rosetta.MatchingSpec.spec - - describe "ReadingSpec" do - Rosetta.ReadingSpec.spec + describe "Language" do + describe "Chinese" do + Language.ChineseSpec.spec + +-- withTimeout 3000000 do +-- withoutRetries do +-- -- describe "Language" do +-- -- describe "EnglishSpec" do +-- -- Language.EnglishSpec.spec +-- describe "FrenchSpec" do +-- Language.FrenchSpec.spec + +-- withoutRetries do +-- describe "Rosetta" do +-- describe "MatchingSpec" do +-- Rosetta.MatchingSpec.spec + +-- describe "ReadingSpec" do +-- Rosetta.ReadingSpec.spec -- --describe "WritingSpec" do -- Rosetta.WritingSpec.spec -- 2.49.0