HSK_Level_2_(New_HSK).csv.xml 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <HSK-newtable>
  3. <enregistrement>
  4. <hanzi>爱</hanzi>
  5. <traditional>愛</traditional>
  6. <pinyin>ài</pinyin>
  7. <translation>to love / affection / to be fond of / to like</translation>
  8. <classifier/>
  9. <lesson>HSK2</lesson>
  10. <sound>[sound:##]</sound>
  11. <origin>HSK New</origin>
  12. </enregistrement>
  13. <enregistrement>
  14. <hanzi>八</hanzi>
  15. <traditional>八</traditional>
  16. <pinyin>bā</pinyin>
  17. <translation>eight / 8</translation>
  18. <classifier/>
  19. <lesson>HSK2</lesson>
  20. <sound>[sound:##]</sound>
  21. <origin>HSK New</origin>
  22. </enregistrement>
  23. <enregistrement>
  24. <hanzi>爸爸</hanzi>
  25. <traditional>爸爸</traditional>
  26. <pinyin>bà ba</pinyin>
  27. <translation>(informal) father / CL:個|个[ge4],位[wei4]</translation>
  28. <classifier/>
  29. <lesson>HSK2</lesson>
  30. <sound>[sound:##]</sound>
  31. <origin>HSK New</origin>
  32. </enregistrement>
  33. <enregistrement>
  34. <hanzi>吧</hanzi>
  35. <traditional>吧</traditional>
  36. <pinyin>ba</pinyin>
  37. <translation>(modal particle indicating polite suggestion) / ...right? / ...OK?</translation>
  38. <classifier/>
  39. <lesson>HSK2</lesson>
  40. <sound>[sound:##]</sound>
  41. <origin>HSK New</origin>
  42. </enregistrement>
  43. <enregistrement>
  44. <hanzi>白</hanzi>
  45. <traditional>白</traditional>
  46. <pinyin>bái</pinyin>
  47. <translation>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 / surname Bai</translation>
  48. <classifier/>
  49. <lesson>HSK2</lesson>
  50. <sound>[sound:##]</sound>
  51. <origin>HSK New</origin>
  52. </enregistrement>
  53. <enregistrement>
  54. <hanzi>百</hanzi>
  55. <traditional>百</traditional>
  56. <pinyin>bǎi</pinyin>
  57. <translation>hundred / numerous / all kinds of / surname Bai</translation>
  58. <classifier/>
  59. <lesson>HSK2</lesson>
  60. <sound>[sound:##]</sound>
  61. <origin>HSK New</origin>
  62. </enregistrement>
  63. <enregistrement>
  64. <hanzi>帮助</hanzi>
  65. <traditional>幫助</traditional>
  66. <pinyin>bāng zhù</pinyin>
  67. <translation>assistance / aid / to help / to assist</translation>
  68. <classifier/>
  69. <lesson>HSK2</lesson>
  70. <sound>[sound:##]</sound>
  71. <origin>HSK New</origin>
  72. </enregistrement>
  73. <enregistrement>
  74. <hanzi>报纸</hanzi>
  75. <traditional>報紙</traditional>
  76. <pinyin>bào zhǐ</pinyin>
  77. <translation>newspaper / newsprint / CL:份[fen4],期[qi1],張|张[zhang1]</translation>
  78. <classifier/>
  79. <lesson>HSK2</lesson>
  80. <sound>[sound:##]</sound>
  81. <origin>HSK New</origin>
  82. </enregistrement>
  83. <enregistrement>
  84. <hanzi>杯子</hanzi>
  85. <traditional>杯子</traditional>
  86. <pinyin>bēi zi</pinyin>
  87. <translation>cup / glass / CL:個|个[ge4],支[zhi1],枝[zhi1]</translation>
  88. <classifier/>
  89. <lesson>HSK2</lesson>
  90. <sound>[sound:##]</sound>
  91. <origin>HSK New</origin>
  92. </enregistrement>
  93. <enregistrement>
  94. <hanzi>北京</hanzi>
  95. <traditional>北京</traditional>
  96. <pinyin>běi jīng</pinyin>
  97. <translation>Beijing, capital of People's Republic of China / Peking / PRC government</translation>
  98. <classifier/>
  99. <lesson>HSK2</lesson>
  100. <sound>[sound:##]</sound>
  101. <origin>HSK New</origin>
  102. </enregistrement>
  103. <enregistrement>
  104. <hanzi>本</hanzi>
  105. <traditional>本</traditional>
  106. <pinyin>běn</pinyin>
  107. <translation>roots or stems of plants / origin / source / this / the current / root / foundation / basis / classifier for books, periodicals, files etc / originally</translation>
  108. <classifier/>
  109. <lesson>HSK2</lesson>
  110. <sound>[sound:##]</sound>
  111. <origin>HSK New</origin>
  112. </enregistrement>
  113. <enregistrement>
  114. <hanzi>比</hanzi>
  115. <traditional>比</traditional>
  116. <pinyin>bǐ</pinyin>
  117. <translation>(particle used for comparison and "-er than") / to compare / to contrast / to gesture (with hands) / ratio</translation>
  118. <classifier/>
  119. <lesson>HSK2</lesson>
  120. <sound>[sound:##]</sound>
  121. <origin>HSK New</origin>
  122. </enregistrement>
  123. <enregistrement>
  124. <hanzi>别</hanzi>
  125. <traditional>別</traditional>
  126. <pinyin>bié</pinyin>
  127. <translation>to leave / to depart / to separate / to distinguish / to classify / other / another / do not / must not / to pin</translation>
  128. <classifier/>
  129. <lesson>HSK2</lesson>
  130. <sound>[sound:##]</sound>
  131. <origin>HSK New</origin>
  132. </enregistrement>
  133. <enregistrement>
  134. <hanzi>不客气</hanzi>
  135. <traditional>不客氣</traditional>
  136. <pinyin>bù kè qi</pinyin>
  137. <translation>you're welcome / impolite / rude / blunt / don't mention it</translation>
  138. <classifier/>
  139. <lesson>HSK2</lesson>
  140. <sound>[sound:##]</sound>
  141. <origin>HSK New</origin>
  142. </enregistrement>
  143. <enregistrement>
  144. <hanzi>不</hanzi>
  145. <traditional>不</traditional>
  146. <pinyin>bù</pinyin>
  147. <translation>(negative prefix) / not / no</translation>
  148. <classifier/>
  149. <lesson>HSK2</lesson>
  150. <sound>[sound:##]</sound>
  151. <origin>HSK New</origin>
  152. </enregistrement>
  153. <enregistrement>
  154. <hanzi>菜</hanzi>
  155. <traditional>菜</traditional>
  156. <pinyin>cài</pinyin>
  157. <translation>dish (type of food) / vegetables / vegetable / cuisine / CL:盤|盘[pan2],道[dao4]</translation>
  158. <classifier/>
  159. <lesson>HSK2</lesson>
  160. <sound>[sound:##]</sound>
  161. <origin>HSK New</origin>
  162. </enregistrement>
  163. <enregistrement>
  164. <hanzi>茶</hanzi>
  165. <traditional>茶</traditional>
  166. <pinyin>chá</pinyin>
  167. <translation>tea / tea plant / CL:杯[bei1],壺|壶[hu2]</translation>
  168. <classifier/>
  169. <lesson>HSK2</lesson>
  170. <sound>[sound:##]</sound>
  171. <origin>HSK New</origin>
  172. </enregistrement>
  173. <enregistrement>
  174. <hanzi>长</hanzi>
  175. <traditional>長</traditional>
  176. <pinyin>cháng</pinyin>
  177. <translation>length / long / forever / always / constantly</translation>
  178. <classifier/>
  179. <lesson>HSK2</lesson>
  180. <sound>[sound:##]</sound>
  181. <origin>HSK New</origin>
  182. </enregistrement>
  183. <enregistrement>
  184. <hanzi>唱歌</hanzi>
  185. <traditional>唱歌</traditional>
  186. <pinyin>chàng gē</pinyin>
  187. <translation>to sing a song</translation>
  188. <classifier/>
  189. <lesson>HSK2</lesson>
  190. <sound>[sound:##]</sound>
  191. <origin>HSK New</origin>
  192. </enregistrement>
  193. <enregistrement>
  194. <hanzi>吃</hanzi>
  195. <traditional>吃</traditional>
  196. <pinyin>chī</pinyin>
  197. <translation>to eat / to have one's meal / to eradicate / to destroy / to absorb / to suffer / to exhaust</translation>
  198. <classifier/>
  199. <lesson>HSK2</lesson>
  200. <sound>[sound:##]</sound>
  201. <origin>HSK New</origin>
  202. </enregistrement>
  203. <enregistrement>
  204. <hanzi>出</hanzi>
  205. <traditional>出</traditional>
  206. <pinyin>chū</pinyin>
  207. <translation>to go out / to come out / to occur / to produce / to go beyond / to rise / to put forth / to happen / classifier for dramas, plays, operas etc</translation>
  208. <classifier/>
  209. <lesson>HSK2</lesson>
  210. <sound>[sound:##]</sound>
  211. <origin>HSK New</origin>
  212. </enregistrement>
  213. <enregistrement>
  214. <hanzi>出租车</hanzi>
  215. <traditional>出租車</traditional>
  216. <pinyin>chū zū chē</pinyin>
  217. <translation>taxi</translation>
  218. <classifier/>
  219. <lesson>HSK2</lesson>
  220. <sound>[sound:##]</sound>
  221. <origin>HSK New</origin>
  222. </enregistrement>
  223. <enregistrement>
  224. <hanzi>穿</hanzi>
  225. <traditional>穿</traditional>
  226. <pinyin>chuān</pinyin>
  227. <translation>to bore through / pierce / perforate / penetrate / pass through / to dress / to wear / to put on / to thread</translation>
  228. <classifier/>
  229. <lesson>HSK2</lesson>
  230. <sound>[sound:##]</sound>
  231. <origin>HSK New</origin>
  232. </enregistrement>
  233. <enregistrement>
  234. <hanzi>船</hanzi>
  235. <traditional>船</traditional>
  236. <pinyin>chuán</pinyin>
  237. <translation>a boat / vessel / ship / CL:條|条[tiao2],艘[sou1],隻|只[zhi1]</translation>
  238. <classifier/>
  239. <lesson>HSK2</lesson>
  240. <sound>[sound:##]</sound>
  241. <origin>HSK New</origin>
  242. </enregistrement>
  243. <enregistrement>
  244. <hanzi>次</hanzi>
  245. <traditional>次</traditional>
  246. <pinyin>cì</pinyin>
  247. <translation>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</translation>
  248. <classifier/>
  249. <lesson>HSK2</lesson>
  250. <sound>[sound:##]</sound>
  251. <origin>HSK New</origin>
  252. </enregistrement>
  253. <enregistrement>
  254. <hanzi>从</hanzi>
  255. <traditional>從</traditional>
  256. <pinyin>cóng</pinyin>
  257. <translation>from / via / passing through / through (a gap) / past / ever (followed by negative, meaning never) / (formerly pr. zong4 and related to 縱|纵) to follow / to comply with / to obey / to join / to engage in / adopting some mode of action or attitude / follower / retainer / accessory / accomplice / related by common paternal grandfather or earlier ancestor / surname Cong</translation>
  258. <classifier/>
  259. <lesson>HSK2</lesson>
  260. <sound>[sound:##]</sound>
  261. <origin>HSK New</origin>
  262. </enregistrement>
  263. <enregistrement>
  264. <hanzi>错</hanzi>
  265. <traditional>錯</traditional>
  266. <pinyin>cuò</pinyin>
  267. <translation>mistake / error / blunder / fault / cross / uneven / wrong / CL:個|个[ge4]</translation>
  268. <classifier/>
  269. <lesson>HSK2</lesson>
  270. <sound>[sound:##]</sound>
  271. <origin>HSK New</origin>
  272. </enregistrement>
  273. <enregistrement>
  274. <hanzi>打电话</hanzi>
  275. <traditional>打電話</traditional>
  276. <pinyin>dǎ diàn huà</pinyin>
  277. <translation>to make a telephone call</translation>
  278. <classifier/>
  279. <lesson>HSK2</lesson>
  280. <sound>[sound:##]</sound>
  281. <origin>HSK New</origin>
  282. </enregistrement>
  283. <enregistrement>
  284. <hanzi>打篮球</hanzi>
  285. <traditional>打籃球</traditional>
  286. <pinyin>dǎ lán qiú</pinyin>
  287. <translation>play basketball</translation>
  288. <classifier/>
  289. <lesson>HSK2</lesson>
  290. <sound>[sound:##]</sound>
  291. <origin>HSK New</origin>
  292. </enregistrement>
  293. <enregistrement>
  294. <hanzi>大</hanzi>
  295. <traditional>大</traditional>
  296. <pinyin>dà</pinyin>
  297. <translation>big / huge / large / major / great / wide / deep / oldest / eldest</translation>
  298. <classifier/>
  299. <lesson>HSK2</lesson>
  300. <sound>[sound:##]</sound>
  301. <origin>HSK New</origin>
  302. </enregistrement>
  303. <enregistrement>
  304. <hanzi>大家</hanzi>
  305. <traditional>大家</traditional>
  306. <pinyin>dà jiā</pinyin>
  307. <translation>authority / everyone</translation>
  308. <classifier/>
  309. <lesson>HSK2</lesson>
  310. <sound>[sound:##]</sound>
  311. <origin>HSK New</origin>
  312. </enregistrement>
  313. <enregistrement>
  314. <hanzi>但是</hanzi>
  315. <traditional>但是</traditional>
  316. <pinyin>dàn shì</pinyin>
  317. <translation>but / however</translation>
  318. <classifier/>
  319. <lesson>HSK2</lesson>
  320. <sound>[sound:##]</sound>
  321. <origin>HSK New</origin>
  322. </enregistrement>
  323. <enregistrement>
  324. <hanzi>到</hanzi>
  325. <traditional>到</traditional>
  326. <pinyin>dào</pinyin>
  327. <translation>to (a place) / until (a time) / up to / to go / to arrive</translation>
  328. <classifier/>
  329. <lesson>HSK2</lesson>
  330. <sound>[sound:##]</sound>
  331. <origin>HSK New</origin>
  332. </enregistrement>
  333. <enregistrement>
  334. <hanzi>的</hanzi>
  335. <traditional>的</traditional>
  336. <pinyin>de</pinyin>
  337. <translation>of / structural particle: used before a noun, linking it to preceding possessive or descriptive attributive</translation>
  338. <classifier/>
  339. <lesson>HSK2</lesson>
  340. <sound>[sound:##]</sound>
  341. <origin>HSK New</origin>
  342. </enregistrement>
  343. <enregistrement>
  344. <hanzi>得</hanzi>
  345. <traditional>得</traditional>
  346. <pinyin>de</pinyin>
  347. <translation>structural particle: used after a verb (or adjective as main verb), linking it to following phrase indicating effect, degree, possibility etc</translation>
  348. <classifier/>
  349. <lesson>HSK2</lesson>
  350. <sound>[sound:##]</sound>
  351. <origin>HSK New</origin>
  352. </enregistrement>
  353. <enregistrement>
  354. <hanzi>等</hanzi>
  355. <traditional>等</traditional>
  356. <pinyin>děng</pinyin>
  357. <translation>class / rank / grade / equal to / same as / to wait for / to await / et cetera / and so on / et al. (and other authors) / after / as soon as / once</translation>
  358. <classifier/>
  359. <lesson>HSK2</lesson>
  360. <sound>[sound:##]</sound>
  361. <origin>HSK New</origin>
  362. </enregistrement>
  363. <enregistrement>
  364. <hanzi>弟弟</hanzi>
  365. <traditional>弟弟</traditional>
  366. <pinyin>dì di</pinyin>
  367. <translation>younger brother / CL:個|个[ge4],位[wei4]</translation>
  368. <classifier/>
  369. <lesson>HSK2</lesson>
  370. <sound>[sound:##]</sound>
  371. <origin>HSK New</origin>
  372. </enregistrement>
  373. <enregistrement>
  374. <hanzi>第一</hanzi>
  375. <traditional>第一</traditional>
  376. <pinyin>dì yī</pinyin>
  377. <translation>first / number one</translation>
  378. <classifier/>
  379. <lesson>HSK2</lesson>
  380. <sound>[sound:##]</sound>
  381. <origin>HSK New</origin>
  382. </enregistrement>
  383. <enregistrement>
  384. <hanzi>点</hanzi>
  385. <traditional>點</traditional>
  386. <pinyin>diǎn</pinyin>
  387. <translation>drop (of liquid) / stain / spot / speck / jot / dot stroke (in Chinese characters) / decimal point / point / mark (of degree or level) / a place (with certain characteristics) / iron bell / o’clock / a little / a bit / some / (point) unit of measurement for type / to touch on briefly / to make clear / to light / to ignite / to kindle / period of time at night (24 minutes) (old) / a drip / to dibble / classifier for small indeterminate quantities</translation>
  388. <classifier/>
  389. <lesson>HSK2</lesson>
  390. <sound>[sound:##]</sound>
  391. <origin>HSK New</origin>
  392. </enregistrement>
  393. <enregistrement>
  394. <hanzi>电脑</hanzi>
  395. <traditional>電腦</traditional>
  396. <pinyin>diàn nǎo</pinyin>
  397. <translation>computer / CL:臺|台[tai2]</translation>
  398. <classifier/>
  399. <lesson>HSK2</lesson>
  400. <sound>[sound:##]</sound>
  401. <origin>HSK New</origin>
  402. </enregistrement>
  403. <enregistrement>
  404. <hanzi>电视</hanzi>
  405. <traditional>電視</traditional>
  406. <pinyin>diàn shì</pinyin>
  407. <translation>television / TV / CL:臺|台[tai2],個|个[ge4]</translation>
  408. <classifier/>
  409. <lesson>HSK2</lesson>
  410. <sound>[sound:##]</sound>
  411. <origin>HSK New</origin>
  412. </enregistrement>
  413. <enregistrement>
  414. <hanzi>电影</hanzi>
  415. <traditional>電影</traditional>
  416. <pinyin>diàn yǐng</pinyin>
  417. <translation>movie / film / CL:部[bu4],片[pian4],幕[mu4],場|场[chang3]</translation>
  418. <classifier/>
  419. <lesson>HSK2</lesson>
  420. <sound>[sound:##]</sound>
  421. <origin>HSK New</origin>
  422. </enregistrement>
  423. <enregistrement>
  424. <hanzi>东西</hanzi>
  425. <traditional>東西</traditional>
  426. <pinyin>dōng xi</pinyin>
  427. <translation>thing / stuff / person / CL:個|个[ge4],件[jian4]</translation>
  428. <classifier/>
  429. <lesson>HSK2</lesson>
  430. <sound>[sound:##]</sound>
  431. <origin>HSK New</origin>
  432. </enregistrement>
  433. <enregistrement>
  434. <hanzi>懂</hanzi>
  435. <traditional>懂</traditional>
  436. <pinyin>dǒng</pinyin>
  437. <translation>to understand / to know</translation>
  438. <classifier/>
  439. <lesson>HSK2</lesson>
  440. <sound>[sound:##]</sound>
  441. <origin>HSK New</origin>
  442. </enregistrement>
  443. <enregistrement>
  444. <hanzi>都</hanzi>
  445. <traditional>都</traditional>
  446. <pinyin>dōu</pinyin>
  447. <translation>all, both / entirely (due to) each / even / already</translation>
  448. <classifier/>
  449. <lesson>HSK2</lesson>
  450. <sound>[sound:##]</sound>
  451. <origin>HSK New</origin>
  452. </enregistrement>
  453. <enregistrement>
  454. <hanzi>读</hanzi>
  455. <traditional>讀</traditional>
  456. <pinyin>dú</pinyin>
  457. <translation>to read / to study / reading of word (i.e. pronunciation), similar to 拼音[pin1 yin1]</translation>
  458. <classifier/>
  459. <lesson>HSK2</lesson>
  460. <sound>[sound:##]</sound>
  461. <origin>HSK New</origin>
  462. </enregistrement>
  463. <enregistrement>
  464. <hanzi>对</hanzi>
  465. <traditional>對</traditional>
  466. <pinyin>duì</pinyin>
  467. <translation>couple / pair / to be opposite / to oppose / to face / versus / for / to / correct (answer) / to answer / to reply / to direct (towards sth) / right</translation>
  468. <classifier/>
  469. <lesson>HSK2</lesson>
  470. <sound>[sound:##]</sound>
  471. <origin>HSK New</origin>
  472. </enregistrement>
  473. <enregistrement>
  474. <hanzi>对不起</hanzi>
  475. <traditional>對不起</traditional>
  476. <pinyin>duì bu qǐ</pinyin>
  477. <translation>unworthy / to let down / I'm sorry / excuse me / pardon me / if you please / sorry? (please repeat)</translation>
  478. <classifier/>
  479. <lesson>HSK2</lesson>
  480. <sound>[sound:##]</sound>
  481. <origin>HSK New</origin>
  482. </enregistrement>
  483. <enregistrement>
  484. <hanzi>多</hanzi>
  485. <traditional>多</traditional>
  486. <pinyin>duō</pinyin>
  487. <translation>many / much / a lot of / numerous / multi-</translation>
  488. <classifier/>
  489. <lesson>HSK2</lesson>
  490. <sound>[sound:##]</sound>
  491. <origin>HSK New</origin>
  492. </enregistrement>
  493. <enregistrement>
  494. <hanzi>多少</hanzi>
  495. <traditional>多少</traditional>
  496. <pinyin>duō shǎo</pinyin>
  497. <translation>number / amount / somewhat</translation>
  498. <classifier/>
  499. <lesson>HSK2</lesson>
  500. <sound>[sound:##]</sound>
  501. <origin>HSK New</origin>
  502. </enregistrement>
  503. <enregistrement>
  504. <hanzi>儿子</hanzi>
  505. <traditional>兒子</traditional>
  506. <pinyin>ér zi</pinyin>
  507. <translation>son</translation>
  508. <classifier/>
  509. <lesson>HSK2</lesson>
  510. <sound>[sound:##]</sound>
  511. <origin>HSK New</origin>
  512. </enregistrement>
  513. <enregistrement>
  514. <hanzi>二</hanzi>
  515. <traditional>二</traditional>
  516. <pinyin>èr</pinyin>
  517. <translation>two / 2 / stupid (Beijing dialect)</translation>
  518. <classifier/>
  519. <lesson>HSK2</lesson>
  520. <sound>[sound:##]</sound>
  521. <origin>HSK New</origin>
  522. </enregistrement>
  523. <enregistrement>
  524. <hanzi>饭馆</hanzi>
  525. <traditional>飯館</traditional>
  526. <pinyin>fàn guǎn</pinyin>
  527. <translation>restaurant / CL:家[jia1]</translation>
  528. <classifier/>
  529. <lesson>HSK2</lesson>
  530. <sound>[sound:##]</sound>
  531. <origin>HSK New</origin>
  532. </enregistrement>
  533. <enregistrement>
  534. <hanzi>房间</hanzi>
  535. <traditional>房間</traditional>
  536. <pinyin>fáng jiān</pinyin>
  537. <translation>room / CL:間|间[jian1]</translation>
  538. <classifier/>
  539. <lesson>HSK2</lesson>
  540. <sound>[sound:##]</sound>
  541. <origin>HSK New</origin>
  542. </enregistrement>
  543. <enregistrement>
  544. <hanzi>非常</hanzi>
  545. <traditional>非常</traditional>
  546. <pinyin>fēi cháng</pinyin>
  547. <translation>unusual / extraordinary / extreme / very / exceptional</translation>
  548. <classifier/>
  549. <lesson>HSK2</lesson>
  550. <sound>[sound:##]</sound>
  551. <origin>HSK New</origin>
  552. </enregistrement>
  553. <enregistrement>
  554. <hanzi>飞机</hanzi>
  555. <traditional>飛機</traditional>
  556. <pinyin>fēi jī</pinyin>
  557. <translation>airplane / CL: 架[jia4]</translation>
  558. <classifier/>
  559. <lesson>HSK2</lesson>
  560. <sound>[sound:##]</sound>
  561. <origin>HSK New</origin>
  562. </enregistrement>
  563. <enregistrement>
  564. <hanzi>分钟</hanzi>
  565. <traditional>分鐘</traditional>
  566. <pinyin>fēn zhōng</pinyin>
  567. <translation>minute</translation>
  568. <classifier/>
  569. <lesson>HSK2</lesson>
  570. <sound>[sound:##]</sound>
  571. <origin>HSK New</origin>
  572. </enregistrement>
  573. <enregistrement>
  574. <hanzi>服务员</hanzi>
  575. <traditional>服務員</traditional>
  576. <pinyin>fú wù yuán</pinyin>
  577. <translation>waiter / waitress / attendant / customer service personnel / CL:個|个[ge4]</translation>
  578. <classifier/>
  579. <lesson>HSK2</lesson>
  580. <sound>[sound:##]</sound>
  581. <origin>HSK New</origin>
  582. </enregistrement>
  583. <enregistrement>
  584. <hanzi>高</hanzi>
  585. <traditional>高</traditional>
  586. <pinyin>gāo</pinyin>
  587. <translation>high / tall / above average / loud / your (honorific) / surname Gao</translation>
  588. <classifier/>
  589. <lesson>HSK2</lesson>
  590. <sound>[sound:##]</sound>
  591. <origin>HSK New</origin>
  592. </enregistrement>
  593. <enregistrement>
  594. <hanzi>高兴</hanzi>
  595. <traditional>高興</traditional>
  596. <pinyin>gāo xìng</pinyin>
  597. <translation>happy / glad / willing (to do sth) / in a cheerful mood</translation>
  598. <classifier/>
  599. <lesson>HSK2</lesson>
  600. <sound>[sound:##]</sound>
  601. <origin>HSK New</origin>
  602. </enregistrement>
  603. <enregistrement>
  604. <hanzi>告诉</hanzi>
  605. <traditional>告訴</traditional>
  606. <pinyin>gào su</pinyin>
  607. <translation>to tell / to inform / to let know</translation>
  608. <classifier/>
  609. <lesson>HSK2</lesson>
  610. <sound>[sound:##]</sound>
  611. <origin>HSK New</origin>
  612. </enregistrement>
  613. <enregistrement>
  614. <hanzi>哥哥</hanzi>
  615. <traditional>哥哥</traditional>
  616. <pinyin>gē ge</pinyin>
  617. <translation>older brother / CL:個|个[ge4],位[wei4]</translation>
  618. <classifier/>
  619. <lesson>HSK2</lesson>
  620. <sound>[sound:##]</sound>
  621. <origin>HSK New</origin>
  622. </enregistrement>
  623. <enregistrement>
  624. <hanzi>个</hanzi>
  625. <traditional>個</traditional>
  626. <pinyin>gè</pinyin>
  627. <translation>individual / this / that / size / classifier for people or objects in general</translation>
  628. <classifier/>
  629. <lesson>HSK2</lesson>
  630. <sound>[sound:##]</sound>
  631. <origin>HSK New</origin>
  632. </enregistrement>
  633. <enregistrement>
  634. <hanzi>给</hanzi>
  635. <traditional>給</traditional>
  636. <pinyin>gěi</pinyin>
  637. <translation>to / for / for the benefit of / to give / to allow / to do sth (for sb) / (passive particle)</translation>
  638. <classifier/>
  639. <lesson>HSK2</lesson>
  640. <sound>[sound:##]</sound>
  641. <origin>HSK New</origin>
  642. </enregistrement>
  643. <enregistrement>
  644. <hanzi>公共汽车</hanzi>
  645. <traditional>公共汽車</traditional>
  646. <pinyin>gōng gòng qì chē</pinyin>
  647. <translation>bus / CL:輛|辆[liang4],班[ban1]</translation>
  648. <classifier/>
  649. <lesson>HSK2</lesson>
  650. <sound>[sound:##]</sound>
  651. <origin>HSK New</origin>
  652. </enregistrement>
  653. <enregistrement>
  654. <hanzi>公斤</hanzi>
  655. <traditional>公斤</traditional>
  656. <pinyin>gōng jīn</pinyin>
  657. <translation>kilogram (kg)</translation>
  658. <classifier/>
  659. <lesson>HSK2</lesson>
  660. <sound>[sound:##]</sound>
  661. <origin>HSK New</origin>
  662. </enregistrement>
  663. <enregistrement>
  664. <hanzi>公司</hanzi>
  665. <traditional>公司</traditional>
  666. <pinyin>gōng sī</pinyin>
  667. <translation>(business) company / company / firm / corporation / incorporated / CL:家[jia1]</translation>
  668. <classifier/>
  669. <lesson>HSK2</lesson>
  670. <sound>[sound:##]</sound>
  671. <origin>HSK New</origin>
  672. </enregistrement>
  673. <enregistrement>
  674. <hanzi>工作</hanzi>
  675. <traditional>工作</traditional>
  676. <pinyin>gōng zuò</pinyin>
  677. <translation>job / work / construction / task / CL:個|个[ge4],份[fen4],項|项[xiang4]</translation>
  678. <classifier/>
  679. <lesson>HSK2</lesson>
  680. <sound>[sound:##]</sound>
  681. <origin>HSK New</origin>
  682. </enregistrement>
  683. <enregistrement>
  684. <hanzi>狗</hanzi>
  685. <traditional>狗</traditional>
  686. <pinyin>gǒu</pinyin>
  687. <translation>dog / CL:隻|只[zhi1],條|条[tiao2]</translation>
  688. <classifier/>
  689. <lesson>HSK2</lesson>
  690. <sound>[sound:##]</sound>
  691. <origin>HSK New</origin>
  692. </enregistrement>
  693. <enregistrement>
  694. <hanzi>贵</hanzi>
  695. <traditional>貴</traditional>
  696. <pinyin>guì</pinyin>
  697. <translation>expensive / noble / your (name) / precious</translation>
  698. <classifier/>
  699. <lesson>HSK2</lesson>
  700. <sound>[sound:##]</sound>
  701. <origin>HSK New</origin>
  702. </enregistrement>
  703. <enregistrement>
  704. <hanzi>过</hanzi>
  705. <traditional>過</traditional>
  706. <pinyin>guò</pinyin>
  707. <translation>(experienced action marker) / to cross / to go over / to pass (time) / to celebrate (a holiday) / to live / to get along / excessively / too- / surname Guo</translation>
  708. <classifier/>
  709. <lesson>HSK2</lesson>
  710. <sound>[sound:##]</sound>
  711. <origin>HSK New</origin>
  712. </enregistrement>
  713. <enregistrement>
  714. <hanzi>还</hanzi>
  715. <traditional>還</traditional>
  716. <pinyin>hái</pinyin>
  717. <translation>still / still in progress / still more / yet / even more / in addition / fairly / passably (good) / as early as / even / also / else</translation>
  718. <classifier/>
  719. <lesson>HSK2</lesson>
  720. <sound>[sound:##]</sound>
  721. <origin>HSK New</origin>
  722. </enregistrement>
  723. <enregistrement>
  724. <hanzi>孩子</hanzi>
  725. <traditional>孩子</traditional>
  726. <pinyin>hái zi</pinyin>
  727. <translation>child</translation>
  728. <classifier/>
  729. <lesson>HSK2</lesson>
  730. <sound>[sound:##]</sound>
  731. <origin>HSK New</origin>
  732. </enregistrement>
  733. <enregistrement>
  734. <hanzi>汉语</hanzi>
  735. <traditional>漢語</traditional>
  736. <pinyin>hàn yǔ</pinyin>
  737. <translation>Chinese language / CL:門|门[men2]</translation>
  738. <classifier/>
  739. <lesson>HSK2</lesson>
  740. <sound>[sound:##]</sound>
  741. <origin>HSK New</origin>
  742. </enregistrement>
  743. <enregistrement>
  744. <hanzi>好</hanzi>
  745. <traditional>好</traditional>
  746. <pinyin>hǎo</pinyin>
  747. <translation>good / well / proper / good to / easy to / very / so / (suffix indicating completion or readiness)</translation>
  748. <classifier/>
  749. <lesson>HSK2</lesson>
  750. <sound>[sound:##]</sound>
  751. <origin>HSK New</origin>
  752. </enregistrement>
  753. <enregistrement>
  754. <hanzi>好吃</hanzi>
  755. <traditional>好吃</traditional>
  756. <pinyin>hǎo chī</pinyin>
  757. <translation>tasty / delicious</translation>
  758. <classifier/>
  759. <lesson>HSK2</lesson>
  760. <sound>[sound:##]</sound>
  761. <origin>HSK New</origin>
  762. </enregistrement>
  763. <enregistrement>
  764. <hanzi>号</hanzi>
  765. <traditional>號</traditional>
  766. <pinyin>hào</pinyin>
  767. <translation>day of a month / (suffix used after) name of a ship / (ordinal) number</translation>
  768. <classifier/>
  769. <lesson>HSK2</lesson>
  770. <sound>[sound:##]</sound>
  771. <origin>HSK New</origin>
  772. </enregistrement>
  773. <enregistrement>
  774. <hanzi>喝</hanzi>
  775. <traditional>喝</traditional>
  776. <pinyin>hē</pinyin>
  777. <translation>to drink / to shout (a command) / My goodness!</translation>
  778. <classifier/>
  779. <lesson>HSK2</lesson>
  780. <sound>[sound:##]</sound>
  781. <origin>HSK New</origin>
  782. </enregistrement>
  783. <enregistrement>
  784. <hanzi>和</hanzi>
  785. <traditional>和</traditional>
  786. <pinyin>hé</pinyin>
  787. <translation>and / together with / with / sum / union / peace / harmony / surname He / Japanese related / Taiwan pr. han4</translation>
  788. <classifier/>
  789. <lesson>HSK2</lesson>
  790. <sound>[sound:##]</sound>
  791. <origin>HSK New</origin>
  792. </enregistrement>
  793. <enregistrement>
  794. <hanzi>黑</hanzi>
  795. <traditional>黑</traditional>
  796. <pinyin>hēi</pinyin>
  797. <translation>black / dark / abbr. for Heilongjiang 黑龍江|黑龙江 province in northeast China</translation>
  798. <classifier/>
  799. <lesson>HSK2</lesson>
  800. <sound>[sound:##]</sound>
  801. <origin>HSK New</origin>
  802. </enregistrement>
  803. <enregistrement>
  804. <hanzi>很</hanzi>
  805. <traditional>很</traditional>
  806. <pinyin>hěn</pinyin>
  807. <translation>(adverb of degree) / quite / very / awfully</translation>
  808. <classifier/>
  809. <lesson>HSK2</lesson>
  810. <sound>[sound:##]</sound>
  811. <origin>HSK New</origin>
  812. </enregistrement>
  813. <enregistrement>
  814. <hanzi>红</hanzi>
  815. <traditional>紅</traditional>
  816. <pinyin>hóng</pinyin>
  817. <translation>bonus / popular / red / revolutionary</translation>
  818. <classifier/>
  819. <lesson>HSK2</lesson>
  820. <sound>[sound:##]</sound>
  821. <origin>HSK New</origin>
  822. </enregistrement>
  823. <enregistrement>
  824. <hanzi>后面</hanzi>
  825. <traditional>後面</traditional>
  826. <pinyin>hòu mian</pinyin>
  827. <translation>rear / back / behind / later / afterwards</translation>
  828. <classifier/>
  829. <lesson>HSK2</lesson>
  830. <sound>[sound:##]</sound>
  831. <origin>HSK New</origin>
  832. </enregistrement>
  833. <enregistrement>
  834. <hanzi>欢迎</hanzi>
  835. <traditional>歡迎</traditional>
  836. <pinyin>huān yíng</pinyin>
  837. <translation>to welcome / welcome</translation>
  838. <classifier/>
  839. <lesson>HSK2</lesson>
  840. <sound>[sound:##]</sound>
  841. <origin>HSK New</origin>
  842. </enregistrement>
  843. <enregistrement>
  844. <hanzi>回</hanzi>
  845. <traditional>回</traditional>
  846. <pinyin>huí</pinyin>
  847. <translation>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)</translation>
  848. <classifier/>
  849. <lesson>HSK2</lesson>
  850. <sound>[sound:##]</sound>
  851. <origin>HSK New</origin>
  852. </enregistrement>
  853. <enregistrement>
  854. <hanzi>回答</hanzi>
  855. <traditional>回答</traditional>
  856. <pinyin>huí dá</pinyin>
  857. <translation>to reply / to answer / the answer / CL:個|个[ge4]</translation>
  858. <classifier/>
  859. <lesson>HSK2</lesson>
  860. <sound>[sound:##]</sound>
  861. <origin>HSK New</origin>
  862. </enregistrement>
  863. <enregistrement>
  864. <hanzi>会</hanzi>
  865. <traditional>會</traditional>
  866. <pinyin>huì</pinyin>
  867. <translation>can / be possible / be able to / will / be likely to / be sure to / to assemble / to meet / to gather / to see / union / group / association / CL:個|个[ge4] / a moment (Taiwan pr. for this sense is hui3)</translation>
  868. <classifier/>
  869. <lesson>HSK2</lesson>
  870. <sound>[sound:##]</sound>
  871. <origin>HSK New</origin>
  872. </enregistrement>
  873. <enregistrement>
  874. <hanzi>火车站</hanzi>
  875. <traditional>火車站</traditional>
  876. <pinyin>huǒ chē zhàn</pinyin>
  877. <translation>train station</translation>
  878. <classifier/>
  879. <lesson>HSK2</lesson>
  880. <sound>[sound:##]</sound>
  881. <origin>HSK New</origin>
  882. </enregistrement>
  883. <enregistrement>
  884. <hanzi>机场</hanzi>
  885. <traditional>機場</traditional>
  886. <pinyin>jī chǎng</pinyin>
  887. <translation>airport / airfield / CL:家[jia1],處|处[chu4]</translation>
  888. <classifier/>
  889. <lesson>HSK2</lesson>
  890. <sound>[sound:##]</sound>
  891. <origin>HSK New</origin>
  892. </enregistrement>
  893. <enregistrement>
  894. <hanzi>鸡蛋</hanzi>
  895. <traditional>雞蛋</traditional>
  896. <pinyin>jī dàn</pinyin>
  897. <translation>(chicken) egg / hen's egg / CL:個|个[ge4],打[da2]</translation>
  898. <classifier/>
  899. <lesson>HSK2</lesson>
  900. <sound>[sound:##]</sound>
  901. <origin>HSK New</origin>
  902. </enregistrement>
  903. <enregistrement>
  904. <hanzi>几</hanzi>
  905. <traditional>幾</traditional>
  906. <pinyin>jǐ</pinyin>
  907. <translation>how much / how many / several / a few</translation>
  908. <classifier/>
  909. <lesson>HSK2</lesson>
  910. <sound>[sound:##]</sound>
  911. <origin>HSK New</origin>
  912. </enregistrement>
  913. <enregistrement>
  914. <hanzi>家</hanzi>
  915. <traditional>家</traditional>
  916. <pinyin>jiā</pinyin>
  917. <translation>home / family / classifier for families or businesses / refers to the philosophical schools of pre-Han China / noun suffix for specialists in some activity such as musician or revolutionary, corresponds to English -ist, -er, -ary or -ian / surname Jia / CL:個|个[ge4]</translation>
  918. <classifier/>
  919. <lesson>HSK2</lesson>
  920. <sound>[sound:##]</sound>
  921. <origin>HSK New</origin>
  922. </enregistrement>
  923. <enregistrement>
  924. <hanzi>件</hanzi>
  925. <traditional>件</traditional>
  926. <pinyin>jiàn</pinyin>
  927. <translation>item / component / classifier for events, things, clothes etc</translation>
  928. <classifier/>
  929. <lesson>HSK2</lesson>
  930. <sound>[sound:##]</sound>
  931. <origin>HSK New</origin>
  932. </enregistrement>
  933. <enregistrement>
  934. <hanzi>叫</hanzi>
  935. <traditional>叫</traditional>
  936. <pinyin>jiào</pinyin>
  937. <translation>to shout / to call / to order / to ask / to be called / by (indicates agent in the passive mood)</translation>
  938. <classifier/>
  939. <lesson>HSK2</lesson>
  940. <sound>[sound:##]</sound>
  941. <origin>HSK New</origin>
  942. </enregistrement>
  943. <enregistrement>
  944. <hanzi>教室</hanzi>
  945. <traditional>教室</traditional>
  946. <pinyin>jiào shì</pinyin>
  947. <translation>classroom / CL:間|间[jian1]</translation>
  948. <classifier/>
  949. <lesson>HSK2</lesson>
  950. <sound>[sound:##]</sound>
  951. <origin>HSK New</origin>
  952. </enregistrement>
  953. <enregistrement>
  954. <hanzi>姐姐</hanzi>
  955. <traditional>姐姐</traditional>
  956. <pinyin>jiě jie</pinyin>
  957. <translation>older sister / CL:個|个[ge4]</translation>
  958. <classifier/>
  959. <lesson>HSK2</lesson>
  960. <sound>[sound:##]</sound>
  961. <origin>HSK New</origin>
  962. </enregistrement>
  963. <enregistrement>
  964. <hanzi>介绍</hanzi>
  965. <traditional>介紹</traditional>
  966. <pinyin>jiè shào</pinyin>
  967. <translation>to present / to introduce / to recommend / to suggest / to let know / to brief</translation>
  968. <classifier/>
  969. <lesson>HSK2</lesson>
  970. <sound>[sound:##]</sound>
  971. <origin>HSK New</origin>
  972. </enregistrement>
  973. <enregistrement>
  974. <hanzi>今天</hanzi>
  975. <traditional>今天</traditional>
  976. <pinyin>jīn tiān</pinyin>
  977. <translation>today / at the present / now</translation>
  978. <classifier/>
  979. <lesson>HSK2</lesson>
  980. <sound>[sound:##]</sound>
  981. <origin>HSK New</origin>
  982. </enregistrement>
  983. <enregistrement>
  984. <hanzi>进</hanzi>
  985. <traditional>進</traditional>
  986. <pinyin>jìn</pinyin>
  987. <translation>to advance / to enter / to come (or go) into / to receive or admit / to eat or drink / to submit or present / (used after a verb) into, in / to score a goal</translation>
  988. <classifier/>
  989. <lesson>HSK2</lesson>
  990. <sound>[sound:##]</sound>
  991. <origin>HSK New</origin>
  992. </enregistrement>
  993. <enregistrement>
  994. <hanzi>近</hanzi>
  995. <traditional>近</traditional>
  996. <pinyin>jìn</pinyin>
  997. <translation>near / close to / approximately</translation>
  998. <classifier/>
  999. <lesson>HSK2</lesson>
  1000. <sound>[sound:##]</sound>
  1001. <origin>HSK New</origin>
  1002. </enregistrement>
  1003. <enregistrement>
  1004. <hanzi>九</hanzi>
  1005. <traditional>九</traditional>
  1006. <pinyin>jiǔ</pinyin>
  1007. <translation>nine / 9</translation>
  1008. <classifier/>
  1009. <lesson>HSK2</lesson>
  1010. <sound>[sound:##]</sound>
  1011. <origin>HSK New</origin>
  1012. </enregistrement>
  1013. <enregistrement>
  1014. <hanzi>就</hanzi>
  1015. <traditional>就</traditional>
  1016. <pinyin>jiù</pinyin>
  1017. <translation>at once / right away / only / just (emphasis) / as early as / already / as soon as / then / in that case / as many as / even if / to approach / to move towards / to undertake / to engage in / to suffer / subjected to / to accomplish / to take advantage of / to go with (of foods) / with regard to / concerning</translation>
  1018. <classifier/>
  1019. <lesson>HSK2</lesson>
  1020. <sound>[sound:##]</sound>
  1021. <origin>HSK New</origin>
  1022. </enregistrement>
  1023. <enregistrement>
  1024. <hanzi>觉得</hanzi>
  1025. <traditional>覺得</traditional>
  1026. <pinyin>jué de</pinyin>
  1027. <translation>to think / to feel</translation>
  1028. <classifier/>
  1029. <lesson>HSK2</lesson>
  1030. <sound>[sound:##]</sound>
  1031. <origin>HSK New</origin>
  1032. </enregistrement>
  1033. <enregistrement>
  1034. <hanzi>咖啡</hanzi>
  1035. <traditional>咖啡</traditional>
  1036. <pinyin>kā fēi</pinyin>
  1037. <translation>coffee / CL:杯[bei1]</translation>
  1038. <classifier/>
  1039. <lesson>HSK2</lesson>
  1040. <sound>[sound:##]</sound>
  1041. <origin>HSK New</origin>
  1042. </enregistrement>
  1043. <enregistrement>
  1044. <hanzi>开</hanzi>
  1045. <traditional>開</traditional>
  1046. <pinyin>kāi</pinyin>
  1047. <translation>to open / to start / to turn on / to boil / to write out (a medical prescription) / to operate (vehicle) / abbr. for 開爾文|开尔文 degrees Kelvin</translation>
  1048. <classifier/>
  1049. <lesson>HSK2</lesson>
  1050. <sound>[sound:##]</sound>
  1051. <origin>HSK New</origin>
  1052. </enregistrement>
  1053. <enregistrement>
  1054. <hanzi>开始</hanzi>
  1055. <traditional>開始</traditional>
  1056. <pinyin>kāi shǐ</pinyin>
  1057. <translation>to begin / beginning / to start / initial / CL:個|个[ge4]</translation>
  1058. <classifier/>
  1059. <lesson>HSK2</lesson>
  1060. <sound>[sound:##]</sound>
  1061. <origin>HSK New</origin>
  1062. </enregistrement>
  1063. <enregistrement>
  1064. <hanzi>看</hanzi>
  1065. <traditional>看</traditional>
  1066. <pinyin>kān</pinyin>
  1067. <translation>to look after / to take care of / to watch / to guard</translation>
  1068. <classifier/>
  1069. <lesson>HSK2</lesson>
  1070. <sound>[sound:##]</sound>
  1071. <origin>HSK New</origin>
  1072. </enregistrement>
  1073. <enregistrement>
  1074. <hanzi>看见</hanzi>
  1075. <traditional>看見</traditional>
  1076. <pinyin>kàn jiàn</pinyin>
  1077. <translation>to see / to catch sight of</translation>
  1078. <classifier/>
  1079. <lesson>HSK2</lesson>
  1080. <sound>[sound:##]</sound>
  1081. <origin>HSK New</origin>
  1082. </enregistrement>
  1083. <enregistrement>
  1084. <hanzi>考试</hanzi>
  1085. <traditional>考試</traditional>
  1086. <pinyin>kǎo shì</pinyin>
  1087. <translation>exam / CL:次[ci4]</translation>
  1088. <classifier/>
  1089. <lesson>HSK2</lesson>
  1090. <sound>[sound:##]</sound>
  1091. <origin>HSK New</origin>
  1092. </enregistrement>
  1093. <enregistrement>
  1094. <hanzi>可能</hanzi>
  1095. <traditional>可能</traditional>
  1096. <pinyin>kě néng</pinyin>
  1097. <translation>might (happen) / possible / probable / possibility / probability / maybe / perhaps / CL:個|个[ge4]</translation>
  1098. <classifier/>
  1099. <lesson>HSK2</lesson>
  1100. <sound>[sound:##]</sound>
  1101. <origin>HSK New</origin>
  1102. </enregistrement>
  1103. <enregistrement>
  1104. <hanzi>可以</hanzi>
  1105. <traditional>可以</traditional>
  1106. <pinyin>kě yǐ</pinyin>
  1107. <translation>can / may / possible / able to</translation>
  1108. <classifier/>
  1109. <lesson>HSK2</lesson>
  1110. <sound>[sound:##]</sound>
  1111. <origin>HSK New</origin>
  1112. </enregistrement>
  1113. <enregistrement>
  1114. <hanzi>课</hanzi>
  1115. <traditional>課</traditional>
  1116. <pinyin>kè</pinyin>
  1117. <translation>subject / course / class / lesson / CL:堂[tang2],节|節[jie2],門|门[men2]</translation>
  1118. <classifier/>
  1119. <lesson>HSK2</lesson>
  1120. <sound>[sound:##]</sound>
  1121. <origin>HSK New</origin>
  1122. </enregistrement>
  1123. <enregistrement>
  1124. <hanzi>块</hanzi>
  1125. <traditional>塊</traditional>
  1126. <pinyin>kuài</pinyin>
  1127. <translation>lump (of earth) / chunk / piece / classifier for pieces of cloth, cake, soap etc / colloquial word for yuan (or other unit of currency such as Hong Kong or US dollar etc), usually as 塊錢|块钱</translation>
  1128. <classifier/>
  1129. <lesson>HSK2</lesson>
  1130. <sound>[sound:##]</sound>
  1131. <origin>HSK New</origin>
  1132. </enregistrement>
  1133. <enregistrement>
  1134. <hanzi>快</hanzi>
  1135. <traditional>快</traditional>
  1136. <pinyin>kuài</pinyin>
  1137. <translation>rapid / quick / speed / rate / soon / almost / to make haste / clever / sharp (of knives or wits) / forthright / plain-spoken / gratified / pleased / pleasant</translation>
  1138. <classifier/>
  1139. <lesson>HSK2</lesson>
  1140. <sound>[sound:##]</sound>
  1141. <origin>HSK New</origin>
  1142. </enregistrement>
  1143. <enregistrement>
  1144. <hanzi>快乐</hanzi>
  1145. <traditional>快樂</traditional>
  1146. <pinyin>kuài lè</pinyin>
  1147. <translation>happy / merry</translation>
  1148. <classifier/>
  1149. <lesson>HSK2</lesson>
  1150. <sound>[sound:##]</sound>
  1151. <origin>HSK New</origin>
  1152. </enregistrement>
  1153. <enregistrement>
  1154. <hanzi>来</hanzi>
  1155. <traditional>來</traditional>
  1156. <pinyin>lái</pinyin>
  1157. <translation>to come / to arrive / to come round / ever since / next</translation>
  1158. <classifier/>
  1159. <lesson>HSK2</lesson>
  1160. <sound>[sound:##]</sound>
  1161. <origin>HSK New</origin>
  1162. </enregistrement>
  1163. <enregistrement>
  1164. <hanzi>老师</hanzi>
  1165. <traditional>老師</traditional>
  1166. <pinyin>lǎo shī</pinyin>
  1167. <translation>teacher / CL:個|个[ge4],位[wei4]</translation>
  1168. <classifier/>
  1169. <lesson>HSK2</lesson>
  1170. <sound>[sound:##]</sound>
  1171. <origin>HSK New</origin>
  1172. </enregistrement>
  1173. <enregistrement>
  1174. <hanzi>了</hanzi>
  1175. <traditional>了</traditional>
  1176. <pinyin>le</pinyin>
  1177. <translation>(modal particle intensifying preceding clause) / (completed action marker)</translation>
  1178. <classifier/>
  1179. <lesson>HSK2</lesson>
  1180. <sound>[sound:##]</sound>
  1181. <origin>HSK New</origin>
  1182. </enregistrement>
  1183. <enregistrement>
  1184. <hanzi>累</hanzi>
  1185. <traditional>累</traditional>
  1186. <pinyin>lèi</pinyin>
  1187. <translation>tired / weary / to strain / to wear out / to work hard</translation>
  1188. <classifier/>
  1189. <lesson>HSK2</lesson>
  1190. <sound>[sound:##]</sound>
  1191. <origin>HSK New</origin>
  1192. </enregistrement>
  1193. <enregistrement>
  1194. <hanzi>冷</hanzi>
  1195. <traditional>冷</traditional>
  1196. <pinyin>lěng</pinyin>
  1197. <translation>cold</translation>
  1198. <classifier/>
  1199. <lesson>HSK2</lesson>
  1200. <sound>[sound:##]</sound>
  1201. <origin>HSK New</origin>
  1202. </enregistrement>
  1203. <enregistrement>
  1204. <hanzi>离</hanzi>
  1205. <traditional>離</traditional>
  1206. <pinyin>lí</pinyin>
  1207. <translation>to leave / to part from / to be away from / (in giving distances) from / without (sth) / independent of / one of the eight trigrams of the Book of Changes representing fire (old)</translation>
  1208. <classifier/>
  1209. <lesson>HSK2</lesson>
  1210. <sound>[sound:##]</sound>
  1211. <origin>HSK New</origin>
  1212. </enregistrement>
  1213. <enregistrement>
  1214. <hanzi>里</hanzi>
  1215. <traditional>裏</traditional>
  1216. <pinyin>lǐ</pinyin>
  1217. <translation>lining / interior / inside / internal / also written 裡|里 [li3]</translation>
  1218. <classifier/>
  1219. <lesson>HSK2</lesson>
  1220. <sound>[sound:##]</sound>
  1221. <origin>HSK New</origin>
  1222. </enregistrement>
  1223. <enregistrement>
  1224. <hanzi>两</hanzi>
  1225. <traditional>兩</traditional>
  1226. <pinyin>liǎng</pinyin>
  1227. <translation>both / two / ounce / some / a few / tael / weight equal to 50 grams</translation>
  1228. <classifier/>
  1229. <lesson>HSK2</lesson>
  1230. <sound>[sound:##]</sound>
  1231. <origin>HSK New</origin>
  1232. </enregistrement>
  1233. <enregistrement>
  1234. <hanzi>零</hanzi>
  1235. <traditional>零</traditional>
  1236. <pinyin>líng</pinyin>
  1237. <translation>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</translation>
  1238. <classifier/>
  1239. <lesson>HSK2</lesson>
  1240. <sound>[sound:##]</sound>
  1241. <origin>HSK New</origin>
  1242. </enregistrement>
  1243. <enregistrement>
  1244. <hanzi>六</hanzi>
  1245. <traditional>六</traditional>
  1246. <pinyin>liù</pinyin>
  1247. <translation>six / 6</translation>
  1248. <classifier/>
  1249. <lesson>HSK2</lesson>
  1250. <sound>[sound:##]</sound>
  1251. <origin>HSK New</origin>
  1252. </enregistrement>
  1253. <enregistrement>
  1254. <hanzi>路</hanzi>
  1255. <traditional>路</traditional>
  1256. <pinyin>lù</pinyin>
  1257. <translation>road / path / way / CL:條|条[tiao2]</translation>
  1258. <classifier/>
  1259. <lesson>HSK2</lesson>
  1260. <sound>[sound:##]</sound>
  1261. <origin>HSK New</origin>
  1262. </enregistrement>
  1263. <enregistrement>
  1264. <hanzi>旅游</hanzi>
  1265. <traditional>旅遊</traditional>
  1266. <pinyin>lǚ yóu</pinyin>
  1267. <translation>trip / journey / tourism / travel / tour</translation>
  1268. <classifier/>
  1269. <lesson>HSK2</lesson>
  1270. <sound>[sound:##]</sound>
  1271. <origin>HSK New</origin>
  1272. </enregistrement>
  1273. <enregistrement>
  1274. <hanzi>妈妈</hanzi>
  1275. <traditional>媽媽</traditional>
  1276. <pinyin>mā ma</pinyin>
  1277. <translation>mama / mommy / mother / CL:個|个[ge4],位[wei4]</translation>
  1278. <classifier/>
  1279. <lesson>HSK2</lesson>
  1280. <sound>[sound:##]</sound>
  1281. <origin>HSK New</origin>
  1282. </enregistrement>
  1283. <enregistrement>
  1284. <hanzi>吗</hanzi>
  1285. <traditional>嗎</traditional>
  1286. <pinyin>ma</pinyin>
  1287. <translation>(question tag)</translation>
  1288. <classifier/>
  1289. <lesson>HSK2</lesson>
  1290. <sound>[sound:##]</sound>
  1291. <origin>HSK New</origin>
  1292. </enregistrement>
  1293. <enregistrement>
  1294. <hanzi>买</hanzi>
  1295. <traditional>買</traditional>
  1296. <pinyin>mǎi</pinyin>
  1297. <translation>to buy / to purchase</translation>
  1298. <classifier/>
  1299. <lesson>HSK2</lesson>
  1300. <sound>[sound:##]</sound>
  1301. <origin>HSK New</origin>
  1302. </enregistrement>
  1303. <enregistrement>
  1304. <hanzi>卖</hanzi>
  1305. <traditional>賣</traditional>
  1306. <pinyin>mài</pinyin>
  1307. <translation>to sell / to betray / to spare no effort / to show off or flaunt</translation>
  1308. <classifier/>
  1309. <lesson>HSK2</lesson>
  1310. <sound>[sound:##]</sound>
  1311. <origin>HSK New</origin>
  1312. </enregistrement>
  1313. <enregistrement>
  1314. <hanzi>慢</hanzi>
  1315. <traditional>慢</traditional>
  1316. <pinyin>màn</pinyin>
  1317. <translation>slow</translation>
  1318. <classifier/>
  1319. <lesson>HSK2</lesson>
  1320. <sound>[sound:##]</sound>
  1321. <origin>HSK New</origin>
  1322. </enregistrement>
  1323. <enregistrement>
  1324. <hanzi>忙</hanzi>
  1325. <traditional>忙</traditional>
  1326. <pinyin>máng</pinyin>
  1327. <translation>busy / hurriedly</translation>
  1328. <classifier/>
  1329. <lesson>HSK2</lesson>
  1330. <sound>[sound:##]</sound>
  1331. <origin>HSK New</origin>
  1332. </enregistrement>
  1333. <enregistrement>
  1334. <hanzi>猫</hanzi>
  1335. <traditional>貓</traditional>
  1336. <pinyin>māo</pinyin>
  1337. <translation>cat / CL:隻|只[zhi1]</translation>
  1338. <classifier/>
  1339. <lesson>HSK2</lesson>
  1340. <sound>[sound:##]</sound>
  1341. <origin>HSK New</origin>
  1342. </enregistrement>
  1343. <enregistrement>
  1344. <hanzi>没</hanzi>
  1345. <traditional>沒</traditional>
  1346. <pinyin>méi</pinyin>
  1347. <translation>(negative prefix for verbs) / have not / not</translation>
  1348. <classifier/>
  1349. <lesson>HSK2</lesson>
  1350. <sound>[sound:##]</sound>
  1351. <origin>HSK New</origin>
  1352. </enregistrement>
  1353. <enregistrement>
  1354. <hanzi>没关系</hanzi>
  1355. <traditional>沒關係</traditional>
  1356. <pinyin>méi guān xi</pinyin>
  1357. <translation>it doesn't matter</translation>
  1358. <classifier/>
  1359. <lesson>HSK2</lesson>
  1360. <sound>[sound:##]</sound>
  1361. <origin>HSK New</origin>
  1362. </enregistrement>
  1363. <enregistrement>
  1364. <hanzi>每</hanzi>
  1365. <traditional>每</traditional>
  1366. <pinyin>měi</pinyin>
  1367. <translation>each / every</translation>
  1368. <classifier/>
  1369. <lesson>HSK2</lesson>
  1370. <sound>[sound:##]</sound>
  1371. <origin>HSK New</origin>
  1372. </enregistrement>
  1373. <enregistrement>
  1374. <hanzi>妹妹</hanzi>
  1375. <traditional>妹妹</traditional>
  1376. <pinyin>mèi mei</pinyin>
  1377. <translation>younger sister / fig. younger woman (esp. girl friend or rival) / CL:個|个[ge4]</translation>
  1378. <classifier/>
  1379. <lesson>HSK2</lesson>
  1380. <sound>[sound:##]</sound>
  1381. <origin>HSK New</origin>
  1382. </enregistrement>
  1383. <enregistrement>
  1384. <hanzi>门</hanzi>
  1385. <traditional>門</traditional>
  1386. <pinyin>mén</pinyin>
  1387. <translation>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</translation>
  1388. <classifier/>
  1389. <lesson>HSK2</lesson>
  1390. <sound>[sound:##]</sound>
  1391. <origin>HSK New</origin>
  1392. </enregistrement>
  1393. <enregistrement>
  1394. <hanzi>米饭</hanzi>
  1395. <traditional>米飯</traditional>
  1396. <pinyin>mǐ fàn</pinyin>
  1397. <translation>(cooked) rice</translation>
  1398. <classifier/>
  1399. <lesson>HSK2</lesson>
  1400. <sound>[sound:##]</sound>
  1401. <origin>HSK New</origin>
  1402. </enregistrement>
  1403. <enregistrement>
  1404. <hanzi>明天</hanzi>
  1405. <traditional>明天</traditional>
  1406. <pinyin>míng tiān</pinyin>
  1407. <translation>tomorrow</translation>
  1408. <classifier/>
  1409. <lesson>HSK2</lesson>
  1410. <sound>[sound:##]</sound>
  1411. <origin>HSK New</origin>
  1412. </enregistrement>
  1413. <enregistrement>
  1414. <hanzi>名字</hanzi>
  1415. <traditional>名字</traditional>
  1416. <pinyin>míng zi</pinyin>
  1417. <translation>name (of a person or thing) / CL:個|个[ge4]</translation>
  1418. <classifier/>
  1419. <lesson>HSK2</lesson>
  1420. <sound>[sound:##]</sound>
  1421. <origin>HSK New</origin>
  1422. </enregistrement>
  1423. <enregistrement>
  1424. <hanzi>哪</hanzi>
  1425. <traditional>哪</traditional>
  1426. <pinyin>nǎ</pinyin>
  1427. <translation>how / which</translation>
  1428. <classifier/>
  1429. <lesson>HSK2</lesson>
  1430. <sound>[sound:##]</sound>
  1431. <origin>HSK New</origin>
  1432. </enregistrement>
  1433. <enregistrement>
  1434. <hanzi>哪儿</hanzi>
  1435. <traditional>哪兒</traditional>
  1436. <pinyin>nǎ r</pinyin>
  1437. <translation>where? / wherever / anywhere</translation>
  1438. <classifier/>
  1439. <lesson>HSK2</lesson>
  1440. <sound>[sound:##]</sound>
  1441. <origin>HSK New</origin>
  1442. </enregistrement>
  1443. <enregistrement>
  1444. <hanzi>那</hanzi>
  1445. <traditional>那</traditional>
  1446. <pinyin>nà</pinyin>
  1447. <translation>that / those / then (in that case) / commonly pr. nei4 before a classifier, esp. in Beijing</translation>
  1448. <classifier/>
  1449. <lesson>HSK2</lesson>
  1450. <sound>[sound:##]</sound>
  1451. <origin>HSK New</origin>
  1452. </enregistrement>
  1453. <enregistrement>
  1454. <hanzi>那儿</hanzi>
  1455. <traditional>那兒</traditional>
  1456. <pinyin>nà r</pinyin>
  1457. <translation>there</translation>
  1458. <classifier/>
  1459. <lesson>HSK2</lesson>
  1460. <sound>[sound:##]</sound>
  1461. <origin>HSK New</origin>
  1462. </enregistrement>
  1463. <enregistrement>
  1464. <hanzi>男人</hanzi>
  1465. <traditional>男人</traditional>
  1466. <pinyin>nán rén</pinyin>
  1467. <translation>a man / a male / men / CL:個|个[ge4]</translation>
  1468. <classifier/>
  1469. <lesson>HSK2</lesson>
  1470. <sound>[sound:##]</sound>
  1471. <origin>HSK New</origin>
  1472. </enregistrement>
  1473. <enregistrement>
  1474. <hanzi>呢</hanzi>
  1475. <traditional>呢</traditional>
  1476. <pinyin>ne</pinyin>
  1477. <translation>(question particle for subjects already mentioned)</translation>
  1478. <classifier/>
  1479. <lesson>HSK2</lesson>
  1480. <sound>[sound:##]</sound>
  1481. <origin>HSK New</origin>
  1482. </enregistrement>
  1483. <enregistrement>
  1484. <hanzi>能</hanzi>
  1485. <traditional>能</traditional>
  1486. <pinyin>néng</pinyin>
  1487. <translation>to be able to / to be capable of / ability / capability / able / capable / can possibly / (usually used in the negative) to have the possibility of</translation>
  1488. <classifier/>
  1489. <lesson>HSK2</lesson>
  1490. <sound>[sound:##]</sound>
  1491. <origin>HSK New</origin>
  1492. </enregistrement>
  1493. <enregistrement>
  1494. <hanzi>你</hanzi>
  1495. <traditional>你</traditional>
  1496. <pinyin>nǐ</pinyin>
  1497. <translation>you (informal, as opposed to polite 您[nin2])</translation>
  1498. <classifier/>
  1499. <lesson>HSK2</lesson>
  1500. <sound>[sound:##]</sound>
  1501. <origin>HSK New</origin>
  1502. </enregistrement>
  1503. <enregistrement>
  1504. <hanzi>年</hanzi>
  1505. <traditional>年</traditional>
  1506. <pinyin>nián</pinyin>
  1507. <translation>year / CL:個|个[ge4]</translation>
  1508. <classifier/>
  1509. <lesson>HSK2</lesson>
  1510. <sound>[sound:##]</sound>
  1511. <origin>HSK New</origin>
  1512. </enregistrement>
  1513. <enregistrement>
  1514. <hanzi>您</hanzi>
  1515. <traditional>您</traditional>
  1516. <pinyin>nín</pinyin>
  1517. <translation>you (polite, as opposed to informal 你[ni3])</translation>
  1518. <classifier/>
  1519. <lesson>HSK2</lesson>
  1520. <sound>[sound:##]</sound>
  1521. <origin>HSK New</origin>
  1522. </enregistrement>
  1523. <enregistrement>
  1524. <hanzi>牛奶</hanzi>
  1525. <traditional>牛奶</traditional>
  1526. <pinyin>niú nǎi</pinyin>
  1527. <translation>cow's milk / CL:瓶[ping2],杯[bei1]</translation>
  1528. <classifier/>
  1529. <lesson>HSK2</lesson>
  1530. <sound>[sound:##]</sound>
  1531. <origin>HSK New</origin>
  1532. </enregistrement>
  1533. <enregistrement>
  1534. <hanzi>女儿</hanzi>
  1535. <traditional>女兒</traditional>
  1536. <pinyin>nǚ ér</pinyin>
  1537. <translation>daughter</translation>
  1538. <classifier/>
  1539. <lesson>HSK2</lesson>
  1540. <sound>[sound:##]</sound>
  1541. <origin>HSK New</origin>
  1542. </enregistrement>
  1543. <enregistrement>
  1544. <hanzi>女人</hanzi>
  1545. <traditional>女人</traditional>
  1546. <pinyin>nǚ rén</pinyin>
  1547. <translation>woman</translation>
  1548. <classifier/>
  1549. <lesson>HSK2</lesson>
  1550. <sound>[sound:##]</sound>
  1551. <origin>HSK New</origin>
  1552. </enregistrement>
  1553. <enregistrement>
  1554. <hanzi>旁边</hanzi>
  1555. <traditional>旁邊</traditional>
  1556. <pinyin>páng biān</pinyin>
  1557. <translation>lateral / side / to the side / beside</translation>
  1558. <classifier/>
  1559. <lesson>HSK2</lesson>
  1560. <sound>[sound:##]</sound>
  1561. <origin>HSK New</origin>
  1562. </enregistrement>
  1563. <enregistrement>
  1564. <hanzi>跑步</hanzi>
  1565. <traditional>跑步</traditional>
  1566. <pinyin>pǎo bù</pinyin>
  1567. <translation>to walk quickly / to march / to run</translation>
  1568. <classifier/>
  1569. <lesson>HSK2</lesson>
  1570. <sound>[sound:##]</sound>
  1571. <origin>HSK New</origin>
  1572. </enregistrement>
  1573. <enregistrement>
  1574. <hanzi>朋友</hanzi>
  1575. <traditional>朋友</traditional>
  1576. <pinyin>péng you</pinyin>
  1577. <translation>friend / CL:個|个[ge4],位[wei4]</translation>
  1578. <classifier/>
  1579. <lesson>HSK2</lesson>
  1580. <sound>[sound:##]</sound>
  1581. <origin>HSK New</origin>
  1582. </enregistrement>
  1583. <enregistrement>
  1584. <hanzi>便宜</hanzi>
  1585. <traditional>便宜</traditional>
  1586. <pinyin>pián yi</pinyin>
  1587. <translation>small advantages / to let sb off lightly / cheap / inexpensive</translation>
  1588. <classifier/>
  1589. <lesson>HSK2</lesson>
  1590. <sound>[sound:##]</sound>
  1591. <origin>HSK New</origin>
  1592. </enregistrement>
  1593. <enregistrement>
  1594. <hanzi>票</hanzi>
  1595. <traditional>票</traditional>
  1596. <pinyin>piào</pinyin>
  1597. <translation>ticket / ballot / bank note / CL:張|张[zhang1] / person held for ransom / amateur performance of Chinese opera / classifier for shipments and business transactions (topolect)</translation>
  1598. <classifier/>
  1599. <lesson>HSK2</lesson>
  1600. <sound>[sound:##]</sound>
  1601. <origin>HSK New</origin>
  1602. </enregistrement>
  1603. <enregistrement>
  1604. <hanzi>漂亮</hanzi>
  1605. <traditional>漂亮</traditional>
  1606. <pinyin>piào liang</pinyin>
  1607. <translation>pretty / beautiful</translation>
  1608. <classifier/>
  1609. <lesson>HSK2</lesson>
  1610. <sound>[sound:##]</sound>
  1611. <origin>HSK New</origin>
  1612. </enregistrement>
  1613. <enregistrement>
  1614. <hanzi>苹果</hanzi>
  1615. <traditional>蘋果</traditional>
  1616. <pinyin>píng guǒ</pinyin>
  1617. <translation>apple / CL:個|个[ge4],顆|颗[ke1]</translation>
  1618. <classifier/>
  1619. <lesson>HSK2</lesson>
  1620. <sound>[sound:##]</sound>
  1621. <origin>HSK New</origin>
  1622. </enregistrement>
  1623. <enregistrement>
  1624. <hanzi>七</hanzi>
  1625. <traditional>七</traditional>
  1626. <pinyin>qī</pinyin>
  1627. <translation>seven / 7</translation>
  1628. <classifier/>
  1629. <lesson>HSK2</lesson>
  1630. <sound>[sound:##]</sound>
  1631. <origin>HSK New</origin>
  1632. </enregistrement>
  1633. <enregistrement>
  1634. <hanzi>妻子</hanzi>
  1635. <traditional>妻子</traditional>
  1636. <pinyin>qī zi</pinyin>
  1637. <translation>wife / CL:個|个[ge4]</translation>
  1638. <classifier/>
  1639. <lesson>HSK2</lesson>
  1640. <sound>[sound:##]</sound>
  1641. <origin>HSK New</origin>
  1642. </enregistrement>
  1643. <enregistrement>
  1644. <hanzi>起床</hanzi>
  1645. <traditional>起牀</traditional>
  1646. <pinyin>qǐ chuáng</pinyin>
  1647. <translation>to get up</translation>
  1648. <classifier/>
  1649. <lesson>HSK2</lesson>
  1650. <sound>[sound:##]</sound>
  1651. <origin>HSK New</origin>
  1652. </enregistrement>
  1653. <enregistrement>
  1654. <hanzi>千</hanzi>
  1655. <traditional>千</traditional>
  1656. <pinyin>qiān</pinyin>
  1657. <translation>thousand</translation>
  1658. <classifier/>
  1659. <lesson>HSK2</lesson>
  1660. <sound>[sound:##]</sound>
  1661. <origin>HSK New</origin>
  1662. </enregistrement>
  1663. <enregistrement>
  1664. <hanzi>钱</hanzi>
  1665. <traditional>錢</traditional>
  1666. <pinyin>qián</pinyin>
  1667. <translation>coin / money / CL:筆|笔[bi3]</translation>
  1668. <classifier/>
  1669. <lesson>HSK2</lesson>
  1670. <sound>[sound:##]</sound>
  1671. <origin>HSK New</origin>
  1672. </enregistrement>
  1673. <enregistrement>
  1674. <hanzi>前面</hanzi>
  1675. <traditional>前面</traditional>
  1676. <pinyin>qián miàn</pinyin>
  1677. <translation>ahead / in front / preceding / above</translation>
  1678. <classifier/>
  1679. <lesson>HSK2</lesson>
  1680. <sound>[sound:##]</sound>
  1681. <origin>HSK New</origin>
  1682. </enregistrement>
  1683. <enregistrement>
  1684. <hanzi>晴</hanzi>
  1685. <traditional>晴</traditional>
  1686. <pinyin>qíng</pinyin>
  1687. <translation>clear / fine (weather)</translation>
  1688. <classifier/>
  1689. <lesson>HSK2</lesson>
  1690. <sound>[sound:##]</sound>
  1691. <origin>HSK New</origin>
  1692. </enregistrement>
  1693. <enregistrement>
  1694. <hanzi>请</hanzi>
  1695. <traditional>請</traditional>
  1696. <pinyin>qǐng</pinyin>
  1697. <translation>to ask / to invite / please (do sth) / to treat (to a meal etc) / to request</translation>
  1698. <classifier/>
  1699. <lesson>HSK2</lesson>
  1700. <sound>[sound:##]</sound>
  1701. <origin>HSK New</origin>
  1702. </enregistrement>
  1703. <enregistrement>
  1704. <hanzi>去</hanzi>
  1705. <traditional>去</traditional>
  1706. <pinyin>qù</pinyin>
  1707. <translation>to go / to go to (a place) / to cause to go or send (sb) / to remove / to get rid of / (when used either before or after a verb) to go in order to do sth / to be apart from in space or time / (after a verb of motion indicates movement away from the speaker) / (used after certain verbs to indicate detachment or separation) / (of a time or an event etc) just passed or elapsed</translation>
  1708. <classifier/>
  1709. <lesson>HSK2</lesson>
  1710. <sound>[sound:##]</sound>
  1711. <origin>HSK New</origin>
  1712. </enregistrement>
  1713. <enregistrement>
  1714. <hanzi>去年</hanzi>
  1715. <traditional>去年</traditional>
  1716. <pinyin>qù nián</pinyin>
  1717. <translation>last year</translation>
  1718. <classifier/>
  1719. <lesson>HSK2</lesson>
  1720. <sound>[sound:##]</sound>
  1721. <origin>HSK New</origin>
  1722. </enregistrement>
  1723. <enregistrement>
  1724. <hanzi>让</hanzi>
  1725. <traditional>讓</traditional>
  1726. <pinyin>ràng</pinyin>
  1727. <translation>to yield / to permit / to let sb do sth / to have sb do sth</translation>
  1728. <classifier/>
  1729. <lesson>HSK2</lesson>
  1730. <sound>[sound:##]</sound>
  1731. <origin>HSK New</origin>
  1732. </enregistrement>
  1733. <enregistrement>
  1734. <hanzi>热</hanzi>
  1735. <traditional>熱</traditional>
  1736. <pinyin>rè</pinyin>
  1737. <translation>heat / to heat up / fervent / hot (of weather) / warm up</translation>
  1738. <classifier/>
  1739. <lesson>HSK2</lesson>
  1740. <sound>[sound:##]</sound>
  1741. <origin>HSK New</origin>
  1742. </enregistrement>
  1743. <enregistrement>
  1744. <hanzi>人</hanzi>
  1745. <traditional>人</traditional>
  1746. <pinyin>rén</pinyin>
  1747. <translation>man / person / people / CL:個|个[ge4],位[wei4]</translation>
  1748. <classifier/>
  1749. <lesson>HSK2</lesson>
  1750. <sound>[sound:##]</sound>
  1751. <origin>HSK New</origin>
  1752. </enregistrement>
  1753. <enregistrement>
  1754. <hanzi>认识</hanzi>
  1755. <traditional>認識</traditional>
  1756. <pinyin>rèn shi</pinyin>
  1757. <translation>to know / to recognize / to be familiar with / acquainted with sth / knowledge / understanding / awareness / cognition</translation>
  1758. <classifier/>
  1759. <lesson>HSK2</lesson>
  1760. <sound>[sound:##]</sound>
  1761. <origin>HSK New</origin>
  1762. </enregistrement>
  1763. <enregistrement>
  1764. <hanzi>日</hanzi>
  1765. <traditional>日</traditional>
  1766. <pinyin>rì</pinyin>
  1767. <translation>sun / day / date, day of the month / abbr. for 日本|日本 Japan</translation>
  1768. <classifier/>
  1769. <lesson>HSK2</lesson>
  1770. <sound>[sound:##]</sound>
  1771. <origin>HSK New</origin>
  1772. </enregistrement>
  1773. <enregistrement>
  1774. <hanzi>三</hanzi>
  1775. <traditional>三</traditional>
  1776. <pinyin>sān</pinyin>
  1777. <translation>three / 3</translation>
  1778. <classifier/>
  1779. <lesson>HSK2</lesson>
  1780. <sound>[sound:##]</sound>
  1781. <origin>HSK New</origin>
  1782. </enregistrement>
  1783. <enregistrement>
  1784. <hanzi>商店</hanzi>
  1785. <traditional>商店</traditional>
  1786. <pinyin>shāng diàn</pinyin>
  1787. <translation>store / shop / CL:家[jia1],個|个[ge4]</translation>
  1788. <classifier/>
  1789. <lesson>HSK2</lesson>
  1790. <sound>[sound:##]</sound>
  1791. <origin>HSK New</origin>
  1792. </enregistrement>
  1793. <enregistrement>
  1794. <hanzi>上</hanzi>
  1795. <traditional>上</traditional>
  1796. <pinyin>shàng</pinyin>
  1797. <translation>on / on top / upon / first (of multiple parts) / previous / last / upper / higher / above / to climb / to go into / to go up / to attend (class or university)</translation>
  1798. <classifier/>
  1799. <lesson>HSK2</lesson>
  1800. <sound>[sound:##]</sound>
  1801. <origin>HSK New</origin>
  1802. </enregistrement>
  1803. <enregistrement>
  1804. <hanzi>上班</hanzi>
  1805. <traditional>上班</traditional>
  1806. <pinyin>shàng bān</pinyin>
  1807. <translation>to go to work / to be on duty / to start work / to go to the office</translation>
  1808. <classifier/>
  1809. <lesson>HSK2</lesson>
  1810. <sound>[sound:##]</sound>
  1811. <origin>HSK New</origin>
  1812. </enregistrement>
  1813. <enregistrement>
  1814. <hanzi>上午</hanzi>
  1815. <traditional>上午</traditional>
  1816. <pinyin>shàng wǔ</pinyin>
  1817. <translation>morning / CL:個|个[ge4]</translation>
  1818. <classifier/>
  1819. <lesson>HSK2</lesson>
  1820. <sound>[sound:##]</sound>
  1821. <origin>HSK New</origin>
  1822. </enregistrement>
  1823. <enregistrement>
  1824. <hanzi>少</hanzi>
  1825. <traditional>少</traditional>
  1826. <pinyin>shǎo</pinyin>
  1827. <translation>few / little / lack</translation>
  1828. <classifier/>
  1829. <lesson>HSK2</lesson>
  1830. <sound>[sound:##]</sound>
  1831. <origin>HSK New</origin>
  1832. </enregistrement>
  1833. <enregistrement>
  1834. <hanzi>谁</hanzi>
  1835. <traditional>誰</traditional>
  1836. <pinyin>shéi</pinyin>
  1837. <translation>who / also pronounced shui2</translation>
  1838. <classifier/>
  1839. <lesson>HSK2</lesson>
  1840. <sound>[sound:##]</sound>
  1841. <origin>HSK New</origin>
  1842. </enregistrement>
  1843. <enregistrement>
  1844. <hanzi>身体</hanzi>
  1845. <traditional>身體</traditional>
  1846. <pinyin>shēn tǐ</pinyin>
  1847. <translation>(human) body / health / CL:個|个[ge4]</translation>
  1848. <classifier/>
  1849. <lesson>HSK2</lesson>
  1850. <sound>[sound:##]</sound>
  1851. <origin>HSK New</origin>
  1852. </enregistrement>
  1853. <enregistrement>
  1854. <hanzi>什么</hanzi>
  1855. <traditional>什麼</traditional>
  1856. <pinyin>shén me</pinyin>
  1857. <translation>what? / who? / something / anything</translation>
  1858. <classifier/>
  1859. <lesson>HSK2</lesson>
  1860. <sound>[sound:##]</sound>
  1861. <origin>HSK New</origin>
  1862. </enregistrement>
  1863. <enregistrement>
  1864. <hanzi>生病</hanzi>
  1865. <traditional>生病</traditional>
  1866. <pinyin>shēng bìng</pinyin>
  1867. <translation>to fall ill / to sicken</translation>
  1868. <classifier/>
  1869. <lesson>HSK2</lesson>
  1870. <sound>[sound:##]</sound>
  1871. <origin>HSK New</origin>
  1872. </enregistrement>
  1873. <enregistrement>
  1874. <hanzi>生日</hanzi>
  1875. <traditional>生日</traditional>
  1876. <pinyin>shēng rì</pinyin>
  1877. <translation>birthday / CL:個|个[ge4]</translation>
  1878. <classifier/>
  1879. <lesson>HSK2</lesson>
  1880. <sound>[sound:##]</sound>
  1881. <origin>HSK New</origin>
  1882. </enregistrement>
  1883. <enregistrement>
  1884. <hanzi>十</hanzi>
  1885. <traditional>十</traditional>
  1886. <pinyin>shí</pinyin>
  1887. <translation>ten / 10</translation>
  1888. <classifier/>
  1889. <lesson>HSK2</lesson>
  1890. <sound>[sound:##]</sound>
  1891. <origin>HSK New</origin>
  1892. </enregistrement>
  1893. <enregistrement>
  1894. <hanzi>时候</hanzi>
  1895. <traditional>時候</traditional>
  1896. <pinyin>shí hou</pinyin>
  1897. <translation>time / length of time / moment / period</translation>
  1898. <classifier/>
  1899. <lesson>HSK2</lesson>
  1900. <sound>[sound:##]</sound>
  1901. <origin>HSK New</origin>
  1902. </enregistrement>
  1903. <enregistrement>
  1904. <hanzi>时间</hanzi>
  1905. <traditional>時間</traditional>
  1906. <pinyin>shí jiān</pinyin>
  1907. <translation>time / period / CL:段[duan4]</translation>
  1908. <classifier/>
  1909. <lesson>HSK2</lesson>
  1910. <sound>[sound:##]</sound>
  1911. <origin>HSK New</origin>
  1912. </enregistrement>
  1913. <enregistrement>
  1914. <hanzi>是</hanzi>
  1915. <traditional>是</traditional>
  1916. <pinyin>shì</pinyin>
  1917. <translation>is / are / am / yes / to be</translation>
  1918. <classifier/>
  1919. <lesson>HSK2</lesson>
  1920. <sound>[sound:##]</sound>
  1921. <origin>HSK New</origin>
  1922. </enregistrement>
  1923. <enregistrement>
  1924. <hanzi>事情</hanzi>
  1925. <traditional>事情</traditional>
  1926. <pinyin>shì qíng</pinyin>
  1927. <translation>affair / matter / thing / business / CL:件[jian4],樁|桩[zhuang1]</translation>
  1928. <classifier/>
  1929. <lesson>HSK2</lesson>
  1930. <sound>[sound:##]</sound>
  1931. <origin>HSK New</origin>
  1932. </enregistrement>
  1933. <enregistrement>
  1934. <hanzi>手表</hanzi>
  1935. <traditional>手錶</traditional>
  1936. <pinyin>shǒu biǎo</pinyin>
  1937. <translation>wrist watch / CL:塊|块[kuai4],隻|只[zhi1],個|个[ge4]</translation>
  1938. <classifier/>
  1939. <lesson>HSK2</lesson>
  1940. <sound>[sound:##]</sound>
  1941. <origin>HSK New</origin>
  1942. </enregistrement>
  1943. <enregistrement>
  1944. <hanzi>手机</hanzi>
  1945. <traditional>手機</traditional>
  1946. <pinyin>shǒu jī</pinyin>
  1947. <translation>cell phone / cellular phone / mobile phone / CL:部[bu4]</translation>
  1948. <classifier/>
  1949. <lesson>HSK2</lesson>
  1950. <sound>[sound:##]</sound>
  1951. <origin>HSK New</origin>
  1952. </enregistrement>
  1953. <enregistrement>
  1954. <hanzi>书</hanzi>
  1955. <traditional>書</traditional>
  1956. <pinyin>shū</pinyin>
  1957. <translation>book / letter / CL:本[ben3],冊|册[ce4],部[bu4] / see also 書經|书经 Book of History</translation>
  1958. <classifier/>
  1959. <lesson>HSK2</lesson>
  1960. <sound>[sound:##]</sound>
  1961. <origin>HSK New</origin>
  1962. </enregistrement>
  1963. <enregistrement>
  1964. <hanzi>水</hanzi>
  1965. <traditional>水</traditional>
  1966. <pinyin>shuǐ</pinyin>
  1967. <translation>water / river / liquid / beverage / additional charges or income / (of clothes) classifier for number of washes</translation>
  1968. <classifier/>
  1969. <lesson>HSK2</lesson>
  1970. <sound>[sound:##]</sound>
  1971. <origin>HSK New</origin>
  1972. </enregistrement>
  1973. <enregistrement>
  1974. <hanzi>水果</hanzi>
  1975. <traditional>水果</traditional>
  1976. <pinyin>shuǐ guǒ</pinyin>
  1977. <translation>fruit / CL:個|个[ge4]</translation>
  1978. <classifier/>
  1979. <lesson>HSK2</lesson>
  1980. <sound>[sound:##]</sound>
  1981. <origin>HSK New</origin>
  1982. </enregistrement>
  1983. <enregistrement>
  1984. <hanzi>睡觉</hanzi>
  1985. <traditional>睡覺</traditional>
  1986. <pinyin>shuì jiào</pinyin>
  1987. <translation>to go to bed / to go to sleep</translation>
  1988. <classifier/>
  1989. <lesson>HSK2</lesson>
  1990. <sound>[sound:##]</sound>
  1991. <origin>HSK New</origin>
  1992. </enregistrement>
  1993. <enregistrement>
  1994. <hanzi>说话</hanzi>
  1995. <traditional>說話</traditional>
  1996. <pinyin>shuō huà</pinyin>
  1997. <translation>to speak / to say / to talk / to gossip / to tell stories / talk / word</translation>
  1998. <classifier/>
  1999. <lesson>HSK2</lesson>
  2000. <sound>[sound:##]</sound>
  2001. <origin>HSK New</origin>
  2002. </enregistrement>
  2003. <enregistrement>
  2004. <hanzi>四</hanzi>
  2005. <traditional>四</traditional>
  2006. <pinyin>sì</pinyin>
  2007. <translation>four / 4</translation>
  2008. <classifier/>
  2009. <lesson>HSK2</lesson>
  2010. <sound>[sound:##]</sound>
  2011. <origin>HSK New</origin>
  2012. </enregistrement>
  2013. <enregistrement>
  2014. <hanzi>送</hanzi>
  2015. <traditional>送</traditional>
  2016. <pinyin>sòng</pinyin>
  2017. <translation>to deliver / to carry / to give (as a present) / to present (with) / to see off / to send</translation>
  2018. <classifier/>
  2019. <lesson>HSK2</lesson>
  2020. <sound>[sound:##]</sound>
  2021. <origin>HSK New</origin>
  2022. </enregistrement>
  2023. <enregistrement>
  2024. <hanzi>岁</hanzi>
  2025. <traditional>歲</traditional>
  2026. <pinyin>suì</pinyin>
  2027. <translation>classifier for years (of age) / year / year (of crop harvests)</translation>
  2028. <classifier/>
  2029. <lesson>HSK2</lesson>
  2030. <sound>[sound:##]</sound>
  2031. <origin>HSK New</origin>
  2032. </enregistrement>
  2033. <enregistrement>
  2034. <hanzi>所以</hanzi>
  2035. <traditional>所以</traditional>
  2036. <pinyin>suǒ yǐ</pinyin>
  2037. <translation>therefore / as a result / so</translation>
  2038. <classifier/>
  2039. <lesson>HSK2</lesson>
  2040. <sound>[sound:##]</sound>
  2041. <origin>HSK New</origin>
  2042. </enregistrement>
  2043. <enregistrement>
  2044. <hanzi>他</hanzi>
  2045. <traditional>他</traditional>
  2046. <pinyin>tā</pinyin>
  2047. <translation>he or him / (used for either sex when the sex is unknown or unimportant) / (used before sb's name for emphasis) / (used as a meaningless mock object) / other / another</translation>
  2048. <classifier/>
  2049. <lesson>HSK2</lesson>
  2050. <sound>[sound:##]</sound>
  2051. <origin>HSK New</origin>
  2052. </enregistrement>
  2053. <enregistrement>
  2054. <hanzi>她</hanzi>
  2055. <traditional>她</traditional>
  2056. <pinyin>tā</pinyin>
  2057. <translation>she</translation>
  2058. <classifier/>
  2059. <lesson>HSK2</lesson>
  2060. <sound>[sound:##]</sound>
  2061. <origin>HSK New</origin>
  2062. </enregistrement>
  2063. <enregistrement>
  2064. <hanzi>它</hanzi>
  2065. <traditional>它</traditional>
  2066. <pinyin>tā</pinyin>
  2067. <translation>it</translation>
  2068. <classifier/>
  2069. <lesson>HSK2</lesson>
  2070. <sound>[sound:##]</sound>
  2071. <origin>HSK New</origin>
  2072. </enregistrement>
  2073. <enregistrement>
  2074. <hanzi>太</hanzi>
  2075. <traditional>太</traditional>
  2076. <pinyin>tài</pinyin>
  2077. <translation>highest / greatest / too (much) / very / extremely</translation>
  2078. <classifier/>
  2079. <lesson>HSK2</lesson>
  2080. <sound>[sound:##]</sound>
  2081. <origin>HSK New</origin>
  2082. </enregistrement>
  2083. <enregistrement>
  2084. <hanzi>踢足球</hanzi>
  2085. <traditional>踢足球</traditional>
  2086. <pinyin>tī zú qiú</pinyin>
  2087. <translation>play soccer(football)</translation>
  2088. <classifier/>
  2089. <lesson>HSK2</lesson>
  2090. <sound>[sound:##]</sound>
  2091. <origin>HSK New</origin>
  2092. </enregistrement>
  2093. <enregistrement>
  2094. <hanzi>题</hanzi>
  2095. <traditional>題</traditional>
  2096. <pinyin>tí</pinyin>
  2097. <translation>topic / problem for discussion / exam question / subject / to inscribe / to mention / surname Ti / CL:個|个[ge4],道[dao4]</translation>
  2098. <classifier/>
  2099. <lesson>HSK2</lesson>
  2100. <sound>[sound:##]</sound>
  2101. <origin>HSK New</origin>
  2102. </enregistrement>
  2103. <enregistrement>
  2104. <hanzi>天气</hanzi>
  2105. <traditional>天氣</traditional>
  2106. <pinyin>tiān qì</pinyin>
  2107. <translation>weather</translation>
  2108. <classifier/>
  2109. <lesson>HSK2</lesson>
  2110. <sound>[sound:##]</sound>
  2111. <origin>HSK New</origin>
  2112. </enregistrement>
  2113. <enregistrement>
  2114. <hanzi>跳舞</hanzi>
  2115. <traditional>跳舞</traditional>
  2116. <pinyin>tiào wǔ</pinyin>
  2117. <translation>to dance</translation>
  2118. <classifier/>
  2119. <lesson>HSK2</lesson>
  2120. <sound>[sound:##]</sound>
  2121. <origin>HSK New</origin>
  2122. </enregistrement>
  2123. <enregistrement>
  2124. <hanzi>听</hanzi>
  2125. <traditional>聽</traditional>
  2126. <pinyin>tīng</pinyin>
  2127. <translation>to listen / to hear / to obey / a can (loanword from English "tin") / classifier for canned beverages</translation>
  2128. <classifier/>
  2129. <lesson>HSK2</lesson>
  2130. <sound>[sound:##]</sound>
  2131. <origin>HSK New</origin>
  2132. </enregistrement>
  2133. <enregistrement>
  2134. <hanzi>同学</hanzi>
  2135. <traditional>同學</traditional>
  2136. <pinyin>tóng xué</pinyin>
  2137. <translation>(fellow) classmate / CL:位[wei4],個|个[ge4]</translation>
  2138. <classifier/>
  2139. <lesson>HSK2</lesson>
  2140. <sound>[sound:##]</sound>
  2141. <origin>HSK New</origin>
  2142. </enregistrement>
  2143. <enregistrement>
  2144. <hanzi>外</hanzi>
  2145. <traditional>外</traditional>
  2146. <pinyin>wài</pinyin>
  2147. <translation>outside / in addition / foreign / external</translation>
  2148. <classifier/>
  2149. <lesson>HSK2</lesson>
  2150. <sound>[sound:##]</sound>
  2151. <origin>HSK New</origin>
  2152. </enregistrement>
  2153. <enregistrement>
  2154. <hanzi>完</hanzi>
  2155. <traditional>完</traditional>
  2156. <pinyin>wán</pinyin>
  2157. <translation>to finish / to be over / whole / complete / entire</translation>
  2158. <classifier/>
  2159. <lesson>HSK2</lesson>
  2160. <sound>[sound:##]</sound>
  2161. <origin>HSK New</origin>
  2162. </enregistrement>
  2163. <enregistrement>
  2164. <hanzi>玩</hanzi>
  2165. <traditional>玩</traditional>
  2166. <pinyin>wán</pinyin>
  2167. <translation>toy / sth used for amusement / curio or antique (Taiwan pr. wan4) / to play / to have fun / to trifle with / to keep sth for entertainment</translation>
  2168. <classifier/>
  2169. <lesson>HSK2</lesson>
  2170. <sound>[sound:##]</sound>
  2171. <origin>HSK New</origin>
  2172. </enregistrement>
  2173. <enregistrement>
  2174. <hanzi>晚上</hanzi>
  2175. <traditional>晚上</traditional>
  2176. <pinyin>wǎn shang</pinyin>
  2177. <translation>in the evening / CL:個|个[ge4]</translation>
  2178. <classifier/>
  2179. <lesson>HSK2</lesson>
  2180. <sound>[sound:##]</sound>
  2181. <origin>HSK New</origin>
  2182. </enregistrement>
  2183. <enregistrement>
  2184. <hanzi>喂</hanzi>
  2185. <traditional>喂</traditional>
  2186. <pinyin>wèi</pinyin>
  2187. <translation>hello (interj., esp. on telephone) / hey / to feed (sb or some animal)</translation>
  2188. <classifier/>
  2189. <lesson>HSK2</lesson>
  2190. <sound>[sound:##]</sound>
  2191. <origin>HSK New</origin>
  2192. </enregistrement>
  2193. <enregistrement>
  2194. <hanzi>为什么</hanzi>
  2195. <traditional>爲什麼</traditional>
  2196. <pinyin>wèi shén me</pinyin>
  2197. <translation>why? / for what reason?</translation>
  2198. <classifier/>
  2199. <lesson>HSK2</lesson>
  2200. <sound>[sound:##]</sound>
  2201. <origin>HSK New</origin>
  2202. </enregistrement>
  2203. <enregistrement>
  2204. <hanzi>问</hanzi>
  2205. <traditional>問</traditional>
  2206. <pinyin>wèn</pinyin>
  2207. <translation>to ask</translation>
  2208. <classifier/>
  2209. <lesson>HSK2</lesson>
  2210. <sound>[sound:##]</sound>
  2211. <origin>HSK New</origin>
  2212. </enregistrement>
  2213. <enregistrement>
  2214. <hanzi>问题</hanzi>
  2215. <traditional>問題</traditional>
  2216. <pinyin>wèn tí</pinyin>
  2217. <translation>question / problem / issue / topic / CL:個|个[ge4]</translation>
  2218. <classifier/>
  2219. <lesson>HSK2</lesson>
  2220. <sound>[sound:##]</sound>
  2221. <origin>HSK New</origin>
  2222. </enregistrement>
  2223. <enregistrement>
  2224. <hanzi>我</hanzi>
  2225. <traditional>我</traditional>
  2226. <pinyin>wǒ</pinyin>
  2227. <translation>I / me / my</translation>
  2228. <classifier/>
  2229. <lesson>HSK2</lesson>
  2230. <sound>[sound:##]</sound>
  2231. <origin>HSK New</origin>
  2232. </enregistrement>
  2233. <enregistrement>
  2234. <hanzi>我们</hanzi>
  2235. <traditional>我們</traditional>
  2236. <pinyin>wǒ men</pinyin>
  2237. <translation>we / us / ourselves / our</translation>
  2238. <classifier/>
  2239. <lesson>HSK2</lesson>
  2240. <sound>[sound:##]</sound>
  2241. <origin>HSK New</origin>
  2242. </enregistrement>
  2243. <enregistrement>
  2244. <hanzi>五</hanzi>
  2245. <traditional>五</traditional>
  2246. <pinyin>wǔ</pinyin>
  2247. <translation>five / 5</translation>
  2248. <classifier/>
  2249. <lesson>HSK2</lesson>
  2250. <sound>[sound:##]</sound>
  2251. <origin>HSK New</origin>
  2252. </enregistrement>
  2253. <enregistrement>
  2254. <hanzi>西瓜</hanzi>
  2255. <traditional>西瓜</traditional>
  2256. <pinyin>xī guā</pinyin>
  2257. <translation>watermelon / CL:條|条[tiao2]</translation>
  2258. <classifier/>
  2259. <lesson>HSK2</lesson>
  2260. <sound>[sound:##]</sound>
  2261. <origin>HSK New</origin>
  2262. </enregistrement>
  2263. <enregistrement>
  2264. <hanzi>希望</hanzi>
  2265. <traditional>希望</traditional>
  2266. <pinyin>xī wàng</pinyin>
  2267. <translation>to wish for / to desire / hope CL:個|个[ge4]</translation>
  2268. <classifier/>
  2269. <lesson>HSK2</lesson>
  2270. <sound>[sound:##]</sound>
  2271. <origin>HSK New</origin>
  2272. </enregistrement>
  2273. <enregistrement>
  2274. <hanzi>洗</hanzi>
  2275. <traditional>洗</traditional>
  2276. <pinyin>xǐ</pinyin>
  2277. <translation>to wash / to bathe</translation>
  2278. <classifier/>
  2279. <lesson>HSK2</lesson>
  2280. <sound>[sound:##]</sound>
  2281. <origin>HSK New</origin>
  2282. </enregistrement>
  2283. <enregistrement>
  2284. <hanzi>喜欢</hanzi>
  2285. <traditional>喜歡</traditional>
  2286. <pinyin>xǐ huan</pinyin>
  2287. <translation>to like / to be fond of</translation>
  2288. <classifier/>
  2289. <lesson>HSK2</lesson>
  2290. <sound>[sound:##]</sound>
  2291. <origin>HSK New</origin>
  2292. </enregistrement>
  2293. <enregistrement>
  2294. <hanzi>下</hanzi>
  2295. <traditional>下</traditional>
  2296. <pinyin>xià</pinyin>
  2297. <translation>down / downwards / below / lower / later / next (week etc) / second (of two parts) / to decline / to go down</translation>
  2298. <classifier/>
  2299. <lesson>HSK2</lesson>
  2300. <sound>[sound:##]</sound>
  2301. <origin>HSK New</origin>
  2302. </enregistrement>
  2303. <enregistrement>
  2304. <hanzi>下午</hanzi>
  2305. <traditional>下午</traditional>
  2306. <pinyin>xià wǔ</pinyin>
  2307. <translation>afternoon / p.m. / CL:個|个[ge4]</translation>
  2308. <classifier/>
  2309. <lesson>HSK2</lesson>
  2310. <sound>[sound:##]</sound>
  2311. <origin>HSK New</origin>
  2312. </enregistrement>
  2313. <enregistrement>
  2314. <hanzi>下雨</hanzi>
  2315. <traditional>下雨</traditional>
  2316. <pinyin>xià yǔ</pinyin>
  2317. <translation>to rain / rainy</translation>
  2318. <classifier/>
  2319. <lesson>HSK2</lesson>
  2320. <sound>[sound:##]</sound>
  2321. <origin>HSK New</origin>
  2322. </enregistrement>
  2323. <enregistrement>
  2324. <hanzi>先生</hanzi>
  2325. <traditional>先生</traditional>
  2326. <pinyin>xiān sheng</pinyin>
  2327. <translation>teacher / Mister (Mr.) / husband / doctor (topolect) / CL:個|个[ge4],位[wei4]</translation>
  2328. <classifier/>
  2329. <lesson>HSK2</lesson>
  2330. <sound>[sound:##]</sound>
  2331. <origin>HSK New</origin>
  2332. </enregistrement>
  2333. <enregistrement>
  2334. <hanzi>现在</hanzi>
  2335. <traditional>現在</traditional>
  2336. <pinyin>xiàn zài</pinyin>
  2337. <translation>now / at present / at the moment / modern / current / nowadays</translation>
  2338. <classifier/>
  2339. <lesson>HSK2</lesson>
  2340. <sound>[sound:##]</sound>
  2341. <origin>HSK New</origin>
  2342. </enregistrement>
  2343. <enregistrement>
  2344. <hanzi>想</hanzi>
  2345. <traditional>想</traditional>
  2346. <pinyin>xiǎng</pinyin>
  2347. <translation>to think / to believe / to suppose / to wish / to want / to miss</translation>
  2348. <classifier/>
  2349. <lesson>HSK2</lesson>
  2350. <sound>[sound:##]</sound>
  2351. <origin>HSK New</origin>
  2352. </enregistrement>
  2353. <enregistrement>
  2354. <hanzi>向</hanzi>
  2355. <traditional>向</traditional>
  2356. <pinyin>xiàng</pinyin>
  2357. <translation>direction / orientation / to face / to turn toward / to / towards / shortly before / formerly / to side with / to be partial to / all along (previously) / surname Xiang</translation>
  2358. <classifier/>
  2359. <lesson>HSK2</lesson>
  2360. <sound>[sound:##]</sound>
  2361. <origin>HSK New</origin>
  2362. </enregistrement>
  2363. <enregistrement>
  2364. <hanzi>小</hanzi>
  2365. <traditional>小</traditional>
  2366. <pinyin>xiǎo</pinyin>
  2367. <translation>small / tiny / few / young</translation>
  2368. <classifier/>
  2369. <lesson>HSK2</lesson>
  2370. <sound>[sound:##]</sound>
  2371. <origin>HSK New</origin>
  2372. </enregistrement>
  2373. <enregistrement>
  2374. <hanzi>小姐</hanzi>
  2375. <traditional>小姐</traditional>
  2376. <pinyin>xiǎo jie</pinyin>
  2377. <translation>young lady / miss / CL:個|个[ge4],位[wei4]</translation>
  2378. <classifier/>
  2379. <lesson>HSK2</lesson>
  2380. <sound>[sound:##]</sound>
  2381. <origin>HSK New</origin>
  2382. </enregistrement>
  2383. <enregistrement>
  2384. <hanzi>小时</hanzi>
  2385. <traditional>小時</traditional>
  2386. <pinyin>xiǎo shí</pinyin>
  2387. <translation>hour / CL:個|个[ge4]</translation>
  2388. <classifier/>
  2389. <lesson>HSK2</lesson>
  2390. <sound>[sound:##]</sound>
  2391. <origin>HSK New</origin>
  2392. </enregistrement>
  2393. <enregistrement>
  2394. <hanzi>笑</hanzi>
  2395. <traditional>笑</traditional>
  2396. <pinyin>xiào</pinyin>
  2397. <translation>laugh / smile / CL:個|个[ge4]</translation>
  2398. <classifier/>
  2399. <lesson>HSK2</lesson>
  2400. <sound>[sound:##]</sound>
  2401. <origin>HSK New</origin>
  2402. </enregistrement>
  2403. <enregistrement>
  2404. <hanzi>些</hanzi>
  2405. <traditional>些</traditional>
  2406. <pinyin>xiē</pinyin>
  2407. <translation>some / few / several / (a measure word)</translation>
  2408. <classifier/>
  2409. <lesson>HSK2</lesson>
  2410. <sound>[sound:##]</sound>
  2411. <origin>HSK New</origin>
  2412. </enregistrement>
  2413. <enregistrement>
  2414. <hanzi>写</hanzi>
  2415. <traditional>寫</traditional>
  2416. <pinyin>xiě</pinyin>
  2417. <translation>to write</translation>
  2418. <classifier/>
  2419. <lesson>HSK2</lesson>
  2420. <sound>[sound:##]</sound>
  2421. <origin>HSK New</origin>
  2422. </enregistrement>
  2423. <enregistrement>
  2424. <hanzi>谢谢</hanzi>
  2425. <traditional>謝謝</traditional>
  2426. <pinyin>xiè xie</pinyin>
  2427. <translation>to thank / thanks</translation>
  2428. <classifier/>
  2429. <lesson>HSK2</lesson>
  2430. <sound>[sound:##]</sound>
  2431. <origin>HSK New</origin>
  2432. </enregistrement>
  2433. <enregistrement>
  2434. <hanzi>新</hanzi>
  2435. <traditional>新</traditional>
  2436. <pinyin>xīn</pinyin>
  2437. <translation>new / newly / meso- (chemistry)</translation>
  2438. <classifier/>
  2439. <lesson>HSK2</lesson>
  2440. <sound>[sound:##]</sound>
  2441. <origin>HSK New</origin>
  2442. </enregistrement>
  2443. <enregistrement>
  2444. <hanzi>星期</hanzi>
  2445. <traditional>星期</traditional>
  2446. <pinyin>xīng qī</pinyin>
  2447. <translation>week / CL:個|个[ge4]</translation>
  2448. <classifier/>
  2449. <lesson>HSK2</lesson>
  2450. <sound>[sound:##]</sound>
  2451. <origin>HSK New</origin>
  2452. </enregistrement>
  2453. <enregistrement>
  2454. <hanzi>姓</hanzi>
  2455. <traditional>姓</traditional>
  2456. <pinyin>xìng</pinyin>
  2457. <translation>family name / surname / name / CL:個|个[ge4]</translation>
  2458. <classifier/>
  2459. <lesson>HSK2</lesson>
  2460. <sound>[sound:##]</sound>
  2461. <origin>HSK New</origin>
  2462. </enregistrement>
  2463. <enregistrement>
  2464. <hanzi>休息</hanzi>
  2465. <traditional>休息</traditional>
  2466. <pinyin>xiū xi</pinyin>
  2467. <translation>rest / to rest</translation>
  2468. <classifier/>
  2469. <lesson>HSK2</lesson>
  2470. <sound>[sound:##]</sound>
  2471. <origin>HSK New</origin>
  2472. </enregistrement>
  2473. <enregistrement>
  2474. <hanzi>学生</hanzi>
  2475. <traditional>學生</traditional>
  2476. <pinyin>xué sheng</pinyin>
  2477. <translation>student / school child</translation>
  2478. <classifier/>
  2479. <lesson>HSK2</lesson>
  2480. <sound>[sound:##]</sound>
  2481. <origin>HSK New</origin>
  2482. </enregistrement>
  2483. <enregistrement>
  2484. <hanzi>学习</hanzi>
  2485. <traditional>學習</traditional>
  2486. <pinyin>xué xí</pinyin>
  2487. <translation>to learn / to study</translation>
  2488. <classifier/>
  2489. <lesson>HSK2</lesson>
  2490. <sound>[sound:##]</sound>
  2491. <origin>HSK New</origin>
  2492. </enregistrement>
  2493. <enregistrement>
  2494. <hanzi>学校</hanzi>
  2495. <traditional>學校</traditional>
  2496. <pinyin>xué xiào</pinyin>
  2497. <translation>school / CL:所[suo3]</translation>
  2498. <classifier/>
  2499. <lesson>HSK2</lesson>
  2500. <sound>[sound:##]</sound>
  2501. <origin>HSK New</origin>
  2502. </enregistrement>
  2503. <enregistrement>
  2504. <hanzi>雪</hanzi>
  2505. <traditional>雪</traditional>
  2506. <pinyin>xuě</pinyin>
  2507. <translation>snow / snowfall / CL:場|场[chang2] / to have the appearance of snow / to wipe away, off or out / to clean</translation>
  2508. <classifier/>
  2509. <lesson>HSK2</lesson>
  2510. <sound>[sound:##]</sound>
  2511. <origin>HSK New</origin>
  2512. </enregistrement>
  2513. <enregistrement>
  2514. <hanzi>颜色</hanzi>
  2515. <traditional>顏色</traditional>
  2516. <pinyin>yán sè</pinyin>
  2517. <translation>color / CL:個|个[ge4]</translation>
  2518. <classifier/>
  2519. <lesson>HSK2</lesson>
  2520. <sound>[sound:##]</sound>
  2521. <origin>HSK New</origin>
  2522. </enregistrement>
  2523. <enregistrement>
  2524. <hanzi>眼睛</hanzi>
  2525. <traditional>眼睛</traditional>
  2526. <pinyin>yǎn jing</pinyin>
  2527. <translation>eye / CL:隻|只[zhi1],雙|双[shuang1]</translation>
  2528. <classifier/>
  2529. <lesson>HSK2</lesson>
  2530. <sound>[sound:##]</sound>
  2531. <origin>HSK New</origin>
  2532. </enregistrement>
  2533. <enregistrement>
  2534. <hanzi>羊肉</hanzi>
  2535. <traditional>羊肉</traditional>
  2536. <pinyin>yáng ròu</pinyin>
  2537. <translation>mutton</translation>
  2538. <classifier/>
  2539. <lesson>HSK2</lesson>
  2540. <sound>[sound:##]</sound>
  2541. <origin>HSK New</origin>
  2542. </enregistrement>
  2543. <enregistrement>
  2544. <hanzi>药</hanzi>
  2545. <traditional>藥</traditional>
  2546. <pinyin>yào</pinyin>
  2547. <translation>medicine / drug / cure / CL:種|种[zhong3],服[fu4]</translation>
  2548. <classifier/>
  2549. <lesson>HSK2</lesson>
  2550. <sound>[sound:##]</sound>
  2551. <origin>HSK New</origin>
  2552. </enregistrement>
  2553. <enregistrement>
  2554. <hanzi>要</hanzi>
  2555. <traditional>要</traditional>
  2556. <pinyin>yāo</pinyin>
  2557. <translation>demand / ask / request / coerce</translation>
  2558. <classifier/>
  2559. <lesson>HSK2</lesson>
  2560. <sound>[sound:##]</sound>
  2561. <origin>HSK New</origin>
  2562. </enregistrement>
  2563. <enregistrement>
  2564. <hanzi>也</hanzi>
  2565. <traditional>也</traditional>
  2566. <pinyin>yě</pinyin>
  2567. <translation>also / too / (in classical Chinese) final particle serving as copula</translation>
  2568. <classifier/>
  2569. <lesson>HSK2</lesson>
  2570. <sound>[sound:##]</sound>
  2571. <origin>HSK New</origin>
  2572. </enregistrement>
  2573. <enregistrement>
  2574. <hanzi>一</hanzi>
  2575. <traditional>一</traditional>
  2576. <pinyin>yī</pinyin>
  2577. <translation>one / 1 / single / a (article) / as soon as / entire / whole / all / throughout / "one" radical in Chinese characters (Kangxi radical 1)</translation>
  2578. <classifier/>
  2579. <lesson>HSK2</lesson>
  2580. <sound>[sound:##]</sound>
  2581. <origin>HSK New</origin>
  2582. </enregistrement>
  2583. <enregistrement>
  2584. <hanzi>衣服</hanzi>
  2585. <traditional>衣服</traditional>
  2586. <pinyin>yī fu</pinyin>
  2587. <translation>clothes / CL:件[jian4],套[tao4]</translation>
  2588. <classifier/>
  2589. <lesson>HSK2</lesson>
  2590. <sound>[sound:##]</sound>
  2591. <origin>HSK New</origin>
  2592. </enregistrement>
  2593. <enregistrement>
  2594. <hanzi>医生</hanzi>
  2595. <traditional>醫生</traditional>
  2596. <pinyin>yī shēng</pinyin>
  2597. <translation>doctor / CL:個|个[ge4],位[wei4],名[ming2]</translation>
  2598. <classifier/>
  2599. <lesson>HSK2</lesson>
  2600. <sound>[sound:##]</sound>
  2601. <origin>HSK New</origin>
  2602. </enregistrement>
  2603. <enregistrement>
  2604. <hanzi>医院</hanzi>
  2605. <traditional>醫院</traditional>
  2606. <pinyin>yī yuàn</pinyin>
  2607. <translation>hospital / CL:所[suo3],家[jia1],座[zuo4]</translation>
  2608. <classifier/>
  2609. <lesson>HSK2</lesson>
  2610. <sound>[sound:##]</sound>
  2611. <origin>HSK New</origin>
  2612. </enregistrement>
  2613. <enregistrement>
  2614. <hanzi>已经</hanzi>
  2615. <traditional>已經</traditional>
  2616. <pinyin>yǐ jīng</pinyin>
  2617. <translation>already</translation>
  2618. <classifier/>
  2619. <lesson>HSK2</lesson>
  2620. <sound>[sound:##]</sound>
  2621. <origin>HSK New</origin>
  2622. </enregistrement>
  2623. <enregistrement>
  2624. <hanzi>椅子</hanzi>
  2625. <traditional>椅子</traditional>
  2626. <pinyin>yǐ zi</pinyin>
  2627. <translation>chair / CL:把[ba3],套[tao4]</translation>
  2628. <classifier/>
  2629. <lesson>HSK2</lesson>
  2630. <sound>[sound:##]</sound>
  2631. <origin>HSK New</origin>
  2632. </enregistrement>
  2633. <enregistrement>
  2634. <hanzi>一起</hanzi>
  2635. <traditional>一起</traditional>
  2636. <pinyin>yì qǐ</pinyin>
  2637. <translation>in the same place / together / with / altogether (in total)</translation>
  2638. <classifier/>
  2639. <lesson>HSK2</lesson>
  2640. <sound>[sound:##]</sound>
  2641. <origin>HSK New</origin>
  2642. </enregistrement>
  2643. <enregistrement>
  2644. <hanzi>意思</hanzi>
  2645. <traditional>意思</traditional>
  2646. <pinyin>yì si</pinyin>
  2647. <translation>idea / opinion / meaning / wish / desire / CL:個|个[ge4]</translation>
  2648. <classifier/>
  2649. <lesson>HSK2</lesson>
  2650. <sound>[sound:##]</sound>
  2651. <origin>HSK New</origin>
  2652. </enregistrement>
  2653. <enregistrement>
  2654. <hanzi>阴</hanzi>
  2655. <traditional>陰</traditional>
  2656. <pinyin>yīn</pinyin>
  2657. <translation>overcast (weather) / cloudy / shady / Yin (the negative principle of Yin and Yang) / negative (electric.) / feminine / moon / implicit / hidden / genitalia</translation>
  2658. <classifier/>
  2659. <lesson>HSK2</lesson>
  2660. <sound>[sound:##]</sound>
  2661. <origin>HSK New</origin>
  2662. </enregistrement>
  2663. <enregistrement>
  2664. <hanzi>在</hanzi>
  2665. <traditional>在</traditional>
  2666. <pinyin>zài</pinyin>
  2667. <translation>(located) at / (to be) in / to exist / in the middle of doing sth / (indicating an action in progress)</translation>
  2668. <classifier/>
  2669. <lesson>HSK2</lesson>
  2670. <sound>[sound:##]</sound>
  2671. <origin>HSK New</origin>
  2672. </enregistrement>
  2673. <enregistrement>
  2674. <hanzi>因为</hanzi>
  2675. <traditional>因爲</traditional>
  2676. <pinyin>yīn wèi</pinyin>
  2677. <translation>because / owing to / on account of</translation>
  2678. <classifier/>
  2679. <lesson>HSK2</lesson>
  2680. <sound>[sound:##]</sound>
  2681. <origin>HSK New</origin>
  2682. </enregistrement>
  2683. <enregistrement>
  2684. <hanzi>游泳</hanzi>
  2685. <traditional>游泳</traditional>
  2686. <pinyin>yóu yǒng</pinyin>
  2687. <translation>swim</translation>
  2688. <classifier/>
  2689. <lesson>HSK2</lesson>
  2690. <sound>[sound:##]</sound>
  2691. <origin>HSK New</origin>
  2692. </enregistrement>
  2693. <enregistrement>
  2694. <hanzi>有</hanzi>
  2695. <traditional>有</traditional>
  2696. <pinyin>yǒu</pinyin>
  2697. <translation>to have / there is / there are / to exist / to be</translation>
  2698. <classifier/>
  2699. <lesson>HSK2</lesson>
  2700. <sound>[sound:##]</sound>
  2701. <origin>HSK New</origin>
  2702. </enregistrement>
  2703. <enregistrement>
  2704. <hanzi>右边</hanzi>
  2705. <traditional>右邊</traditional>
  2706. <pinyin>yòu bian</pinyin>
  2707. <translation>right side / right, to the right</translation>
  2708. <classifier/>
  2709. <lesson>HSK2</lesson>
  2710. <sound>[sound:##]</sound>
  2711. <origin>HSK New</origin>
  2712. </enregistrement>
  2713. <enregistrement>
  2714. <hanzi>鱼</hanzi>
  2715. <traditional>魚</traditional>
  2716. <pinyin>yú</pinyin>
  2717. <translation>fish / CL:條|条[tiao2],尾[wei3]</translation>
  2718. <classifier/>
  2719. <lesson>HSK2</lesson>
  2720. <sound>[sound:##]</sound>
  2721. <origin>HSK New</origin>
  2722. </enregistrement>
  2723. <enregistrement>
  2724. <hanzi>元</hanzi>
  2725. <traditional>元</traditional>
  2726. <pinyin>yuán</pinyin>
  2727. <translation>Chinese monetary unit / dollar / primary / first / the Yuan or Mongol dynasty (1279-1368) / surname Yuan</translation>
  2728. <classifier/>
  2729. <lesson>HSK2</lesson>
  2730. <sound>[sound:##]</sound>
  2731. <origin>HSK New</origin>
  2732. </enregistrement>
  2733. <enregistrement>
  2734. <hanzi>远</hanzi>
  2735. <traditional>遠</traditional>
  2736. <pinyin>yuǎn</pinyin>
  2737. <translation>far / distant / remote</translation>
  2738. <classifier/>
  2739. <lesson>HSK2</lesson>
  2740. <sound>[sound:##]</sound>
  2741. <origin>HSK New</origin>
  2742. </enregistrement>
  2743. <enregistrement>
  2744. <hanzi>月</hanzi>
  2745. <traditional>月</traditional>
  2746. <pinyin>yuè</pinyin>
  2747. <translation>moon / month / CL:個|个[ge4],輪|轮[lun2]</translation>
  2748. <classifier/>
  2749. <lesson>HSK2</lesson>
  2750. <sound>[sound:##]</sound>
  2751. <origin>HSK New</origin>
  2752. </enregistrement>
  2753. <enregistrement>
  2754. <hanzi>运动</hanzi>
  2755. <traditional>運動</traditional>
  2756. <pinyin>yùn dòng</pinyin>
  2757. <translation>movement / campaign / CL: 場|场[chang3] / sports</translation>
  2758. <classifier/>
  2759. <lesson>HSK2</lesson>
  2760. <sound>[sound:##]</sound>
  2761. <origin>HSK New</origin>
  2762. </enregistrement>
  2763. <enregistrement>
  2764. <hanzi>再</hanzi>
  2765. <traditional>再</traditional>
  2766. <pinyin>zài</pinyin>
  2767. <translation>again / once more / re- / second / another / then (after sth, and not until then)</translation>
  2768. <classifier/>
  2769. <lesson>HSK2</lesson>
  2770. <sound>[sound:##]</sound>
  2771. <origin>HSK New</origin>
  2772. </enregistrement>
  2773. <enregistrement>
  2774. <hanzi>再见</hanzi>
  2775. <traditional>再見</traditional>
  2776. <pinyin>zài jiàn</pinyin>
  2777. <translation>goodbye / see you again later</translation>
  2778. <classifier/>
  2779. <lesson>HSK2</lesson>
  2780. <sound>[sound:##]</sound>
  2781. <origin>HSK New</origin>
  2782. </enregistrement>
  2783. <enregistrement>
  2784. <hanzi>早上</hanzi>
  2785. <traditional>早上</traditional>
  2786. <pinyin>zǎo shang</pinyin>
  2787. <translation>early morning / CL:個|个[ge4] / Good morning!</translation>
  2788. <classifier/>
  2789. <lesson>HSK2</lesson>
  2790. <sound>[sound:##]</sound>
  2791. <origin>HSK New</origin>
  2792. </enregistrement>
  2793. <enregistrement>
  2794. <hanzi>怎么</hanzi>
  2795. <traditional>怎麼</traditional>
  2796. <pinyin>zěn me</pinyin>
  2797. <translation>how? / what? / why?</translation>
  2798. <classifier/>
  2799. <lesson>HSK2</lesson>
  2800. <sound>[sound:##]</sound>
  2801. <origin>HSK New</origin>
  2802. </enregistrement>
  2803. <enregistrement>
  2804. <hanzi>怎么样</hanzi>
  2805. <traditional>怎麼樣</traditional>
  2806. <pinyin>zěn me yàng</pinyin>
  2807. <translation>how? / how about? / how was it? / how are things?</translation>
  2808. <classifier/>
  2809. <lesson>HSK2</lesson>
  2810. <sound>[sound:##]</sound>
  2811. <origin>HSK New</origin>
  2812. </enregistrement>
  2813. <enregistrement>
  2814. <hanzi>张</hanzi>
  2815. <traditional>張</traditional>
  2816. <pinyin>zhāng</pinyin>
  2817. <translation>to open up / to spread / sheet of paper / classifier for flat objects, sheet / classifier for votes</translation>
  2818. <classifier/>
  2819. <lesson>HSK2</lesson>
  2820. <sound>[sound:##]</sound>
  2821. <origin>HSK New</origin>
  2822. </enregistrement>
  2823. <enregistrement>
  2824. <hanzi>丈夫</hanzi>
  2825. <traditional>丈夫</traditional>
  2826. <pinyin>zhàng fu</pinyin>
  2827. <translation>husband / CL:個|个[ge4]</translation>
  2828. <classifier/>
  2829. <lesson>HSK2</lesson>
  2830. <sound>[sound:##]</sound>
  2831. <origin>HSK New</origin>
  2832. </enregistrement>
  2833. <enregistrement>
  2834. <hanzi>找</hanzi>
  2835. <traditional>找</traditional>
  2836. <pinyin>zhǎo</pinyin>
  2837. <translation>to try to find / to look for / to call on sb / to find / to seek / to return / to give change</translation>
  2838. <classifier/>
  2839. <lesson>HSK2</lesson>
  2840. <sound>[sound:##]</sound>
  2841. <origin>HSK New</origin>
  2842. </enregistrement>
  2843. <enregistrement>
  2844. <hanzi>这</hanzi>
  2845. <traditional>這</traditional>
  2846. <pinyin>zhè</pinyin>
  2847. <translation>this / these / (commonly pr. zhei4 before a classifier, esp. in Beijing)</translation>
  2848. <classifier/>
  2849. <lesson>HSK2</lesson>
  2850. <sound>[sound:##]</sound>
  2851. <origin>HSK New</origin>
  2852. </enregistrement>
  2853. <enregistrement>
  2854. <hanzi>这儿</hanzi>
  2855. <traditional>這兒</traditional>
  2856. <pinyin>zhè r</pinyin>
  2857. <translation>here</translation>
  2858. <classifier/>
  2859. <lesson>HSK2</lesson>
  2860. <sound>[sound:##]</sound>
  2861. <origin>HSK New</origin>
  2862. </enregistrement>
  2863. <enregistrement>
  2864. <hanzi>着</hanzi>
  2865. <traditional>着</traditional>
  2866. <pinyin>zhe</pinyin>
  2867. <translation>particle attached after verb to indicate action in progress, like -ing ending</translation>
  2868. <classifier/>
  2869. <lesson>HSK2</lesson>
  2870. <sound>[sound:##]</sound>
  2871. <origin>HSK New</origin>
  2872. </enregistrement>
  2873. <enregistrement>
  2874. <hanzi>真</hanzi>
  2875. <traditional>真</traditional>
  2876. <pinyin>zhēn</pinyin>
  2877. <translation>really / truly / indeed / real / true / genuine</translation>
  2878. <classifier/>
  2879. <lesson>HSK2</lesson>
  2880. <sound>[sound:##]</sound>
  2881. <origin>HSK New</origin>
  2882. </enregistrement>
  2883. <enregistrement>
  2884. <hanzi>正在</hanzi>
  2885. <traditional>正在</traditional>
  2886. <pinyin>zhèng zài</pinyin>
  2887. <translation>in the process of (doing something or happening) / while (doing)</translation>
  2888. <classifier/>
  2889. <lesson>HSK2</lesson>
  2890. <sound>[sound:##]</sound>
  2891. <origin>HSK New</origin>
  2892. </enregistrement>
  2893. <enregistrement>
  2894. <hanzi>知道</hanzi>
  2895. <traditional>知道</traditional>
  2896. <pinyin>zhī dao</pinyin>
  2897. <translation>to know / to be aware of</translation>
  2898. <classifier/>
  2899. <lesson>HSK2</lesson>
  2900. <sound>[sound:##]</sound>
  2901. <origin>HSK New</origin>
  2902. </enregistrement>
  2903. <enregistrement>
  2904. <hanzi>中国</hanzi>
  2905. <traditional>中國</traditional>
  2906. <pinyin>zhōng guó</pinyin>
  2907. <translation>China / Middle Kingdom</translation>
  2908. <classifier/>
  2909. <lesson>HSK2</lesson>
  2910. <sound>[sound:##]</sound>
  2911. <origin>HSK New</origin>
  2912. </enregistrement>
  2913. <enregistrement>
  2914. <hanzi>中午</hanzi>
  2915. <traditional>中午</traditional>
  2916. <pinyin>zhōng wǔ</pinyin>
  2917. <translation>noon / midday / CL:個|个[ge4]</translation>
  2918. <classifier/>
  2919. <lesson>HSK2</lesson>
  2920. <sound>[sound:##]</sound>
  2921. <origin>HSK New</origin>
  2922. </enregistrement>
  2923. <enregistrement>
  2924. <hanzi>住</hanzi>
  2925. <traditional>住</traditional>
  2926. <pinyin>zhù</pinyin>
  2927. <translation>to live / to dwell / to stay / to reside / to stop</translation>
  2928. <classifier/>
  2929. <lesson>HSK2</lesson>
  2930. <sound>[sound:##]</sound>
  2931. <origin>HSK New</origin>
  2932. </enregistrement>
  2933. <enregistrement>
  2934. <hanzi>准备</hanzi>
  2935. <traditional>準備</traditional>
  2936. <pinyin>zhǔn bèi</pinyin>
  2937. <translation>preparation / prepare</translation>
  2938. <classifier/>
  2939. <lesson>HSK2</lesson>
  2940. <sound>[sound:##]</sound>
  2941. <origin>HSK New</origin>
  2942. </enregistrement>
  2943. <enregistrement>
  2944. <hanzi>桌子</hanzi>
  2945. <traditional>桌子</traditional>
  2946. <pinyin>zhuō zi</pinyin>
  2947. <translation>table / desk / CL:張|张[zhang1],套[tao4]</translation>
  2948. <classifier/>
  2949. <lesson>HSK2</lesson>
  2950. <sound>[sound:##]</sound>
  2951. <origin>HSK New</origin>
  2952. </enregistrement>
  2953. <enregistrement>
  2954. <hanzi>字</hanzi>
  2955. <traditional>字</traditional>
  2956. <pinyin>zì</pinyin>
  2957. <translation>letter / symbol / character / word / CL:個|个[ge4] / courtesy or style name traditionally given to males aged 20 in dynastic China</translation>
  2958. <classifier/>
  2959. <lesson>HSK2</lesson>
  2960. <sound>[sound:##]</sound>
  2961. <origin>HSK New</origin>
  2962. </enregistrement>
  2963. <enregistrement>
  2964. <hanzi>自行车</hanzi>
  2965. <traditional>自行車</traditional>
  2966. <pinyin>zì xíng chē</pinyin>
  2967. <translation>bicycle / bike / CL:輛|辆[liang4]</translation>
  2968. <classifier/>
  2969. <lesson>HSK2</lesson>
  2970. <sound>[sound:##]</sound>
  2971. <origin>HSK New</origin>
  2972. </enregistrement>
  2973. <enregistrement>
  2974. <hanzi>走</hanzi>
  2975. <traditional>走</traditional>
  2976. <pinyin>zǒu</pinyin>
  2977. <translation>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 撤走) / to change (shape, form, meaning)</translation>
  2978. <classifier/>
  2979. <lesson>HSK2</lesson>
  2980. <sound>[sound:##]</sound>
  2981. <origin>HSK New</origin>
  2982. </enregistrement>
  2983. <enregistrement>
  2984. <hanzi>最</hanzi>
  2985. <traditional>最</traditional>
  2986. <pinyin>zuì</pinyin>
  2987. <translation>most / the most / -est</translation>
  2988. <classifier/>
  2989. <lesson>HSK2</lesson>
  2990. <sound>[sound:##]</sound>
  2991. <origin>HSK New</origin>
  2992. </enregistrement>
  2993. <enregistrement>
  2994. <hanzi>昨天</hanzi>
  2995. <traditional>昨天</traditional>
  2996. <pinyin>zuó tiān</pinyin>
  2997. <translation>yesterday</translation>
  2998. <classifier/>
  2999. <lesson>HSK2</lesson>
  3000. <sound>[sound:##]</sound>
  3001. <origin>HSK New</origin>
  3002. </enregistrement>
  3003. <enregistrement>
  3004. <hanzi>左边</hanzi>
  3005. <traditional>左邊</traditional>
  3006. <pinyin>zuǒ bian</pinyin>
  3007. <translation>left / the left side / to the left of</translation>
  3008. <classifier/>
  3009. <lesson>HSK2</lesson>
  3010. <sound>[sound:##]</sound>
  3011. <origin>HSK New</origin>
  3012. </enregistrement>
  3013. <enregistrement>
  3014. <hanzi>坐</hanzi>
  3015. <traditional>坐</traditional>
  3016. <pinyin>zuò</pinyin>
  3017. <translation>to sit / to take a seat / to take (a bus, airplane etc) / to bear fruit / surname Zuo</translation>
  3018. <classifier/>
  3019. <lesson>HSK2</lesson>
  3020. <sound>[sound:##]</sound>
  3021. <origin>HSK New</origin>
  3022. </enregistrement>
  3023. <enregistrement>
  3024. <hanzi>做</hanzi>
  3025. <traditional>做</traditional>
  3026. <pinyin>zuò</pinyin>
  3027. <translation>to do / to make / to produce / to write / to compose / to act as / to engage in / to hold (a party) / to be / to become / to function (in some capacity) / to serve as / to be used for / to form (a bond or relationship) / to pretend / to feign / to act a part / to put on appearance</translation>
  3028. <classifier>NaN</classifier>
  3029. <lesson>undefined</lesson>
  3030. <sound>undefined</sound>
  3031. <origin>undefined</origin>
  3032. </enregistrement>
  3033. </HSK-newtable>