twitter_cldr 3.0.0.beta1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,916 +1,953 @@
1
- ---
2
- :bn:
3
- :currencies:
4
- :ADP:
5
- :one: এ্যান্ডোরান পেসেতা
6
- :other: Andorran pesetas
7
- :AED:
8
- :one: সংযুক্ত আরব আমিরাত দিরহাম
9
- :other: UAE dirhams
10
- :AFA:
11
- :one: আফগানি (১৯২৭-২০০২)
12
- :other: Afghan afghanis (1927-2002)
13
- :AFN:
14
- :one: আফগানি
15
- :other: Afghan Afghanis
16
- :ALK:
17
- :one: Albanian lek (1946-1965)
18
- :other: Albanian lekë (1946-1965)
19
- :ALL:
20
- :one: আলবেনিয়ান লেক
21
- :other: Albanian lekë
22
- :AMD:
23
- :one: আরমেনিয়ান দ্রাম
24
- :other: Armenian drams
25
- :ANG:
26
- :one: নেদারল্যান্ড এ্যান্টিলিয়ান গুল্ডের
27
- :other: Netherlands Antillean guilders
28
- :AOA:
29
- :one: এ্যাঙ্গোলান কওয়ানজা
30
- :other: Angolan kwanzas
31
- :AOK:
32
- :one: এ্যাঙ্গোলান কওয়ানজা (১৯৭৭-১৯৯০)
33
- :other: Angolan kwanzas (1977-1991)
34
- :AON:
35
- :one: এ্যাঙ্গোলান নতুন কওয়ানজা (১৯৯৫-২০০০)
36
- :other: Angolan new kwanzas (1990-2000)
37
- :AOR:
38
- :one: এ্যাঙ্গোলান কওয়ানজা (১৯৯৫-১৯৯৯)
39
- :other: Angolan readjusted kwanzas (1995-1999)
40
- :ARA:
41
- :one: আর্জেন্টিনা অস্ট্রাল
42
- :other: Argentine australs
43
- :ARL:
44
- :one: Argentine peso ley (1970-1983)
45
- :other: Argentine pesos ley (1970-1983)
46
- :ARM:
47
- :one: Argentine peso (1881-1970)
48
- :other: Argentine pesos (1881-1970)
49
- :ARP:
50
- :one: আর্জেন্টিনা পেসো (১৯৮৩-১৯৮৫)
51
- :other: Argentine pesos (1983-1985)
52
- :ARS:
53
- :one: আর্জেন্টিনা পেসো
54
- :other: Argentine pesos
55
- :ATS:
56
- :one: অস্ট্রিয়ান শিলিং
57
- :other: Austrian schillings
58
- :AUD:
59
- :one: অস্ট্রেলিয়ান ডলার
60
- :other: Australian dollars
61
- :symbol: A$
62
- :AWG:
63
- :one: আরুবা গিল্ডার
64
- :other: Aruban florin
65
- :AZM:
66
- :one: আজারবাইজান মানাত (১৯৯৩-২০০৬)
67
- :other: Azerbaijani manats (1993-2006)
68
- :AZN:
69
- :one: আজারবাইজান মানাত
70
- :other: Azerbaijani manats
71
- :BAD:
72
- :one: বসনিয়া এবং হার্জেগোভিনা দিনার
73
- :other: Bosnia-Herzegovina dinars (1992-1994)
74
- :BAM:
75
- :one: বসনিয়া এবং হার্জেগোভিনা মার্ক
76
- :other: Bosnia-Herzegovina convertible marks
77
- :BAN:
78
- :one: Bosnia-Herzegovina new dinar (1994-1997)
79
- :other: Bosnia-Herzegovina new dinars (1994-1997)
80
- :BBD:
81
- :one: বার্বেডোজ ডলার
82
- :other: Barbadian dollars
83
- :BDT:
84
- :one: বাংলাদেশী টাকা
85
- :other: Bangladeshi takas
86
- :symbol:
87
- :BEC:
88
- :one: বেলজিয়ান ফ্রাঙ্ক (রূপান্তরযোগ্য)
89
- :other: Belgian francs (convertible)
90
- :BEF:
91
- :one: বেলজিয়ান ফ্রাঙ্ক
92
- :other: Belgian francs
93
- :BEL:
94
- :one: বেলজিয়ান ফ্রাঙ্ক (আর্থিক)
95
- :other: Belgian francs (financial)
96
- :BGL:
97
- :one: বুলগেরীয় হার্ড লেভ
98
- :other: Bulgarian hard leva
99
- :BGM:
100
- :one: Bulgarian socialist lev
101
- :other: Bulgarian socialist leva
102
- :BGN:
103
- :one: বুলগেরীয় নিউ লেভ
104
- :other: Bulgarian leva
105
- :BGO:
106
- :one: Bulgarian lev (1879-1952)
107
- :other: Bulgarian leva (1879-1952)
108
- :BHD:
109
- :one: বাহরাইনি দিনার
110
- :other: Bahraini dinars
111
- :BIF:
112
- :one: বুরুন্ডি ফ্রাঙ্ক
113
- :other: Burundian francs
114
- :BMD:
115
- :one: বারমিউডান ডলার
116
- :other: Bermudan dollars
117
- :BND:
118
- :one: ব্রুনেই ডলার
119
- :other: Brunei dollars
120
- :BOB:
121
- :one: বলিভিয়ানো
122
- :other: Bolivian bolivianos
123
- :BOL:
124
- :one: Bolivian boliviano (1863-1963)
125
- :other: Bolivian bolivianos (1863-1963)
126
- :BOP:
127
- :one: বলিভিয়ান পেসো
128
- :other: Bolivian pesos
129
- :BOV:
130
- :one: বলিভিয়ান মভডোল
131
- :other: Bolivian mvdols
132
- :BRB:
133
- :one: ব্রাজিলিয়ান ক্রুজেয়রোনোভো (১৯৬৭-১৯৮৬)
134
- :other: Brazilian new cruzeiros (1967-1986)
135
- :BRC:
136
- :one: ব্রাজিলিয়ান ক্রুজেইডাউ
137
- :other: Brazilian cruzados (1986-1989)
138
- :BRE:
139
- :one: ব্রাজিলিয়ান ক্রুজেয়রো (১৯৯০-১৯৯৩)
140
- :other: Brazilian cruzeiros (1990-1993)
141
- :BRL:
142
- :one: ব্রাজিলিয়ান রিয়েল
143
- :other: Brazilian reals
144
- :symbol: R$
145
- :BRN:
146
- :one: ব্রাজিলিয়ান ক্রুজেইডো নোভো
147
- :other: Brazilian new cruzados (1989-1990)
148
- :BRR:
149
- :one: ব্রাজিলিয়ান ক্রুজেয়রো
150
- :other: Brazilian cruzeiros (1993-1994)
151
- :BRZ:
152
- :one: Brazilian cruzeiro (1942-1967)
153
- :other: Brazilian cruzeiros (1942-1967)
154
- :BSD:
155
- :one: বাহামিয়ান ডলার
156
- :other: Bahamian dollars
157
- :BTN:
158
- :one: ভুটানি এনগুল্ট্রুম
159
- :other: Bhutanese ngultrums
160
- :BUK:
161
- :one: বর্মি কিয়াৎ
162
- :other: Burmese kyats
163
- :BWP:
164
- :one: বতসোয়ানা পুলা
165
- :other: Botswanan pulas
166
- :BYB:
167
- :one: বেলারুশিয়ান নিউ রুবেল (১৯৯৪-১৯৯৯)
168
- :other: Belarusian new rubles (1994-1999)
169
- :BYR:
170
- :one: বেলারুশিয়ান রুবেল
171
- :other: Belarusian rubles
172
- :BZD:
173
- :one: বেলিজ ডলার
174
- :other: Belize dollars
175
- :CAD:
176
- :one: কানাডিয়ান ডলার
177
- :other: Canadian dollars
178
- :symbol: CA$
179
- :CDF:
180
- :one: কঙ্গো ফ্র্যাঙ্ক কঙ্গোলাইস
181
- :other: Congolese francs
182
- :CHE:
183
- :one: সুইজারল্যান্ড ইউরো
184
- :other: WIR euros
185
- :CHF:
186
- :one: সুইস ফ্রাঙ্ক
187
- :other: Swiss francs
188
- :CHW:
189
- :one: সুইজারল্যান্ড ফ্রাঙ্ক
190
- :other: WIR francs
191
- :CLE:
192
- :one: Chilean escudo
193
- :other: Chilean escudos
194
- :CLF:
195
- :one: চিলিয়ান উনিদাদেস দি ফোমেন্তো
196
- :other: Chilean units of account (UF)
197
- :CLP:
198
- :one: চিলি পেসো
199
- :other: Chilean pesos
200
- :CNX:
201
- :one: Chinese People’s Bank dollar
202
- :other: Chinese People’s Bank dollars
203
- :CNY:
204
- :one: চীনা য়ুয়ান রেন্মিন্‌বি
205
- :other: Chinese yuan
206
- :symbol: CN¥
207
- :COP:
208
- :one: কলোম্বিয়ান পেসো
209
- :other: Colombian pesos
210
- :COU:
211
- :one: উনিদাদ দি ভ্যালোর রিয়েল
212
- :other: Colombian real value units
213
- :CRC:
214
- :one: কোস্টা রিকা কোলোন
215
- :other: Costa Rican colóns
216
- :CSD:
217
- :one: প্রাচীন সারবিয়ান দিনার
218
- :other: Serbian dinars (2002-2006)
219
- :CSK:
220
- :one: চেকোস্লোভাক হার্ড কোরুনা
221
- :other: Czechoslovak hard korunas
222
- :CUC:
223
- :one: কিউবান রূপান্তরযোগ্য পেসো
224
- :other: Cuban convertible pesos
225
- :CUP:
226
- :one: কিউবান পেসো
227
- :other: Cuban pesos
228
- :CVE:
229
- :one: কেপ ভার্দে এসকুডো
230
- :other: Cape Verdean escudos
231
- :CYP:
232
- :one: সাইপ্রাস পাউন্ড
233
- :other: Cypriot pounds
234
- :CZK:
235
- :one: চেকোস্লোভাক কোরুনা
236
- :other: Czech Republic korunas
237
- :DDM:
238
- :one: পূর্ব জার্মান মার্ক
239
- :other: East German marks
240
- :DEM:
241
- :one: ডয়চ্ মার্ক
242
- :other: German marks
243
- :DJF:
244
- :one: জিবুতি ফ্রাঙ্ক
245
- :other: Djiboutian francs
246
- :DKK:
247
- :one: ড্যানিশ ক্রৌন
248
- :other: Danish kroner
249
- :DOP:
250
- :one: ডোমিনিকান পেসো
251
- :other: Dominican pesos
252
- :DZD:
253
- :one: আলজেরীয় দিনার
254
- :other: Algerian dinars
255
- :ECS:
256
- :one: ইকুয়াডোর সুক্রে
257
- :other: Ecuadorian sucres
258
- :ECV:
259
- :one: ইকুয়াডোর উনিদাদেস দি ভেলর কনসতান্তে (ইউভিসি)
260
- :other: Ecuadorian units of constant value
261
- :EEK:
262
- :one: এস্তোনিয়া ক্রুনি
263
- :other: Estonian kroons
264
- :EGP:
265
- :one: মিশরীয় পাউন্ড
266
- :other: Egyptian pounds
267
- :ERN:
268
- :one: এরিট্রিয়েন নাকফা
269
- :other: Eritrean nakfas
270
- :ESA:
271
- :one: স্প্যানিশ পেসেতা (একই হিসাব)
272
- :other: Spanish pesetas (A account)
273
- :ESB:
274
- :one: স্প্যানিশ পেসেতা (রূপান্তরযোগ্য হিসাব)
275
- :other: Spanish pesetas (convertible account)
276
- :ESP:
277
- :one: স্প্যানিশ পেসেতা
278
- :other: Spanish pesetas
279
- :ETB:
280
- :one: ইথিওপিয়ান বির
281
- :other: Ethiopian birrs
282
- :EUR:
283
- :one: ইউরো
284
- :other: euros
285
- :symbol:
286
- :FIM:
287
- :one: ফিনিস মার্কা
288
- :other: Finnish markkas
289
- :FJD:
290
- :one: ফিজি ডলার
291
- :other: Fijian dollars
292
- :FKP:
293
- :one: ফকল্যান্ড দ্বীপপুঞ্জ পাউন্ড
294
- :other: Falkland Islands pounds
295
- :FRF:
296
- :one: ফরাসি ফ্রাঙ্ক
297
- :other: French francs
298
- :GBP:
299
- :one: ব্রিটিশ পাউন্ড স্টার্লিং
300
- :other: British pounds sterling
301
- :symbol: £
302
- :GEK:
303
- :one: জর্জিয়ান কুপন লারিট
304
- :other: Georgian kupon larits
305
- :GEL:
306
- :one: জর্জিয়ান লারি
307
- :other: Georgian laris
308
- :GHC:
309
- :one: ঘানা সেডি (১৯৭৯-২০০৭)
310
- :other: Ghanaian cedis (1979-2007)
311
- :GHS:
312
- :one: ঘানা সেডি
313
- :other: Ghanaian cedis
314
- :GIP:
315
- :one: জিব্রাল্টার পাউন্ড
316
- :other: Gibraltar pounds
317
- :GMD:
318
- :one: গাম্বিয়া ডালাসি
319
- :other: Gambian dalasis
320
- :GNF:
321
- :one: গিনি ফ্রাঙ্ক
322
- :other: Guinean francs
323
- :GNS:
324
- :one: গিনি সাইলি
325
- :other: Guinean sylis
326
- :GQE:
327
- :one: ইকুয়েটোরিয়াল গিনি ইকুয়িলি
328
- :other: Equatorial Guinean ekwele
329
- :GRD:
330
- :one: গ্রীক দ্রাচমা
331
- :other: Greek drachmas
332
- :GTQ:
333
- :one: গুয়াতেমালা কুয়েৎজাল
334
- :other: গুয়াতেমালা কুয়েৎজাল
335
- :GWE:
336
- :one: পর্তুগিজ গিনি এসকুডো
337
- :other: Portuguese Guinea escudos
338
- :GWP:
339
- :one: গিনি বিসাউ পেসো
340
- :other: Guinea-Bissau pesos
341
- :GYD:
342
- :one: গাইয়েনা ডলার
343
- :other: Guyanaese dollars
344
- :HKD:
345
- :one: হংকং ডলার
346
- :other: Hong Kong dollars
347
- :symbol: HK$
348
- :HNL:
349
- :one: হন্ডুরাস লেম্পিরা
350
- :other: Honduran lempiras
351
- :HRD:
352
- :one: ক্রোয়েশিয়ান দিনার
353
- :other: Croatian dinars
354
- :HRK:
355
- :one: ক্রোয়েশিয়ান কুনাস
356
- :other: ক্রোয়েশিয়ান কুনাস
357
- :HTG:
358
- :one: হাইতি গৌর্দে
359
- :other: Haitian gourdes
360
- :HUF:
361
- :one: হাঙ্গেরিয়ান ফোরিন্ট
362
- :other: Hungarian forints
363
- :IDR:
364
- :one: ইন্দোনেশিয়ান রুপিয়াহ
365
- :other: Indonesian rupiahs
366
- :IEP:
367
- :one: ইরিশ পাউন্ড
368
- :other: Irish pounds
369
- :ILP:
370
- :one: ইস্রাইলি পাউন্ড
371
- :other: Israeli pounds
372
- :ILR:
373
- :one: Israeli sheqel (1980-1985)
374
- :other: Israeli sheqels (1980-1985)
375
- :ILS:
376
- :one: ইস্রাইলি নতুন শেকেল
377
- :other: Israeli new sheqels
378
- :symbol:
379
- :INR:
380
- :one: ভারতীয় রুপি
381
- :other: Indian rupees
382
- :symbol:
383
- :IQD:
384
- :one: ইরাকি দিনার
385
- :other: Iraqi dinars
386
- :IRR:
387
- :one: ইরানিয়ান রিয়াল
388
- :other: Iranian rials
389
- :ISJ:
390
- :one: Icelandic króna (1918-1981)
391
- :other: Icelandic krónur (1918-1981)
392
- :ISK:
393
- :one: আইসল্যান্ড ক্রৌন
394
- :other: Icelandic krónur
395
- :ITL:
396
- :one: ইতালীয় লিরা
397
- :other: Italian liras
398
- :JMD:
399
- :one: জ্যামাইকান ডলার
400
- :other: Jamaican dollars
401
- :JOD:
402
- :one: জর্ডানিয়ান দিনার
403
- :other: Jordanian dinars
404
- :JPY:
405
- :one: জাপানিজ ইয়েন
406
- :other: Japanese yen
407
- :symbol: ¥
408
- :KES:
409
- :one: কেনিয়ান শিলিং
410
- :other: Kenyan shillings
411
- :KGS:
412
- :one: কিরগিজস্তান সোম
413
- :other: Kyrgystani soms
414
- :KHR:
415
- :one: কম্বোডিয়ান রিয়েল
416
- :other: Cambodian riels
417
- :KMF:
418
- :one: কম্বোরো ফ্রাঙ্ক
419
- :other: Comorian francs
420
- :KPW:
421
- :one: নাইজেরিয়ান পাউন্ড
422
- :other: North Korean won
423
- :KRH:
424
- :one: South Korean hwan (1953-1962)
425
- :other: South Korean hwan (1953-1962)
426
- :KRO:
427
- :one: South Korean won (1945-1953)
428
- :other: South Korean won (1945-1953)
429
- :KRW:
430
- :one: দক্ষিণ কোরিয়ান ওন
431
- :other: South Korean won
432
- :symbol:
433
- :KWD:
434
- :one: কুয়েতি দিনার
435
- :other: Kuwaiti dinars
436
- :KYD:
437
- :one: কেম্যান দ্বীপপুঞ্জের ডলার
438
- :other: Cayman Islands dollars
439
- :KZT:
440
- :one: কাজাক্সটান টেঙ্গে
441
- :other: Kazakhstani tenges
442
- :LAK:
443
- :one: লেউশান কিপ
444
- :other: Laotian kips
445
- :LBP:
446
- :one: লেবানিজ পাউন্ড
447
- :other: Lebanese pounds
448
- :LKR:
449
- :one: শ্রীলঙ্কান রুপি
450
- :other: Sri Lankan rupees
451
- :LRD:
452
- :one: লাইবেরিয়ান ডলার
453
- :other: Liberian dollars
454
- :LSL:
455
- :one: লেসুটু লোটি
456
- :other: Lesotho lotis
457
- :LTL:
458
- :one: লিথুইনিয়ান লিটা
459
- :other: Lithuanian litai
460
- :LTT:
461
- :one: লিথুইনিয়ান টালোন্যাস
462
- :other: Lithuanian talonases
463
- :LUC:
464
- :one: লুক্সেমবার্গ রুপান্তযোগ্য ফ্রাঙ্ক
465
- :other: Luxembourgian convertible francs
466
- :LUF:
467
- :one: লুক্সেমবার্গ ফ্রাঙ্ক
468
- :other: Luxembourgian francs
469
- :LUL:
470
- :one: লুক্সেমবার্গ ফাইনেনশিয়াল ফ্রাঙ্ক
471
- :other: Luxembourg financial francs
472
- :LVL:
473
- :one: ল্যাটভিয়ান ল্যাট্‌স
474
- :other: Latvian lati
475
- :LVR:
476
- :one: ল্যাটভিয়ান রুবল
477
- :other: Latvian rubles
478
- :LYD:
479
- :one: লিবিয়ান ডলার
480
- :other: Libyan dinars
481
- :MAD:
482
- :one: মোরোক্কান দিরহাম
483
- :other: Moroccan dirhams
484
- :MAF:
485
- :one: মোরোক্কান ফ্রাঙ্ক
486
- :other: Moroccan francs
487
- :MCF:
488
- :one: Monegasque franc
489
- :other: Monegasque francs
490
- :MDC:
491
- :one: Moldovan cupon
492
- :other: Moldovan cupon
493
- :MDL:
494
- :one: মোল্ডোভান লেয়ু
495
- :other: Moldovan lei
496
- :MGA:
497
- :one: মাদাগাস্কার আরিয়ারি
498
- :other: Malagasy Ariaries
499
- :MGF:
500
- :one: মাদাগাস্কার ফ্রাঙ্ক
501
- :other: Malagasy francs
502
- :MKD:
503
- :one: ম্যাসেডোনিয়ান দিনার
504
- :other: Macedonian denari
505
- :MKN:
506
- :one: Macedonian denar (1992-1993)
507
- :other: Macedonian denari (1992-1993)
508
- :MLF:
509
- :one: মালি ফ্রাঙ্ক
510
- :other: Malian francs
511
- :MMK:
512
- :one: মায়ানমার কিয়াত
513
- :other: Myanma kyats
514
- :MNT:
515
- :one: মঙ্গোলিয়ান তুগরিক
516
- :other: Mongolian tugriks
517
- :MOP:
518
- :one: ম্যাক্যাও পাটাকা
519
- :other: Macanese patacas
520
- :MRO:
521
- :one: মৌরিতানিয়ান ওউগুইয়া
522
- :other: Mauritanian ouguiyas
523
- :MTL:
524
- :one: মাল্টা লিরা
525
- :other: Maltese lira
526
- :MTP:
527
- :one: মাল্টা পাউন্ড
528
- :other: Maltese pounds
529
- :MUR:
530
- :one: মৌরিতানিয়ান রুপি
531
- :other: Mauritian rupees
532
- :MVP:
533
- :one: Maldivian rupee
534
- :other: Maldivian rupees
535
- :MVR:
536
- :one: মালদিভিয়ান রুফিয়া
537
- :other: Maldivian rufiyaas
538
- :MWK:
539
- :one: মালাউইয়ান কওয়াচ
540
- :other: Malawian Kwachas
541
- :MXN:
542
- :one: ম্যাক্সিকান পেসো
543
- :other: Mexican pesos
544
- :symbol: MX$
545
- :MXP:
546
- :one: ম্যাক্সিকান সিলভার পেসো (১৮৬১-১৯৯২)
547
- :other: Mexican silver pesos (1861-1992)
548
- :MXV:
549
- :one: মেক্সিকান উনিদাদ দি ইনভার্সান (UDI)
550
- :other: Mexican investment units
551
- :MYR:
552
- :one: মালয়েশিয়ান রিঙ্গিৎ
553
- :other: Malaysian ringgits
554
- :MZE:
555
- :one: মোজাম্বিক এসকুডো
556
- :other: Mozambican escudos
557
- :MZM:
558
- :one: প্রাচীন মোজাম্বিক মেটিকেল
559
- :other: Mozambican meticals (1980-2006)
560
- :MZN:
561
- :one: মোজাম্বিক মেটিকেল
562
- :other: Mozambican meticals
563
- :NAD:
564
- :one: নামিবিয়া ডলার
565
- :other: Namibian dollars
566
- :NGN:
567
- :one: নাইজেরিয়ান নায়রা
568
- :other: Nigerian nairas
569
- :NIC:
570
- :one: নিকারাগুয়ান কর্ডোবা (১৯৮৮-১৯৯১)
571
- :other: Nicaraguan córdobas (1988-1991)
572
- :NIO:
573
- :one: নিকারাগুয়ান কর্ডোবা
574
- :other: Nicaraguan córdobas
575
- :NLG:
576
- :one: নেদারল্যান্ড গুল্ডের
577
- :other: Dutch guilders
578
- :NOK:
579
- :one: নরওয়ে ক্রৌন
580
- :other: Norwegian kroner
581
- :NPR:
582
- :one: নেপালি রুপি
583
- :other: Nepalese rupees
584
- :NZD:
585
- :one: নিউজিল্যান্ড ডলার
586
- :other: New Zealand dollars
587
- :symbol: NZ$
588
- :OMR:
589
- :one: ওমানি রিয়াল
590
- :other: Omani rials
591
- :PAB:
592
- :one: পানামা বেলবোয়া
593
- :other: Panamanian balboas
594
- :PEI:
595
- :one: পেরুভিয়ান ইন্তি
596
- :other: Peruvian intis
597
- :PEN:
598
- :one: পেরুভিয়ান সোল নুয়েভো
599
- :other: Peruvian nuevos soles
600
- :PES:
601
- :one: পেরুভিয়ান সোল
602
- :other: Peruvian soles (1863-1965)
603
- :PGK:
604
- :one: পপুয়ানিউগিনি কিনা
605
- :other: Papua New Guinean kina
606
- :PHP:
607
- :one: ফিলিপাইন পেসো
608
- :other: Philippine pesos
609
- :PKR:
610
- :one: পাকিস্তানি রুপি
611
- :other: Pakistani rupees
612
- :PLN:
613
- :one: পোলিশ জ্লোটি
614
- :other: Polish zlotys
615
- :PLZ:
616
- :one: পোলিশ জ্লোটি (১৯৫০-১৯৯৫)
617
- :other: Polish zlotys (PLZ)
618
- :PTE:
619
- :one: পর্তুগিজ এসকুডো
620
- :other: Portuguese escudos
621
- :PYG:
622
- :one: প্যারগুয়ান
623
- :other: Paraguayan guaranis
624
- :QAR:
625
- :one: কাতার রিয়্যাল
626
- :other: Qatari rials
627
- :RHD:
628
- :one: রোডেশিয়ান ডলার
629
- :other: Rhodesian dollars
630
- :ROL:
631
- :one: প্রাচীন রুমানিয়া লেয়ু
632
- :other: Romanian Lei (1952-2006)
633
- :RON:
634
- :one: রুমানিয়া লেয়ু
635
- :other: Romanian lei
636
- :RSD:
637
- :one: সারবিয়ান দিনার
638
- :other: Serbian dinars
639
- :RUB:
640
- :one: রাশিয়ান রুবেল
641
- :other: Russian rubles
642
- :RUR:
643
- :one: রাশিয়ান রুবল (১৯৯১-১৯৯৮)
644
- :other: Russian rubles (1991-1998)
645
- :RWF:
646
- :one: রুয়ান্ডান ফ্রাঙ্ক
647
- :other: Rwandan francs
648
- :SAR:
649
- :one: সৌদি রিয়্যাল
650
- :other: Saudi riyals
651
- :SBD:
652
- :one: সলোমন দ্বীপপুঞ্জ ডলার
653
- :other: Solomon Islands dollars
654
- :SCR:
655
- :one: সেয়চেল্লোইস রুপি
656
- :other: Seychellois rupees
657
- :SDD:
658
- :one: প্রাচীন সুদানি দিনার
659
- :other: Sudanese dinars (1992-2007)
660
- :SDG:
661
- :one: সুদানি পাউন্ড
662
- :other: সুদানি পাউন্ড
663
- :SDP:
664
- :one: প্রাচীন সুদানি পাউন্ড
665
- :other: Sudanese pounds (1957-1998)
666
- :SEK:
667
- :one: সুইডিশ ক্রোনা
668
- :other: Swedish kronor
669
- :SGD:
670
- :one: সিঙ্গাপুর ডলার
671
- :other: Singapore dollars
672
- :SHP:
673
- :one: সেন্ট হেলেনা পাউন্ড
674
- :other: Saint Helena pounds
675
- :SIT:
676
- :one: স্লোভানিয়া টোলার
677
- :other: Slovenian tolars
678
- :SKK:
679
- :one: স্লোভাক কোরুনা
680
- :other: Slovak korunas
681
- :SLL:
682
- :one: সিয়েরালিয়ন লিয়ন
683
- :other: Sierra Leonean leones
684
- :SOS:
685
- :one: সোমালি শিলিং
686
- :other: Somali shillings
687
- :SRD:
688
- :one: সুরিনাম ডলার
689
- :other: Surinamese dollars
690
- :SRG:
691
- :one: সুরিনাম গিল্ডার
692
- :other: Surinamese guilders
693
- :SSP:
694
- :one: দক্ষিণ সুদানি পাউন্ড
695
- :other: South Sudanese pounds
696
- :STD:
697
- :one: সাও টোমে এবং প্রিন্সিপে ডোবরা
698
- :other: São Tomé and Príncipe dobras
699
- :SUR:
700
- :one: সোভিয়েত রুবল
701
- :other: Soviet roubles
702
- :SVC:
703
- :one: এল স্যালভোডোর কোলোন
704
- :other: Salvadoran colones
705
- :SYP:
706
- :one: সিরিয়ান পাউন্ড
707
- :other: Syrian pounds
708
- :SZL:
709
- :one: সোয়াজিল্যান্ড লিলাঙ্গেনি
710
- :other: Swazi emalangeni
711
- :THB:
712
- :one: থাই বাত
713
- :other: Thai baht
714
- :symbol: ฿
715
- :TJR:
716
- :one: তাজিকিস্তান রুবল
717
- :other: Tajikistani rubles
718
- :TJS:
719
- :one: তাজিকিস্তান সোমোনি
720
- :other: Tajikistani somonis
721
- :TMM:
722
- :one: তুর্কমেনিস্টানি মানাত
723
- :other: Turkmenistani manat (1993-2009)
724
- :TMT:
725
- :one: তুর্কমেনিস্তান নতুন মানত
726
- :other: Turkmenistani manat
727
- :TND:
728
- :one: তিউনেশিয়ান দিনার
729
- :other: Tunisian dinars
730
- :TOP:
731
- :one: টোঙ্গা পা’আঙ্গা
732
- :other: Tongan paʻanga
733
- :TPE:
734
- :one: তিমুর এসকুডো
735
- :other: Timorese escudos
736
- :TRL:
737
- :one: প্রাচীন তুর্কি লিরা
738
- :other: Turkish Lira (1922-2005)
739
- :TRY:
740
- :one: তুর্কি লিরা
741
- :other: Turkish Lira
742
- :TTD:
743
- :one: ত্রিনিদাদ এবং টোবাগো ডলার
744
- :other: Trinidad and Tobago dollars
745
- :TWD:
746
- :one: নূতন তাইওয়ান ক্যারাবিয়ান ডলার
747
- :other: New Taiwan dollars
748
- :symbol: NT$
749
- :TZS:
750
- :one: তাঞ্জনিয়া শিলিং
751
- :other: Tanzanian shillings
752
- :UAH:
753
- :one: ইউক্রেইন হৃভনিয়া
754
- :other: Ukrainian hryvnias
755
- :UAK:
756
- :one: ইউক্রেইন কার্বোভ্যান্টস
757
- :other: Ukrainian karbovantsiv
758
- :UGS:
759
- :one: উগান্ডান শিলিং (১৯৬৬-১৯৮৭)
760
- :other: Ugandan shillings (1966-1987)
761
- :UGX:
762
- :one: উগান্ডান শিলিং
763
- :other: Ugandan shillings
764
- :USD:
765
- :one: মার্কিন ডলার
766
- :other: US dollars
767
- :symbol: $
768
- :USN:
769
- :one: মার্কিন ডলার (পরবর্তী দিন)
770
- :other: US dollars (next day)
771
- :USS:
772
- :one: মার্কিন ডলার (একই দিন)
773
- :other: US dollars (same day)
774
- :UYI:
775
- :one: উরুগুয়ায়ান পেসো এন উনিদাদেস ইনডেক্সেডাস
776
- :other: Uruguayan pesos (indexed units)
777
- :UYP:
778
- :one: উরুগুয়ে পেসো (১৯৭৫-১৯৯৩)
779
- :other: Uruguayan pesos (1975-1993)
780
- :UYU:
781
- :one: উরুগুয়ে পেসো উরুগুয়েও
782
- :other: Uruguayan pesos
783
- :UZS:
784
- :one: উজবেকিস্তানি সোম
785
- :other: Uzbekistan som
786
- :VEB:
787
- :one: ভেনিজুয়েলান বলিভার (১৮৭১-২০০৮)
788
- :other: Venezuelan bolívars (1871-2008)
789
- :VEF:
790
- :one: ভেনিজুয়েলীয় বলিভার
791
- :other: Venezuelan bolívars
792
- :VND:
793
- :one: ভিয়েতনামি ডঙ্গ
794
- :other: Vietnamese dong
795
- :symbol:
796
- :VNN:
797
- :one: Vietnamese dong (1978-1985)
798
- :other: Vietnamese dong (1978-1985)
799
- :VUV:
800
- :one: ভানুয়াতু ভাতু
801
- :other: Vanuatu vatus
802
- :WST:
803
- :one: পশ্চিমাঞ্চলীয় সামোয়ান টালা
804
- :other: Samoan tala
805
- :XAF:
806
- :one: সিএফএ ফ্র্যাঙ্ক বিইএসি
807
- :other: CFA francs BEAC
808
- :symbol: FCFA
809
- :XAG:
810
- :one: সিলভার
811
- :other: troy ounces of silver
812
- :XAU:
813
- :one: গোল্ড
814
- :other: troy ounces of gold
815
- :XBA:
816
- :one: European composite unit
817
- :other: European composite units
818
- :XBB:
819
- :one: ইউরোপীয় আর্থিক একক
820
- :other: European monetary units
821
- :XBC:
822
- :one: European unit of account (XBC)
823
- :other: European units of account (XBC)
824
- :XBD:
825
- :one: European unit of account (XBD)
826
- :other: European units of account (XBD)
827
- :XCD:
828
- :one: পূর্ব ক্যারাবিয়ান ডলার
829
- :other: East Caribbean dollars
830
- :symbol: EC$
831
- :XDR:
832
- :one: special drawing rights
833
- :other: special drawing rights
834
- :XEU:
835
- :one: ইউরোপীয় মুদ্রা একক
836
- :other: European currency units
837
- :XFO:
838
- :one: ফরাসি গোল্ড ফ্রাঙ্ক
839
- :other: French gold francs
840
- :XFU:
841
- :one: ফরাসি ইউআইসি - ফ্রাঙ্ক
842
- :other: French UIC-francs
843
- :XOF:
844
- :one: সিএফএ ফ্র্যাঙ্ক বিসিইএও
845
- :other: CFA francs BCEAO
846
- :symbol: CFA
847
- :XPD:
848
- :one: প্যালেডিয়াম
849
- :other: troy ounces of palladium
850
- :XPF:
851
- :one: সিএফপি ফ্র্যাঙ্ক
852
- :other: CFP francs
853
- :symbol: CFPF
854
- :XPT:
855
- :one: প্লাটিনাম
856
- :other: troy ounces of platinum
857
- :XRE:
858
- :one: RINET Funds unit
859
- :other: RINET Funds units
860
- :XSU:
861
- :one: Sucre
862
- :other: Sucres
863
- :XTS:
864
- :one: Testing Currency unit
865
- :other: Testing Currency units
866
- :XUA:
867
- :one: ADB unit of account
868
- :other: ADB units of account
869
- :XXX:
870
- :one: অজানা বা ভুল মুদ্রা
871
- :other: (unknown currency)
872
- :YDD:
873
- :one: ইয়েমেনি দিনার
874
- :other: Yemeni dinars
875
- :YER:
876
- :one: ইয়েমেনি রিয়াল
877
- :other: Yemeni rials
878
- :YUD:
879
- :one: যুগোশ্লাভিয় হার্ড দিনার
880
- :other: Yugoslavian hard dinars (1966-1990)
881
- :YUM:
882
- :one: যুগোশ্লাভিয় নোভি দিনার
883
- :other: Yugoslavian new dinars (1994-2002)
884
- :YUN:
885
- :one: যুগোশ্লাভিয় রুপান্তরযোগ্য দিনার
886
- :other: Yugoslavian convertible dinars (1990-1992)
887
- :YUR:
888
- :one: Yugoslavian reformed dinar (1992-1993)
889
- :other: Yugoslavian reformed dinars (1992-1993)
890
- :ZAL:
891
- :one: দক্ষিণ আফ্রিকান র‌্যান্ড
892
- :other: South African rands (financial)
893
- :ZAR:
894
- :one: দক্ষিণ আফ্রিকান রেন্ড
895
- :other: South African rand
896
- :ZMK:
897
- :one: জাম্বিয়ান কওয়াচা (১৯৬৮-২০১২)
898
- :other: Zambian kwachas (1968-2012)
899
- :ZMW:
900
- :one: জাম্বিয়ান কওয়াচা
901
- :other: Zambian kwachas
902
- :ZRN:
903
- :one: জাইরিয়ান নিউ জাইরে
904
- :other: Zairean new zaires (1993-1998)
905
- :ZRZ:
906
- :one: জাইরিয়ান জাইরে
907
- :other: Zairean zaires (1971-1993)
908
- :ZWD:
909
- :one: জিম্বাবুয়ে ডলার (১৯৮০-২০০৮)
910
- :other: Zimbabwean dollars (1980-2008)
911
- :ZWL:
912
- :one: জিম্বাবুয়ে ডলার (২০০৯)
913
- :other: Zimbabwean dollars (2009)
914
- :ZWR:
915
- :one: জিম্বাবুয়ে ডলার (২০০৮)
916
- :other: Zimbabwean dollars (2008)
1
+ ---
2
+ :bn:
3
+ :currencies:
4
+ :ADP:
5
+ :one: "এ্যান্ডোরান পেসেতা"
6
+ :other: "Andorran pesetas"
7
+ :AED:
8
+ :one: "সংযুক্ত আরব আমিরাত দিরহাম"
9
+ :other: "সংযুক্ত আরব আমিরাত দিরহাম"
10
+ :AFA:
11
+ :one: "আফগানি (১৯২৭–২০০২)"
12
+ :other: "Afghan afghanis (19272002)"
13
+ :AFN:
14
+ :one: "আফগানি"
15
+ :other: "আফগানি"
16
+ :ALK:
17
+ :one: "Albanian lek (19461965)"
18
+ :other: "Albanian lekë (19461965)"
19
+ :ALL:
20
+ :one: "আলবেনিয়ান লেক"
21
+ :other: "আলবেনিয়ান লেক"
22
+ :AMD:
23
+ :one: "আরমেনিয়ান দ্রাম"
24
+ :other: "আরমেনিয়ান দ্রাম"
25
+ :ANG:
26
+ :one: "নেদারল্যান্ড এ্যান্টিলিয়ান গুল্ডের"
27
+ :other: "নেদারল্যান্ড এ্যান্টিলিয়ান গুল্ডের"
28
+ :AOA:
29
+ :one: "এ্যাঙ্গোলান কওয়ানজা"
30
+ :other: "এ্যাঙ্গোলান কওয়ানজা"
31
+ :AOK:
32
+ :one: "এ্যাঙ্গোলান কওয়ানজা (১৯৭৭–১৯৯০)"
33
+ :other: "Angolan kwanzas (19771991)"
34
+ :AON:
35
+ :one: "এ্যাঙ্গোলান নতুন কওয়ানজা (১৯৯৫–২০০০)"
36
+ :other: "Angolan new kwanzas (19902000)"
37
+ :AOR:
38
+ :one: "এ্যাঙ্গোলান কওয়ানজা (১৯৯৫–১৯৯৯)"
39
+ :other: "Angolan readjusted kwanzas (19951999)"
40
+ :ARA:
41
+ :one: "আর্জেন্টিনা অস্ট্রাল"
42
+ :other: "Argentine australs"
43
+ :ARL:
44
+ :one: "Argentine peso ley (19701983)"
45
+ :other: "Argentine pesos ley (19701983)"
46
+ :ARM:
47
+ :one: "Argentine peso (18811970)"
48
+ :other: "Argentine pesos (18811970)"
49
+ :ARP:
50
+ :one: "আর্জেন্টিনা পেসো (১৯৮৩–১৯৮৫)"
51
+ :other: "Argentine pesos (19831985)"
52
+ :ARS:
53
+ :one: "আর্জেন্টিনা পেসো"
54
+ :other: "আর্জেন্টিনা পেসো"
55
+ :symbol: "$"
56
+ :ATS:
57
+ :one: "অস্ট্রিয়ান শিলিং"
58
+ :other: "Austrian schillings"
59
+ :AUD:
60
+ :one: "অস্ট্রেলিয়ান ডলার"
61
+ :other: "অস্ট্রেলিয়ান ডলার"
62
+ :symbol: "A$"
63
+ :AWG:
64
+ :one: "আরুবা গিল্ডার"
65
+ :other: "আরুবা গিল্ডার"
66
+ :AZM:
67
+ :one: "আজারবাইজান মানাত (১৯৯৩–২০০৬)"
68
+ :other: "Azerbaijani manats (1993–2006)"
69
+ :AZN:
70
+ :one: "আজারবাইজান মানাত"
71
+ :other: "আজারবাইজান মানাত"
72
+ :BAD:
73
+ :one: "বসনিয়া এবং হার্জেগোভিনা দিনার"
74
+ :other: "Bosnia-Herzegovina dinars (1992–1994)"
75
+ :BAM:
76
+ :one: "বসনিয়া এবং হার্জেগোভিনা মার্ক"
77
+ :other: "বসনিয়া এবং হার্জেগোভিনা মার্ক"
78
+ :BAN:
79
+ :one: "Bosnia-Herzegovina new dinar (19941997)"
80
+ :other: "Bosnia-Herzegovina new dinars (1994–1997)"
81
+ :BBD:
82
+ :one: "বার্বেডোজ ডলার"
83
+ :other: "বার্বেডোজ ডলার"
84
+ :symbol: "$"
85
+ :BDT:
86
+ :one: "বাংলাদেশী টাকা"
87
+ :other: "বাংলাদেশী টাকা"
88
+ :symbol: "৳"
89
+ :BEC:
90
+ :one: "বেলজিয়ান ফ্রাঙ্ক (রূপান্তরযোগ্য)"
91
+ :other: "Belgian francs (convertible)"
92
+ :BEF:
93
+ :one: "বেলজিয়ান ফ্রাঙ্ক"
94
+ :other: "Belgian francs"
95
+ :BEL:
96
+ :one: "বেলজিয়ান ফ্রাঙ্ক (আর্থিক)"
97
+ :other: "Belgian francs (financial)"
98
+ :BGL:
99
+ :one: "বুলগেরীয় হার্ড লেভ"
100
+ :other: "Bulgarian hard leva"
101
+ :BGM:
102
+ :one: "Bulgarian socialist lev"
103
+ :other: "Bulgarian socialist leva"
104
+ :BGN:
105
+ :one: "বুলগেরীয় নিউ লেভ"
106
+ :other: "বুলগেরীয় নিউ লেভ"
107
+ :BGO:
108
+ :one: "Bulgarian lev (1879–1952)"
109
+ :other: "Bulgarian leva (1879–1952)"
110
+ :BHD:
111
+ :one: "বাহরাইনি দিনার"
112
+ :other: "বাহরাইনি দিনার"
113
+ :BIF:
114
+ :one: "বুরুন্ডি ফ্রাঙ্ক"
115
+ :other: "বুরুন্ডি ফ্রাঙ্ক"
116
+ :BMD:
117
+ :one: "বারমিউডান ডলার"
118
+ :other: "বারমিউডান ডলার"
119
+ :symbol: "$"
120
+ :BND:
121
+ :one: "ব্রুনেই ডলার"
122
+ :other: "ব্রুনেই ডলার"
123
+ :symbol: "$"
124
+ :BOB:
125
+ :one: "বলিভিয়ানো"
126
+ :other: "বলিভিয়ানো"
127
+ :BOL:
128
+ :one: "Bolivian boliviano (1863–1963)"
129
+ :other: "Bolivian bolivianos (1863–1963)"
130
+ :BOP:
131
+ :one: "বলিভিয়ান পেসো"
132
+ :other: "Bolivian pesos"
133
+ :BOV:
134
+ :one: "বলিভিয়ান মভডোল"
135
+ :other: "Bolivian mvdols"
136
+ :BRB:
137
+ :one: "ব্রাজিলিয়ান ক্রুজেয়রোনোভো (১৯৬৭–১৯৮৬)"
138
+ :other: "Brazilian new cruzeiros (1967–1986)"
139
+ :BRC:
140
+ :one: "ব্রাজিলিয়ান ক্রুজেইডাউ"
141
+ :other: "Brazilian cruzados (1986–1989)"
142
+ :BRE:
143
+ :one: "ব্রাজিলিয়ান ক্রুজেয়রো (১৯৯০–১৯৯৩)"
144
+ :other: "Brazilian cruzeiros (1990–1993)"
145
+ :BRL:
146
+ :one: "ব্রাজিলিয়ান রিয়েল"
147
+ :other: "ব্রাজিলিয়ান রিয়েল"
148
+ :symbol: "R$"
149
+ :BRN:
150
+ :one: "ব্রাজিলিয়ান ক্রুজেইডো নোভো"
151
+ :other: "Brazilian new cruzados (1989–1990)"
152
+ :BRR:
153
+ :one: "ব্রাজিলিয়ান ক্রুজেয়রো"
154
+ :other: "Brazilian cruzeiros (1993–1994)"
155
+ :BRZ:
156
+ :one: "Brazilian cruzeiro (1942–1967)"
157
+ :other: "Brazilian cruzeiros (1942–1967)"
158
+ :BSD:
159
+ :one: "বাহামিয়ান ডলার"
160
+ :other: "বাহামিয়ান ডলার"
161
+ :symbol: "$"
162
+ :BTN:
163
+ :one: "ভুটানি এনগুল্ট্রুম"
164
+ :other: "ভুটানি এনগুল্ট্রুম"
165
+ :BUK:
166
+ :one: "বর্মি কিয়াৎ"
167
+ :other: "Burmese kyats"
168
+ :BWP:
169
+ :one: "বতসোয়ানা পুলা"
170
+ :other: "বতসোয়ানা পুলা"
171
+ :BYB:
172
+ :one: "বেলারুশিয়ান নিউ রুবেল (১৯৯৪–১৯৯৯)"
173
+ :other: "Belarusian new rubles (1994–1999)"
174
+ :BYR:
175
+ :one: "বেলারুশিয়ান রুবেল"
176
+ :other: "বেলারুশিয়ান রুবেল"
177
+ :symbol: "р."
178
+ :BZD:
179
+ :one: "বেলিজ ডলার"
180
+ :other: "বেলিজ ডলার"
181
+ :symbol: "$"
182
+ :CAD:
183
+ :one: "কানাডিয়ান ডলার"
184
+ :other: "কানাডিয়ান ডলার"
185
+ :symbol: "CA$"
186
+ :CDF:
187
+ :one: "কঙ্গো ফ্র্যাঙ্ক কঙ্গোলাইস"
188
+ :other: "কঙ্গো ফ্র্যাঙ্ক কঙ্গোলাইস"
189
+ :CHE:
190
+ :one: "সুইজারল্যান্ড ইউরো"
191
+ :other: "WIR euros"
192
+ :CHF:
193
+ :one: "সুইস ফ্রাঙ্ক"
194
+ :other: "সুইস ফ্রাঙ্ক"
195
+ :CHW:
196
+ :one: "সুইজারল্যান্ড ফ্রাঙ্ক"
197
+ :other: "WIR francs"
198
+ :CLE:
199
+ :one: "Chilean escudo"
200
+ :other: "Chilean escudos"
201
+ :CLF:
202
+ :one: "চিলিয়ান উনিদাদেস দি ফোমেন্তো"
203
+ :other: "Chilean units of account (UF)"
204
+ :CLP:
205
+ :one: "চিলি পেসো"
206
+ :other: "চিলি পেসো"
207
+ :symbol: "$"
208
+ :CNX:
209
+ :one: "Chinese People’s Bank dollar"
210
+ :other: "Chinese People’s Bank dollars"
211
+ :CNY:
212
+ :one: "চীনা য়ুয়ান রেন্মিন্‌বি"
213
+ :other: "চীনা য়ুয়ান রেন্মিন্‌বি"
214
+ :symbol: "CN¥"
215
+ :COP:
216
+ :one: "কলোম্বিয়ান পেসো"
217
+ :other: "কলোম্বিয়ান পেসো"
218
+ :symbol: "$"
219
+ :COU:
220
+ :one: "উনিদাদ দি ভ্যালোর রিয়েল"
221
+ :other: "Colombian real value units"
222
+ :CRC:
223
+ :one: "কোস্টা রিকা কোলোন"
224
+ :other: "কোস্টা রিকা কোলোন"
225
+ :symbol: "₡"
226
+ :CSD:
227
+ :one: "প্রাচীন সারবিয়ান দিনার"
228
+ :other: "Serbian dinars (2002–2006)"
229
+ :CSK:
230
+ :one: "চেকোস্লোভাক হার্ড কোরুনা"
231
+ :other: "Czechoslovak hard korunas"
232
+ :CUC:
233
+ :one: "কিউবান রূপান্তরযোগ্য পেসো"
234
+ :other: "কিউবান রূপান্তরযোগ্য পেসো"
235
+ :CUP:
236
+ :one: "কিউবান পেসো"
237
+ :other: "কিউবান পেসো"
238
+ :symbol: "$"
239
+ :CVE:
240
+ :one: "কেপ ভার্দে এসকুডো"
241
+ :other: "কেপ ভার্দে এসকুডো"
242
+ :CYP:
243
+ :one: "সাইপ্রাস পাউন্ড"
244
+ :other: "Cypriot pounds"
245
+ :CZK:
246
+ :one: "চেকোস্লোভাক কোরুনা"
247
+ :other: "চেকোস্লোভাক কোরুনা"
248
+ :DDM:
249
+ :one: "পূর্ব জার্মান মার্ক"
250
+ :other: "East German marks"
251
+ :DEM:
252
+ :one: "ডয়চ্ মার্ক"
253
+ :other: "German marks"
254
+ :DJF:
255
+ :one: "জিবুতি ফ্রাঙ্ক"
256
+ :other: "জিবুতি ফ্রাঙ্ক"
257
+ :DKK:
258
+ :one: "ড্যানিশ ক্রৌন"
259
+ :other: "ড্যানিশ ক্রৌন"
260
+ :DOP:
261
+ :one: "ডোমিনিকান পেসো"
262
+ :other: "ডোমিনিকান পেসো"
263
+ :symbol: "$"
264
+ :DZD:
265
+ :one: "আলজেরীয় দিনার"
266
+ :other: "আলজেরীয় দিনার"
267
+ :ECS:
268
+ :one: "ইকুয়াডোর সুক্রে"
269
+ :other: "Ecuadorian sucres"
270
+ :ECV:
271
+ :one: "ইকুয়াডোর উনিদাদেস দি ভেলর কনসতান্তে (ইউভিসি)"
272
+ :other: "Ecuadorian units of constant value"
273
+ :EEK:
274
+ :one: "এস্তোনিয়া ক্রুনি"
275
+ :other: "Estonian kroons"
276
+ :EGP:
277
+ :one: "মিশরীয় পাউন্ড"
278
+ :other: "মিশরীয় পাউন্ড"
279
+ :ERN:
280
+ :one: "এরিট্রিয়েন নাকফা"
281
+ :other: "এরিট্রিয়েন নাকফা"
282
+ :ESA:
283
+ :one: "স্প্যানিশ পেসেতা (একই হিসাব)"
284
+ :other: "Spanish pesetas (A account)"
285
+ :ESB:
286
+ :one: "স্প্যানিশ পেসেতা (রূপান্তরযোগ্য হিসাব)"
287
+ :other: "Spanish pesetas (convertible account)"
288
+ :ESP:
289
+ :one: "স্প্যানিশ পেসেতা"
290
+ :other: "Spanish pesetas"
291
+ :symbol: "₧"
292
+ :ETB:
293
+ :one: "ইথিওপিয়ান বির"
294
+ :other: "ইথিওপিয়ান বির"
295
+ :EUR:
296
+ :one: "ইউরো"
297
+ :other: "ইউরো"
298
+ :symbol: "€"
299
+ :FIM:
300
+ :one: "ফিনিস মার্কা"
301
+ :other: "Finnish markkas"
302
+ :FJD:
303
+ :one: "ফিজি ডলার"
304
+ :other: "ফিজি ডলার"
305
+ :symbol: "$"
306
+ :FKP:
307
+ :one: "ফকল্যান্ড দ্বীপপুঞ্জ পাউন্ড"
308
+ :other: "ফকল্যান্ড দ্বীপপুঞ্জ পাউন্ড"
309
+ :FRF:
310
+ :one: "ফরাসি ফ্রাঙ্ক"
311
+ :other: "French francs"
312
+ :GBP:
313
+ :one: "ব্রিটিশ পাউন্ড স্টার্লিং"
314
+ :other: "ব্রিটিশ পাউন্ড স্টার্লিং"
315
+ :symbol: "£"
316
+ :GEK:
317
+ :one: "জর্জিয়ান কুপন লারিট"
318
+ :other: "Georgian kupon larits"
319
+ :GEL:
320
+ :one: "জর্জিয়ান লারি"
321
+ :other: "জর্জিয়ান লারি"
322
+ :GHC:
323
+ :one: "ঘানা সেডি (১৯৭৯–২০০৭)"
324
+ :other: "Ghanaian cedis (1979–2007)"
325
+ :GHS:
326
+ :one: "ঘানা সেডি"
327
+ :other: "ঘানা সেডি"
328
+ :symbol: "₵"
329
+ :GIP:
330
+ :one: "জিব্রাল্টার পাউন্ড"
331
+ :other: "জিব্রাল্টার পাউন্ড"
332
+ :symbol: "£"
333
+ :GMD:
334
+ :one: "গাম্বিয়া ডালাসি"
335
+ :other: "গাম্বিয়া ডালাসি"
336
+ :GNF:
337
+ :one: "গিনি ফ্রাঙ্ক"
338
+ :other: "গিনি ফ্রাঙ্ক"
339
+ :GNS:
340
+ :one: "গিনি সাইলি"
341
+ :other: "Guinean sylis"
342
+ :GQE:
343
+ :one: "ইকুয়েটোরিয়াল গিনি ইকুয়িলি"
344
+ :other: "Equatorial Guinean ekwele"
345
+ :GRD:
346
+ :one: "গ্রীক দ্রাচমা"
347
+ :other: "Greek drachmas"
348
+ :GTQ:
349
+ :one: "গুয়াতেমালা কুয়েৎজাল"
350
+ :other: "গুয়াতেমালা কুয়েৎজাল"
351
+ :GWE:
352
+ :one: "পর্তুগিজ গিনি এসকুডো"
353
+ :other: "Portuguese Guinea escudos"
354
+ :GWP:
355
+ :one: "গিনি বিসাউ পেসো"
356
+ :other: "Guinea-Bissau pesos"
357
+ :GYD:
358
+ :one: "গাইয়েনা ডলার"
359
+ :other: "গাইয়েনা ডলার"
360
+ :symbol: "$"
361
+ :HKD:
362
+ :one: "হংকং ডলার"
363
+ :other: "হংকং ডলার"
364
+ :symbol: "HK$"
365
+ :HNL:
366
+ :one: "হন্ডুরাস লেম্পিরা"
367
+ :other: "হন্ডুরাস লেম্পিরা"
368
+ :HRD:
369
+ :one: "ক্রোয়েশিয়ান দিনার"
370
+ :other: "Croatian dinars"
371
+ :HRK:
372
+ :one: "ক্রোয়েশিয়ান কুনাস"
373
+ :other: "ক্রোয়েশিয়ান কুনাস"
374
+ :HTG:
375
+ :one: "হাইতি গৌর্দে"
376
+ :other: "হাইতি গৌর্দে"
377
+ :HUF:
378
+ :one: "হাঙ্গেরিয়ান ফোরিন্ট"
379
+ :other: "হাঙ্গেরিয়ান ফোরিন্ট"
380
+ :IDR:
381
+ :one: "ইন্দোনেশিয়ান রুপিয়াহ"
382
+ :other: "ইন্দোনেশিয়ান রুপিয়াহ"
383
+ :IEP:
384
+ :one: "ইরিশ পাউন্ড"
385
+ :other: "Irish pounds"
386
+ :ILP:
387
+ :one: "ইস্রাইলি পাউন্ড"
388
+ :other: "Israeli pounds"
389
+ :ILR:
390
+ :one: "Israeli sheqel (1980–1985)"
391
+ :other: "Israeli sheqels (1980–1985)"
392
+ :ILS:
393
+ :one: "ইস্রাইলি নতুন শেকেল"
394
+ :other: "ইস্রাইলি নতুন শেকেল"
395
+ :symbol: "₪"
396
+ :INR:
397
+ :one: "ভারতীয় রুপি"
398
+ :other: "ভারতীয় রুপি"
399
+ :symbol: "₹"
400
+ :IQD:
401
+ :one: "ইরাকি দিনার"
402
+ :other: "ইরাকি দিনার"
403
+ :IRR:
404
+ :one: "ইরানিয়ান রিয়াল"
405
+ :other: "ইরানিয়ান রিয়াল"
406
+ :ISJ:
407
+ :one: "Icelandic króna (1918–1981)"
408
+ :other: "Icelandic krónur (1918–1981)"
409
+ :ISK:
410
+ :one: "আইসল্যান্ড ক্রৌন"
411
+ :other: "আইসল্যান্ড ক্রৌন"
412
+ :ITL:
413
+ :one: "ইতালীয় লিরা"
414
+ :other: "Italian liras"
415
+ :JMD:
416
+ :one: "জ্যামাইকান ডলার"
417
+ :other: "জ্যামাইকান ডলার"
418
+ :symbol: "$"
419
+ :JOD:
420
+ :one: "জর্ডানিয়ান দিনার"
421
+ :other: "জর্ডানিয়ান দিনার"
422
+ :JPY:
423
+ :one: "জাপানিজ ইয়েন"
424
+ :other: "জাপানিজ ইয়েন"
425
+ :symbol: "JP¥"
426
+ :KES:
427
+ :one: "কেনিয়ান শিলিং"
428
+ :other: "কেনিয়ান শিলিং"
429
+ :KGS:
430
+ :one: "কিরগিজস্তান সোম"
431
+ :other: "কিরগিজস্তান সোম"
432
+ :KHR:
433
+ :one: "কম্বোডিয়ান রিয়েল"
434
+ :other: "কম্বোডিয়ান রিয়েল"
435
+ :symbol: "៛"
436
+ :KMF:
437
+ :one: "কম্বোরো ফ্রাঙ্ক"
438
+ :other: "কম্বোরো ফ্রাঙ্ক"
439
+ :KPW:
440
+ :one: "নাইজেরিয়ান পাউন্ড"
441
+ :other: "নাইজেরিয়ান পাউন্ড"
442
+ :KRH:
443
+ :one: "South Korean hwan (1953–1962)"
444
+ :other: "South Korean hwan (1953–1962)"
445
+ :KRO:
446
+ :one: "South Korean won (1945–1953)"
447
+ :other: "South Korean won (1945–1953)"
448
+ :KRW:
449
+ :one: "দক্ষিণ কোরিয়ান ওন"
450
+ :other: "দক্ষিণ কোরিয়ান ওন"
451
+ :symbol: "₩"
452
+ :KWD:
453
+ :one: "কুয়েতি দিনার"
454
+ :other: "কুয়েতি দিনার"
455
+ :KYD:
456
+ :one: "কেম্যান দ্বীপপুঞ্জের ডলার"
457
+ :other: "কেম্যান দ্বীপপুঞ্জের ডলার"
458
+ :symbol: "$"
459
+ :KZT:
460
+ :one: "কাজাক্সটান টেঙ্গে"
461
+ :other: "কাজাক্সটান টেঙ্গে"
462
+ :symbol: "₸"
463
+ :LAK:
464
+ :one: "লেউশান কিপ"
465
+ :other: "লেউশান কিপ"
466
+ :symbol: "₭"
467
+ :LBP:
468
+ :one: "লেবানিজ পাউন্ড"
469
+ :other: "লেবানিজ পাউন্ড"
470
+ :LKR:
471
+ :one: "শ্রীলঙ্কান রুপি"
472
+ :other: "শ্রীলঙ্কান রুপি"
473
+ :LRD:
474
+ :one: "লাইবেরিয়ান ডলার"
475
+ :other: "লাইবেরিয়ান ডলার"
476
+ :symbol: "$"
477
+ :LSL:
478
+ :one: "লেসুটু লোটি"
479
+ :other: "Lesotho lotis"
480
+ :LTL:
481
+ :one: "লিথুইনিয়ান লিটা"
482
+ :other: "লিথুইনিয়ান লিটা"
483
+ :LTT:
484
+ :one: "লিথুইনিয়ান টালোন্যাস"
485
+ :other: "Lithuanian talonases"
486
+ :LUC:
487
+ :one: "লুক্সেমবার্গ রুপান্তযোগ্য ফ্রাঙ্ক"
488
+ :other: "Luxembourgian convertible francs"
489
+ :LUF:
490
+ :one: "লুক্সেমবার্গ ফ্রাঙ্ক"
491
+ :other: "Luxembourgian francs"
492
+ :LUL:
493
+ :one: "লুক্সেমবার্গ ফাইনেনশিয়াল ফ্রাঙ্ক"
494
+ :other: "Luxembourg financial francs"
495
+ :LVL:
496
+ :one: "ল্যাটভিয়ান ল্যাট্‌স"
497
+ :other: "ল্যাটভিয়ান ল্যাট্‌স"
498
+ :LVR:
499
+ :one: "ল্যাটভিয়ান রুবল"
500
+ :other: "Latvian rubles"
501
+ :LYD:
502
+ :one: "লিবিয়ান ডলার"
503
+ :other: "লিবিয়ান ডলার"
504
+ :MAD:
505
+ :one: "মোরোক্কান দিরহাম"
506
+ :other: "মোরোক্কান দিরহাম"
507
+ :MAF:
508
+ :one: "মোরোক্কান ফ্রাঙ্ক"
509
+ :other: "Moroccan francs"
510
+ :MCF:
511
+ :one: "Monegasque franc"
512
+ :other: "Monegasque francs"
513
+ :MDC:
514
+ :one: "Moldovan cupon"
515
+ :other: "Moldovan cupon"
516
+ :MDL:
517
+ :one: "মোল্ডোভান লেয়ু"
518
+ :other: "মোল্ডোভান লেয়ু"
519
+ :MGA:
520
+ :one: "মাদাগাস্কার আরিয়ারি"
521
+ :other: "মাদাগাস্কার আরিয়ারি"
522
+ :MGF:
523
+ :one: "মাদাগাস্কার ফ্রাঙ্ক"
524
+ :other: "Malagasy francs"
525
+ :MKD:
526
+ :one: "ম্যাসেডোনিয়ান দিনার"
527
+ :other: "ম্যাসেডোনিয়ান দিনার"
528
+ :MKN:
529
+ :one: "Macedonian denar (1992–1993)"
530
+ :other: "Macedonian denari (1992–1993)"
531
+ :MLF:
532
+ :one: "মালি ফ্রাঙ্ক"
533
+ :other: "Malian francs"
534
+ :MMK:
535
+ :one: "মায়ানমার কিয়াত"
536
+ :other: "মায়ানমার কিয়াত"
537
+ :MNT:
538
+ :one: "মঙ্গোলিয়ান তুগরিক"
539
+ :other: "মঙ্গোলিয়ান তুগরিক"
540
+ :symbol: "₮"
541
+ :MOP:
542
+ :one: "ম্যাক্যাও পাটাকা"
543
+ :other: "ম্যাক্যাও পাটাকা"
544
+ :MRO:
545
+ :one: "মৌরিতানিয়ান ওউগুইয়া"
546
+ :other: "মৌরিতানিয়ান ওউগুইয়া"
547
+ :MTL:
548
+ :one: "মাল্টা লিরা"
549
+ :other: "Maltese lira"
550
+ :MTP:
551
+ :one: "মাল্টা পাউন্ড"
552
+ :other: "Maltese pounds"
553
+ :MUR:
554
+ :one: "মৌরিতানিয়ান রুপি"
555
+ :other: "মৌরিতানিয়ান রুপি"
556
+ :MVP:
557
+ :one: "Maldivian rupee"
558
+ :other: "Maldivian rupees"
559
+ :MVR:
560
+ :one: "মালদিভিয়ান রুফিয়া"
561
+ :other: "মালদিভিয়ান রুফিয়া"
562
+ :MWK:
563
+ :one: "মালাউইয়ান কওয়াচ"
564
+ :other: "মালাউইয়ান কওয়াচ"
565
+ :MXN:
566
+ :one: "ম্যাক্সিকান পেসো"
567
+ :other: "ম্যাক্সিকান পেসো"
568
+ :symbol: "MX$"
569
+ :MXP:
570
+ :one: "ম্যাক্সিকান সিলভার পেসো (১৮৬১–১৯৯২)"
571
+ :other: "Mexican silver pesos (1861–1992)"
572
+ :MXV:
573
+ :one: "মেক্সিকান উনিদাদ দি ইনভার্সান (UDI)"
574
+ :other: "Mexican investment units"
575
+ :MYR:
576
+ :one: "মালয়েশিয়ান রিঙ্গিৎ"
577
+ :other: "মালয়েশিয়ান রিঙ্গিৎ"
578
+ :MZE:
579
+ :one: "মোজাম্বিক এসকুডো"
580
+ :other: "Mozambican escudos"
581
+ :MZM:
582
+ :one: "প্রাচীন মোজাম্বিক মেটিকেল"
583
+ :other: "Mozambican meticals (1980–2006)"
584
+ :MZN:
585
+ :one: "মোজাম্বিক মেটিকেল"
586
+ :other: "মোজাম্বিক মেটিকেল"
587
+ :NAD:
588
+ :one: "নামিবিয়া ডলার"
589
+ :other: "নামিবিয়া ডলার"
590
+ :symbol: "$"
591
+ :NGN:
592
+ :one: "নাইজেরিয়ান নায়রা"
593
+ :other: "নাইজেরিয়ান নায়রা"
594
+ :symbol: "₦"
595
+ :NIC:
596
+ :one: "নিকারাগুয়ান কর্ডোবা (১৯৮৮–১৯৯১)"
597
+ :other: "Nicaraguan córdobas (1988–1991)"
598
+ :NIO:
599
+ :one: "নিকারাগুয়ান কর্ডোবা"
600
+ :other: "নিকারাগুয়ান কর্ডোবা"
601
+ :NLG:
602
+ :one: "নেদারল্যান্ড গুল্ডের"
603
+ :other: "Dutch guilders"
604
+ :NOK:
605
+ :one: "নরওয়ে ক্রৌন"
606
+ :other: "নরওয়ে ক্রৌন"
607
+ :NPR:
608
+ :one: "নেপালি রুপি"
609
+ :other: "নেপালি রুপি"
610
+ :NZD:
611
+ :one: "নিউজিল্যান্ড ডলার"
612
+ :other: "নিউজিল্যান্ড ডলার"
613
+ :symbol: "NZ$"
614
+ :OMR:
615
+ :one: "ওমানি রিয়াল"
616
+ :other: "ওমানি রিয়াল"
617
+ :PAB:
618
+ :one: "পানামা বেলবোয়া"
619
+ :other: "পানামা বেলবোয়া"
620
+ :PEI:
621
+ :one: "পেরুভিয়ান ইন্তি"
622
+ :other: "Peruvian intis"
623
+ :PEN:
624
+ :one: "পেরুভিয়ান সোল নুয়েভো"
625
+ :other: "পেরুভিয়ান সোল নুয়েভো"
626
+ :PES:
627
+ :one: "পেরুভিয়ান সোল"
628
+ :other: "Peruvian soles (1863–1965)"
629
+ :PGK:
630
+ :one: "পপুয়ানিউগিনি কিনা"
631
+ :other: "পপুয়ানিউগিনি কিনা"
632
+ :PHP:
633
+ :one: "ফিলিপাইন পেসো"
634
+ :other: "ফিলিপাইন পেসো"
635
+ :symbol: "₱"
636
+ :PKR:
637
+ :one: "পাকিস্তানি রুপি"
638
+ :other: "পাকিস্তানি রুপি"
639
+ :PLN:
640
+ :one: "পোলিশ জ্লোটি"
641
+ :other: "পোলিশ জ্লোটি"
642
+ :PLZ:
643
+ :one: "পোলিশ জ্লোটি (১৯৫০–১৯৯৫)"
644
+ :other: "Polish zlotys (PLZ)"
645
+ :PTE:
646
+ :one: "পর্তুগিজ এসকুডো"
647
+ :other: "Portuguese escudos"
648
+ :PYG:
649
+ :one: "প্যারগুয়ান"
650
+ :other: "প্যারগুয়ান"
651
+ :symbol: "₲"
652
+ :QAR:
653
+ :one: "কাতার রিয়্যাল"
654
+ :other: "কাতার রিয়্যাল"
655
+ :RHD:
656
+ :one: "রোডেশিয়ান ডলার"
657
+ :other: "Rhodesian dollars"
658
+ :ROL:
659
+ :one: "প্রাচীন রুমানিয়া লেয়ু"
660
+ :other: "Romanian Lei (1952–2006)"
661
+ :RON:
662
+ :one: "রুমানিয়া লেয়ু"
663
+ :other: "রুমানিয়া লেয়ু"
664
+ :RSD:
665
+ :one: "সারবিয়ান দিনার"
666
+ :other: "সারবিয়ান দিনার"
667
+ :RUB:
668
+ :one: "রাশিয়ান রুবেল"
669
+ :other: "রাশিয়ান রুবেল"
670
+ :RUR:
671
+ :one: "রাশিয়ান রুবল (১৯৯১–১৯৯৮)"
672
+ :other: "Russian rubles (1991–1998)"
673
+ :symbol: "р."
674
+ :RWF:
675
+ :one: "রুয়ান্ডান ফ্রাঙ্ক"
676
+ :other: "রুয়ান্ডান ফ্রাঙ্ক"
677
+ :SAR:
678
+ :one: "সৌদি রিয়্যাল"
679
+ :other: "সৌদি রিয়্যাল"
680
+ :SBD:
681
+ :one: "সলোমন দ্বীপপুঞ্জ ডলার"
682
+ :other: "সলোমন দ্বীপপুঞ্জ ডলার"
683
+ :symbol: "$"
684
+ :SCR:
685
+ :one: "সেয়চেল্লোইস রুপি"
686
+ :other: "সেয়চেল্লোইস রুপি"
687
+ :SDD:
688
+ :one: "প্রাচীন সুদানি দিনার"
689
+ :other: "Sudanese dinars (1992–2007)"
690
+ :SDG:
691
+ :one: "সুদানি পাউন্ড"
692
+ :other: "সুদানি পাউন্ড"
693
+ :SDP:
694
+ :one: "প্রাচীন সুদানি পাউন্ড"
695
+ :other: "Sudanese pounds (1957–1998)"
696
+ :SEK:
697
+ :one: "সুইডিশ ক্রোনা"
698
+ :other: "সুইডিশ ক্রোনা"
699
+ :SGD:
700
+ :one: "সিঙ্গাপুর ডলার"
701
+ :other: "সিঙ্গাপুর ডলার"
702
+ :symbol: "$"
703
+ :SHP:
704
+ :one: "সেন্ট হেলেনা পাউন্ড"
705
+ :other: "সেন্ট হেলেনা পাউন্ড"
706
+ :SIT:
707
+ :one: "স্লোভানিয়া টোলার"
708
+ :other: "Slovenian tolars"
709
+ :SKK:
710
+ :one: "স্লোভাক কোরুনা"
711
+ :other: "Slovak korunas"
712
+ :SLL:
713
+ :one: "সিয়েরালিয়ন লিয়ন"
714
+ :other: "সিয়েরালিয়ন লিয়ন"
715
+ :SOS:
716
+ :one: "সোমালি শিলিং"
717
+ :other: "সোমালি শিলিং"
718
+ :SRD:
719
+ :one: "সুরিনাম ডলার"
720
+ :other: "সুরিনাম ডলার"
721
+ :symbol: "$"
722
+ :SRG:
723
+ :one: "সুরিনাম গিল্ডার"
724
+ :other: "Surinamese guilders"
725
+ :SSP:
726
+ :one: "দক্ষিণ সুদানি পাউন্ড"
727
+ :other: "দক্ষিণ সুদানি পাউন্ড"
728
+ :symbol: "£"
729
+ :STD:
730
+ :one: "সাও টোমে এবং প্রিন্সিপে ডোবরা"
731
+ :other: "সাও টোমে এবং প্রিন্সিপে ডোবরা"
732
+ :SUR:
733
+ :one: "সোভিয়েত রুবল"
734
+ :other: "Soviet roubles"
735
+ :SVC:
736
+ :one: "এল স্যালভোডোর কোলোন"
737
+ :other: "Salvadoran colones"
738
+ :SYP:
739
+ :one: "সিরিয়ান পাউন্ড"
740
+ :other: "সিরিয়ান পাউন্ড"
741
+ :SZL:
742
+ :one: "সোয়াজিল্যান্ড লিলাঙ্গেনি"
743
+ :other: "সোয়াজিল্যান্ড লিলাঙ্গেনি"
744
+ :THB:
745
+ :one: "থাই বাত"
746
+ :other: "থাই বাত"
747
+ :symbol: "฿"
748
+ :TJR:
749
+ :one: "তাজিকিস্তান রুবল"
750
+ :other: "Tajikistani rubles"
751
+ :TJS:
752
+ :one: "তাজিকিস্তান সোমোনি"
753
+ :other: "তাজিকিস্তান সোমোনি"
754
+ :TMM:
755
+ :one: "তুর্কমেনিস্টানি মানাত"
756
+ :other: "Turkmenistani manat (1993–2009)"
757
+ :TMT:
758
+ :one: "তুর্কমেনিস্তান নতুন মানত"
759
+ :other: "তুর্কমেনিস্তান নতুন মানত"
760
+ :TND:
761
+ :one: "তিউনেশিয়ান দিনার"
762
+ :other: "তিউনেশিয়ান দিনার"
763
+ :TOP:
764
+ :one: "টোঙ্গা পা’আঙ্গা"
765
+ :other: "টোঙ্গা পা’আঙ্গা"
766
+ :TPE:
767
+ :one: "তিমুর এসকুডো"
768
+ :other: "Timorese escudos"
769
+ :TRL:
770
+ :one: "প্রাচীন তুর্কি লিরা"
771
+ :other: "Turkish Lira (1922–2005)"
772
+ :TRY:
773
+ :one: "তুর্কি লিরা"
774
+ :other: "তুর্কি লিরা"
775
+ :symbol: "₺"
776
+ :TTD:
777
+ :one: "ত্রিনিদাদ এবং টোবাগো ডলার"
778
+ :other: "ত্রিনিদাদ এবং টোবাগো ডলার"
779
+ :symbol: "$"
780
+ :TWD:
781
+ :one: "নূতন তাইওয়ান ক্যারাবিয়ান ডলার"
782
+ :other: "নূতন তাইওয়ান ক্যারাবিয়ান ডলার"
783
+ :symbol: "NT$"
784
+ :TZS:
785
+ :one: "তাঞ্জনিয়া শিলিং"
786
+ :other: "তাঞ্জনিয়া শিলিং"
787
+ :UAH:
788
+ :one: "ইউক্রেইন হৃভনিয়া"
789
+ :other: "ইউক্রেইন হৃভনিয়া"
790
+ :symbol: "₴"
791
+ :UAK:
792
+ :one: "ইউক্রেইন কার্বোভ্যান্টস"
793
+ :other: "Ukrainian karbovantsiv"
794
+ :UGS:
795
+ :one: "উগান্ডান শিলিং (১৯৬৬–১৯৮৭)"
796
+ :other: "Ugandan shillings (1966–1987)"
797
+ :UGX:
798
+ :one: "উগান্ডান শিলিং"
799
+ :other: "উগান্ডান শিলিং"
800
+ :USD:
801
+ :one: "মার্কিন ডলার"
802
+ :other: "মার্কিন ডলার"
803
+ :symbol: "US$"
804
+ :USN:
805
+ :one: "মার্কিন ডলার (পরবর্তী দিন)"
806
+ :other: "US dollars (next day)"
807
+ :USS:
808
+ :one: "মার্কিন ডলার (একই দিন)"
809
+ :other: "US dollars (same day)"
810
+ :UYI:
811
+ :one: "উরুগুয়ায়ান পেসো এন উনিদাদেস ইনডেক্সেডাস"
812
+ :other: "Uruguayan pesos (indexed units)"
813
+ :UYP:
814
+ :one: "উরুগুয়ে পেসো (১৯৭৫–১৯৯৩)"
815
+ :other: "Uruguayan pesos (1975–1993)"
816
+ :UYU:
817
+ :one: "উরুগুয়ে পেসো উরুগুয়েও"
818
+ :other: "উরুগুয়ে পেসো উরুগুয়েও"
819
+ :symbol: "$"
820
+ :UZS:
821
+ :one: "উজবেকিস্তানি সোম"
822
+ :other: "উজবেকিস্তানি সোম"
823
+ :VEB:
824
+ :one: "ভেনিজুয়েলান বলিভার (১৮৭১–২০০৮)"
825
+ :other: "Venezuelan bolívars (1871–2008)"
826
+ :VEF:
827
+ :one: "ভেনিজুয়েলীয় বলিভার"
828
+ :other: "ভেনিজুয়েলীয় বলিভার"
829
+ :VND:
830
+ :one: "ভিয়েতনামি ডঙ্গ"
831
+ :other: "ভিয়েতনামি ডঙ্গ"
832
+ :symbol: "₫"
833
+ :VNN:
834
+ :one: "Vietnamese dong (1978–1985)"
835
+ :other: "Vietnamese dong (1978–1985)"
836
+ :VUV:
837
+ :one: "ভানুয়াতু ভাতু"
838
+ :other: "ভানুয়াতু ভাতু"
839
+ :WST:
840
+ :one: "পশ্চিমাঞ্চলীয় সামোয়ান টালা"
841
+ :other: "পশ্চিমাঞ্চলীয় সামোয়ান টালা"
842
+ :XAF:
843
+ :one: "সিএফএ ফ্র্যাঙ্ক বিইএসি"
844
+ :other: "সিএফএ ফ্র্যাঙ্ক বিইএসি"
845
+ :symbol: "FCFA"
846
+ :XAG:
847
+ :one: "সিলভার"
848
+ :other: "troy ounces of silver"
849
+ :XAU:
850
+ :one: "গোল্ড"
851
+ :other: "troy ounces of gold"
852
+ :XBA:
853
+ :one: "European composite unit"
854
+ :other: "European composite units"
855
+ :XBB:
856
+ :one: "ইউরোপীয় আর্থিক একক"
857
+ :other: "European monetary units"
858
+ :XBC:
859
+ :one: "European unit of account (XBC)"
860
+ :other: "European units of account (XBC)"
861
+ :XBD:
862
+ :one: "European unit of account (XBD)"
863
+ :other: "European units of account (XBD)"
864
+ :XCD:
865
+ :one: "পূর্ব ক্যারাবিয়ান ডলার"
866
+ :other: "পূর্ব ক্যারাবিয়ান ডলার"
867
+ :symbol: "EC$"
868
+ :XDR:
869
+ :one: "special drawing rights"
870
+ :other: "special drawing rights"
871
+ :XEU:
872
+ :one: "ইউরোপীয় মুদ্রা একক"
873
+ :other: "European currency units"
874
+ :XFO:
875
+ :one: "ফরাসি গোল্ড ফ্রাঙ্ক"
876
+ :other: "French gold francs"
877
+ :XFU:
878
+ :one: "ফরাসি ইউআইসি - ফ্রাঙ্ক"
879
+ :other: "French UIC-francs"
880
+ :XOF:
881
+ :one: "সিএফএ ফ্র্যাঙ্ক বিসিইএও"
882
+ :other: "সিএফএ ফ্র্যাঙ্ক বিসিইএও"
883
+ :symbol: "CFA"
884
+ :XPD:
885
+ :one: "প্যালেডিয়াম"
886
+ :other: "troy ounces of palladium"
887
+ :XPF:
888
+ :one: "সিএফপি ফ্র্যাঙ্ক"
889
+ :other: "সিএফপি ফ্র্যাঙ্ক"
890
+ :symbol: "CFPF"
891
+ :XPT:
892
+ :one: "প্লাটিনাম"
893
+ :other: "troy ounces of platinum"
894
+ :XRE:
895
+ :one: "RINET Funds unit"
896
+ :other: "RINET Funds units"
897
+ :XSU:
898
+ :one: "Sucre"
899
+ :other: "Sucres"
900
+ :XTS:
901
+ :one: "Testing Currency unit"
902
+ :other: "Testing Currency units"
903
+ :XUA:
904
+ :one: "ADB unit of account"
905
+ :other: "ADB units of account"
906
+ :XXX:
907
+ :one: "অজানা বা ভুল মুদ্রা"
908
+ :other: "অজানা বা ভুল মুদ্রা"
909
+ :YDD:
910
+ :one: "ইয়েমেনি দিনার"
911
+ :other: "Yemeni dinars"
912
+ :YER:
913
+ :one: "ইয়েমেনি রিয়াল"
914
+ :other: "ইয়েমেনি রিয়াল"
915
+ :YUD:
916
+ :one: "যুগোশ্লাভিয় হার্ড দিনার"
917
+ :other: "Yugoslavian hard dinars (1966–1990)"
918
+ :YUM:
919
+ :one: "যুগোশ্লাভিয় নোভি দিনার"
920
+ :other: "Yugoslavian new dinars (1994–2002)"
921
+ :YUN:
922
+ :one: "যুগোশ্লাভিয় রুপান্তরযোগ্য দিনার"
923
+ :other: "Yugoslavian convertible dinars (1990–1992)"
924
+ :YUR:
925
+ :one: "Yugoslavian reformed dinar (1992–1993)"
926
+ :other: "Yugoslavian reformed dinars (1992–1993)"
927
+ :ZAL:
928
+ :one: "দক্ষিণ আফ্রিকান র‌্যান্ড"
929
+ :other: "South African rands (financial)"
930
+ :ZAR:
931
+ :one: "দক্ষিণ আফ্রিকান রেন্ড"
932
+ :other: "দক্ষিণ আফ্রিকান রেন্ড"
933
+ :ZMK:
934
+ :one: "জাম্বিয়ান কওয়াচা (১৯৬৮–২০১২)"
935
+ :other: "Zambian kwachas (1968–2012)"
936
+ :ZMW:
937
+ :one: "জাম্বিয়ান কওয়াচা"
938
+ :other: "জাম্বিয়ান কওয়াচা"
939
+ :ZRN:
940
+ :one: "জাইরিয়ান নিউ জাইরে"
941
+ :other: "Zairean new zaires (1993–1998)"
942
+ :ZRZ:
943
+ :one: "জাইরিয়ান জাইরে"
944
+ :other: "Zairean zaires (1971–1993)"
945
+ :ZWD:
946
+ :one: "জিম্বাবুয়ে ডলার (১৯৮০–২০০৮)"
947
+ :other: "Zimbabwean dollars (1980–2008)"
948
+ :ZWL:
949
+ :one: "জিম্বাবুয়ে ডলার (২০০৯)"
950
+ :other: "Zimbabwean dollars (2009)"
951
+ :ZWR:
952
+ :one: "জিম্বাবুয়ে ডলার (২০০৮)"
953
+ :other: "Zimbabwean dollars (2008)"