├── LICENSE ├── README.md ├── aliSms └── countryCodeAndPhoneCode.json ├── all └── countryCodeAndPhoneCode.json └── tencentSms └── countryCodeAndPhoneCode.json /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 YibuMe 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CountryCodeAndPhoneCode 2 | 国家或地区 区号对应的电话区号 3 | 4 | |英文名称|中文名称|国家区域Code|电话区号| 5 | |:---:|:----:|:------:|:------:| 6 | |english_name|chinese_name|country_code|phone_code| 7 | 8 | ### 腾讯国际短信 支持的 地区和对应的电话区号 9 | 10 | 加上 `中国` 一个支持 **217** 个国家或地区 [Tencnet SMS CountryCodeAndPhoneCode](./tencentSms/countryCodeAndPhoneCode.json) 11 | 12 | > 数据文件 是以 **country_code** 字段进行排序的 13 | 14 | ### 阿里国际短信 支持的 地区和对应的电话区号 15 | 16 | 加上 `中国` 一个支持 **216** 个国家或地区 [Ali SMS CountryCodeAndPhoneCode](./aliSms/countryCodeAndPhoneCode.json) 17 | 18 | > 数据文件 是以 **english_name** 字段进行排序的 19 | 20 | ### 全部的 地区和对应的电话区号 21 | 22 | 一共有 **233** 个国家或地区 [All CountryCodeAndPhoneCode](./all/countryCodeAndPhoneCode.json) 23 | 24 | > 数据文件 是以 **english_name** 字段进行排序的 , 若认为数据不全,可以提 ISSUE 或者 PR 25 | 26 | > 有的地区有两个 电话区号 ,会以这样的格式书写 : `"phone_code":"0061 9164"` 27 | -------------------------------------------------------------------------------- /aliSms/countryCodeAndPhoneCode.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "english_name":"Afghanistan", 4 | "chinese_name":"阿富汗", 5 | "country_code":"AF", 6 | "phone_code":"93" 7 | }, 8 | { 9 | "english_name":"Albania", 10 | "chinese_name":"阿尔巴尼亚", 11 | "country_code":"AL", 12 | "phone_code":"355" 13 | }, 14 | { 15 | "english_name":"Algeria", 16 | "chinese_name":"阿尔及利亚", 17 | "country_code":"DZ", 18 | "phone_code":"213" 19 | }, 20 | { 21 | "english_name":"American Samoa", 22 | "chinese_name":"美属萨摩亚", 23 | "country_code":"AS", 24 | "phone_code":"1684" 25 | }, 26 | { 27 | "english_name":"Andorra", 28 | "chinese_name":"安道尔", 29 | "country_code":"AD", 30 | "phone_code":"376" 31 | }, 32 | { 33 | "english_name":"Angola", 34 | "chinese_name":"安哥拉", 35 | "country_code":"AO", 36 | "phone_code":"244" 37 | }, 38 | { 39 | "english_name":"Anguilla", 40 | "chinese_name":"安圭拉", 41 | "country_code":"AI", 42 | "phone_code":"1264" 43 | }, 44 | { 45 | "english_name":"Antigua and Barbuda", 46 | "chinese_name":"安提瓜和巴布达", 47 | "country_code":"AG", 48 | "phone_code":"1268" 49 | }, 50 | { 51 | "english_name":"Argentina", 52 | "chinese_name":"阿根廷", 53 | "country_code":"AR", 54 | "phone_code":"54" 55 | }, 56 | { 57 | "english_name":"Armenia", 58 | "chinese_name":"亚美尼亚", 59 | "country_code":"AM", 60 | "phone_code":"374" 61 | }, 62 | { 63 | "english_name":"Aruba", 64 | "chinese_name":"阿鲁巴", 65 | "country_code":"AW", 66 | "phone_code":"297" 67 | }, 68 | { 69 | "english_name":"Australia", 70 | "chinese_name":"澳大利亚", 71 | "country_code":"AU", 72 | "phone_code":"61" 73 | }, 74 | { 75 | "english_name":"Austria", 76 | "chinese_name":"奥地利", 77 | "country_code":"AT", 78 | "phone_code":"43" 79 | }, 80 | { 81 | "english_name":"Azerbaijan", 82 | "chinese_name":"阿塞拜疆", 83 | "country_code":"AZ", 84 | "phone_code":"994" 85 | }, 86 | { 87 | "english_name":"Bahamas", 88 | "chinese_name":"巴哈马", 89 | "country_code":"BS", 90 | "phone_code":"1242" 91 | }, 92 | { 93 | "english_name":"Bahrain", 94 | "chinese_name":"巴林", 95 | "country_code":"BH", 96 | "phone_code":"973" 97 | }, 98 | { 99 | "english_name":"Bangladesh", 100 | "chinese_name":"孟加拉国", 101 | "country_code":"BD", 102 | "phone_code":"880" 103 | }, 104 | { 105 | "english_name":"Barbados", 106 | "chinese_name":"巴巴多斯", 107 | "country_code":"BB", 108 | "phone_code":"1246" 109 | }, 110 | { 111 | "english_name":"Belarus", 112 | "chinese_name":"白俄罗斯", 113 | "country_code":"BY", 114 | "phone_code":"375" 115 | }, 116 | { 117 | "english_name":"Belgium", 118 | "chinese_name":"比利时", 119 | "country_code":"BE", 120 | "phone_code":"32" 121 | }, 122 | { 123 | "english_name":"Belize", 124 | "chinese_name":"伯利兹", 125 | "country_code":"BZ", 126 | "phone_code":"501" 127 | }, 128 | { 129 | "english_name":"Benin", 130 | "chinese_name":"贝宁", 131 | "country_code":"BJ", 132 | "phone_code":"229" 133 | }, 134 | { 135 | "english_name":"Bermuda", 136 | "chinese_name":"百慕大群岛", 137 | "country_code":"BM", 138 | "phone_code":"1441" 139 | }, 140 | { 141 | "english_name":"Bhutan", 142 | "chinese_name":"不丹", 143 | "country_code":"BT", 144 | "phone_code":"975" 145 | }, 146 | { 147 | "english_name":"Bolivia", 148 | "chinese_name":"玻利维亚", 149 | "country_code":"BO", 150 | "phone_code":"591" 151 | }, 152 | { 153 | "english_name":"Bosnia and Herzegovina", 154 | "chinese_name":"波斯尼亚和黑塞哥维那", 155 | "country_code":"BA", 156 | "phone_code":"387" 157 | }, 158 | { 159 | "english_name":"Botswana", 160 | "chinese_name":"博茨瓦纳", 161 | "country_code":"BW", 162 | "phone_code":"267" 163 | }, 164 | { 165 | "english_name":"Brazil", 166 | "chinese_name":"巴西", 167 | "country_code":"BR", 168 | "phone_code":"55" 169 | }, 170 | { 171 | "english_name":"Brunei", 172 | "chinese_name":"文莱", 173 | "country_code":"BN", 174 | "phone_code":"673" 175 | }, 176 | { 177 | "english_name":"Bulgaria", 178 | "chinese_name":"保加利亚", 179 | "country_code":"BG", 180 | "phone_code":"359" 181 | }, 182 | { 183 | "english_name":"Burkina Faso", 184 | "chinese_name":"布基纳法索", 185 | "country_code":"BF", 186 | "phone_code":"226" 187 | }, 188 | { 189 | "english_name":"Burundi", 190 | "chinese_name":"布隆迪", 191 | "country_code":"BI", 192 | "phone_code":"257" 193 | }, 194 | { 195 | "english_name":"Cambodia", 196 | "chinese_name":"柬埔寨", 197 | "country_code":"KH", 198 | "phone_code":"855" 199 | }, 200 | { 201 | "english_name":"Cameroon", 202 | "chinese_name":"喀麦隆", 203 | "country_code":"CM", 204 | "phone_code":"237" 205 | }, 206 | { 207 | "english_name":"Canada", 208 | "chinese_name":"加拿大", 209 | "country_code":"CA", 210 | "phone_code":"1" 211 | }, 212 | { 213 | "english_name":"Cape Verde", 214 | "chinese_name":"开普", 215 | "country_code":"CV", 216 | "phone_code":"238" 217 | }, 218 | { 219 | "english_name":"Cayman Islands", 220 | "chinese_name":"开曼群岛", 221 | "country_code":"KY", 222 | "phone_code":"1345" 223 | }, 224 | { 225 | "english_name":"Central African Republic", 226 | "chinese_name":"中非共和国", 227 | "country_code":"CF", 228 | "phone_code":"236" 229 | }, 230 | { 231 | "english_name":"Chad", 232 | "chinese_name":"乍得", 233 | "country_code":"TD", 234 | "phone_code":"235" 235 | }, 236 | { 237 | "english_name":"China", 238 | "chinese_name":"中国", 239 | "country_code":"CN", 240 | "phone_code":"86" 241 | }, 242 | { 243 | "english_name":"Chile", 244 | "chinese_name":"智利", 245 | "country_code":"CL", 246 | "phone_code":"56" 247 | }, 248 | { 249 | "english_name":"Colombia", 250 | "chinese_name":"哥伦比亚", 251 | "country_code":"CO", 252 | "phone_code":"57" 253 | }, 254 | { 255 | "english_name":"Comoros", 256 | "chinese_name":"科摩罗", 257 | "country_code":"KM", 258 | "phone_code":"269" 259 | }, 260 | { 261 | "english_name":"Cook Islands", 262 | "chinese_name":"库克群岛", 263 | "country_code":"CK", 264 | "phone_code":"682" 265 | }, 266 | { 267 | "english_name":"Costa Rica", 268 | "chinese_name":"哥斯达黎加", 269 | "country_code":"CR", 270 | "phone_code":"506" 271 | }, 272 | { 273 | "english_name":"Croatia", 274 | "chinese_name":"克罗地亚", 275 | "country_code":"HR", 276 | "phone_code":"385" 277 | }, 278 | { 279 | "english_name":"Cuba", 280 | "chinese_name":"古巴", 281 | "country_code":"CU", 282 | "phone_code":"53" 283 | }, 284 | { 285 | "english_name":"Curacao", 286 | "chinese_name":"库拉索", 287 | "country_code":"CW", 288 | "phone_code":"599" 289 | }, 290 | { 291 | "english_name":"Cyprus", 292 | "chinese_name":"塞浦路斯", 293 | "country_code":"CY", 294 | "phone_code":"357" 295 | }, 296 | { 297 | "english_name":"Czech", 298 | "chinese_name":"捷克", 299 | "country_code":"CZ", 300 | "phone_code":"420" 301 | }, 302 | { 303 | "english_name":"Democratic Republic of the Congo", 304 | "chinese_name":"刚果民主共和国", 305 | "country_code":"CD", 306 | "phone_code":"243" 307 | }, 308 | { 309 | "english_name":"Denmark", 310 | "chinese_name":"丹麦", 311 | "country_code":"DK", 312 | "phone_code":"45" 313 | }, 314 | { 315 | "english_name":"Djibouti", 316 | "chinese_name":"吉布提", 317 | "country_code":"DJ", 318 | "phone_code":"253" 319 | }, 320 | { 321 | "english_name":"Dominica", 322 | "chinese_name":"多米尼克", 323 | "country_code":"DM", 324 | "phone_code":"1767" 325 | }, 326 | { 327 | "english_name":"Dominican Republic", 328 | "chinese_name":"多米尼加共和国", 329 | "country_code":"DO", 330 | "phone_code":"1809" 331 | }, 332 | { 333 | "english_name":"Ecuador", 334 | "chinese_name":"厄瓜多尔", 335 | "country_code":"EC", 336 | "phone_code":"593" 337 | }, 338 | { 339 | "english_name":"Egypt", 340 | "chinese_name":"埃及", 341 | "country_code":"EG", 342 | "phone_code":"20" 343 | }, 344 | { 345 | "english_name":"El Salvador", 346 | "chinese_name":"萨尔瓦多", 347 | "country_code":"SV", 348 | "phone_code":"503" 349 | }, 350 | { 351 | "english_name":"Equatorial Guinea", 352 | "chinese_name":"赤道几内亚", 353 | "country_code":"GQ", 354 | "phone_code":"240" 355 | }, 356 | { 357 | "english_name":"Eritrea", 358 | "chinese_name":"厄立特里亚", 359 | "country_code":"ER", 360 | "phone_code":"291" 361 | }, 362 | { 363 | "english_name":"Estonia", 364 | "chinese_name":"爱沙尼亚", 365 | "country_code":"EE", 366 | "phone_code":"372" 367 | }, 368 | { 369 | "english_name":"Ethiopia", 370 | "chinese_name":"埃塞俄比亚", 371 | "country_code":"ET", 372 | "phone_code":"251" 373 | }, 374 | { 375 | "english_name":"Faroe Islands", 376 | "chinese_name":"法罗群岛", 377 | "country_code":"FO", 378 | "phone_code":"298" 379 | }, 380 | { 381 | "english_name":"Fiji", 382 | "chinese_name":"斐济", 383 | "country_code":"FJ", 384 | "phone_code":"679" 385 | }, 386 | { 387 | "english_name":"Finland", 388 | "chinese_name":"芬兰", 389 | "country_code":"FI", 390 | "phone_code":"358" 391 | }, 392 | { 393 | "english_name":"France", 394 | "chinese_name":"法国", 395 | "country_code":"FR", 396 | "phone_code":"33" 397 | }, 398 | { 399 | "english_name":"French Guiana", 400 | "chinese_name":"法属圭亚那", 401 | "country_code":"GF", 402 | "phone_code":"594" 403 | }, 404 | { 405 | "english_name":"French Polynesia", 406 | "chinese_name":"法属波利尼西亚", 407 | "country_code":"PF", 408 | "phone_code":"689" 409 | }, 410 | { 411 | "english_name":"Gabon", 412 | "chinese_name":"加蓬", 413 | "country_code":"GA", 414 | "phone_code":"241" 415 | }, 416 | { 417 | "english_name":"Gambia", 418 | "chinese_name":"冈比亚", 419 | "country_code":"GM", 420 | "phone_code":"220" 421 | }, 422 | { 423 | "english_name":"Georgia", 424 | "chinese_name":"格鲁吉亚", 425 | "country_code":"GE", 426 | "phone_code":"995" 427 | }, 428 | { 429 | "english_name":"Germany", 430 | "chinese_name":"德国", 431 | "country_code":"DE", 432 | "phone_code":"49" 433 | }, 434 | { 435 | "english_name":"Ghana", 436 | "chinese_name":"加纳", 437 | "country_code":"GH", 438 | "phone_code":"233" 439 | }, 440 | { 441 | "english_name":"Gibraltar", 442 | "chinese_name":"直布罗陀", 443 | "country_code":"GI", 444 | "phone_code":"350" 445 | }, 446 | { 447 | "english_name":"Greece", 448 | "chinese_name":"希腊", 449 | "country_code":"GR", 450 | "phone_code":"30" 451 | }, 452 | { 453 | "english_name":"Greenland", 454 | "chinese_name":"格陵兰岛", 455 | "country_code":"GL", 456 | "phone_code":"299" 457 | }, 458 | { 459 | "english_name":"Grenada", 460 | "chinese_name":"格林纳达", 461 | "country_code":"GD", 462 | "phone_code":"1473" 463 | }, 464 | { 465 | "english_name":"Guadeloupe", 466 | "chinese_name":"瓜德罗普岛", 467 | "country_code":"GP", 468 | "phone_code":"590" 469 | }, 470 | { 471 | "english_name":"Guam", 472 | "chinese_name":"关岛", 473 | "country_code":"GU", 474 | "phone_code":"1671" 475 | }, 476 | { 477 | "english_name":"Guatemala", 478 | "chinese_name":"瓜地马拉", 479 | "country_code":"GT", 480 | "phone_code":"502" 481 | }, 482 | { 483 | "english_name":"Guinea", 484 | "chinese_name":"几内亚", 485 | "country_code":"GN", 486 | "phone_code":"224" 487 | }, 488 | { 489 | "english_name":"Guinea-Bissau", 490 | "chinese_name":"几内亚比绍共和国", 491 | "country_code":"GW", 492 | "phone_code":"245" 493 | }, 494 | { 495 | "english_name":"Guyana", 496 | "chinese_name":"圭亚那", 497 | "country_code":"GY", 498 | "phone_code":"592" 499 | }, 500 | { 501 | "english_name":"Haiti", 502 | "chinese_name":"海地", 503 | "country_code":"HT", 504 | "phone_code":"509" 505 | }, 506 | { 507 | "english_name":"Honduras", 508 | "chinese_name":"洪都拉斯", 509 | "country_code":"HN", 510 | "phone_code":"504" 511 | }, 512 | { 513 | "english_name":"Hong Kong", 514 | "chinese_name":"中国香港", 515 | "country_code":"HK", 516 | "phone_code":"852" 517 | }, 518 | { 519 | "english_name":"Hungary", 520 | "chinese_name":"匈牙利", 521 | "country_code":"HU", 522 | "phone_code":"36" 523 | }, 524 | { 525 | "english_name":"Iceland", 526 | "chinese_name":"冰岛", 527 | "country_code":"IS", 528 | "phone_code":"354" 529 | }, 530 | { 531 | "english_name":"India", 532 | "chinese_name":"印度", 533 | "country_code":"IN", 534 | "phone_code":"91" 535 | }, 536 | { 537 | "english_name":"Indonesia", 538 | "chinese_name":"印度尼西亚", 539 | "country_code":"ID", 540 | "phone_code":"62" 541 | }, 542 | { 543 | "english_name":"Iran", 544 | "chinese_name":"伊朗", 545 | "country_code":"IR", 546 | "phone_code":"98" 547 | }, 548 | { 549 | "english_name":"Iraq", 550 | "chinese_name":"伊拉克", 551 | "country_code":"IQ", 552 | "phone_code":"964" 553 | }, 554 | { 555 | "english_name":"Ireland", 556 | "chinese_name":"爱尔兰", 557 | "country_code":"IE", 558 | "phone_code":"353" 559 | }, 560 | { 561 | "english_name":"Israel", 562 | "chinese_name":"以色列", 563 | "country_code":"IL", 564 | "phone_code":"972" 565 | }, 566 | { 567 | "english_name":"Italy", 568 | "chinese_name":"意大利", 569 | "country_code":"IT", 570 | "phone_code":"39" 571 | }, 572 | { 573 | "english_name":"Ivory Coast", 574 | "chinese_name":"象牙海岸", 575 | "country_code":"CI", 576 | "phone_code":"225" 577 | }, 578 | { 579 | "english_name":"Jamaica", 580 | "chinese_name":"牙买加", 581 | "country_code":"JM", 582 | "phone_code":"1876" 583 | }, 584 | { 585 | "english_name":"Japan", 586 | "chinese_name":"日本", 587 | "country_code":"JP", 588 | "phone_code":"81" 589 | }, 590 | { 591 | "english_name":"Jordan", 592 | "chinese_name":"约旦", 593 | "country_code":"JO", 594 | "phone_code":"962" 595 | }, 596 | { 597 | "english_name":"Kazakhstan", 598 | "chinese_name":"哈萨克斯坦", 599 | "country_code":"KZ", 600 | "phone_code":"7" 601 | }, 602 | { 603 | "english_name":"Kenya", 604 | "chinese_name":"肯尼亚", 605 | "country_code":"KE", 606 | "phone_code":"254" 607 | }, 608 | { 609 | "english_name":"Kiribati", 610 | "chinese_name":"基里巴斯", 611 | "country_code":"KI", 612 | "phone_code":"686" 613 | }, 614 | { 615 | "english_name":"Kuwait", 616 | "chinese_name":"科威特", 617 | "country_code":"KW", 618 | "phone_code":"965" 619 | }, 620 | { 621 | "english_name":"Kyrgyzstan", 622 | "chinese_name":"吉尔吉斯斯坦", 623 | "country_code":"KG", 624 | "phone_code":"996" 625 | }, 626 | { 627 | "english_name":"Laos", 628 | "chinese_name":"老挝", 629 | "country_code":"LA", 630 | "phone_code":"856" 631 | }, 632 | { 633 | "english_name":"Latvia", 634 | "chinese_name":"拉脱维亚", 635 | "country_code":"LV", 636 | "phone_code":"371" 637 | }, 638 | { 639 | "english_name":"Lebanon", 640 | "chinese_name":"黎巴嫩", 641 | "country_code":"LB", 642 | "phone_code":"961" 643 | }, 644 | { 645 | "english_name":"Lesotho", 646 | "chinese_name":"莱索托", 647 | "country_code":"LS", 648 | "phone_code":"266" 649 | }, 650 | { 651 | "english_name":"Liberia", 652 | "chinese_name":"利比里亚", 653 | "country_code":"LR", 654 | "phone_code":"231" 655 | }, 656 | { 657 | "english_name":"Libya", 658 | "chinese_name":"利比亚", 659 | "country_code":"LY", 660 | "phone_code":"218" 661 | }, 662 | { 663 | "english_name":"Liechtenstein", 664 | "chinese_name":"列支敦士登", 665 | "country_code":"LI", 666 | "phone_code":"423" 667 | }, 668 | { 669 | "english_name":"Lithuania", 670 | "chinese_name":"立陶宛", 671 | "country_code":"LT", 672 | "phone_code":"370" 673 | }, 674 | { 675 | "english_name":"Luxembourg", 676 | "chinese_name":"卢森堡", 677 | "country_code":"LU", 678 | "phone_code":"352" 679 | }, 680 | { 681 | "english_name":"Macau", 682 | "chinese_name":"中国澳门", 683 | "country_code":"MO", 684 | "phone_code":"853" 685 | }, 686 | { 687 | "english_name":"Macedonia", 688 | "chinese_name":"马其顿", 689 | "country_code":"MK", 690 | "phone_code":"389" 691 | }, 692 | { 693 | "english_name":"Madagascar", 694 | "chinese_name":"马达加斯加", 695 | "country_code":"MG", 696 | "phone_code":"261" 697 | }, 698 | { 699 | "english_name":"Malawi", 700 | "chinese_name":"马拉维", 701 | "country_code":"MW", 702 | "phone_code":"265" 703 | }, 704 | { 705 | "english_name":"Malaysia", 706 | "chinese_name":"马来西亚", 707 | "country_code":"MY", 708 | "phone_code":"60" 709 | }, 710 | { 711 | "english_name":"Maldives", 712 | "chinese_name":"马尔代夫", 713 | "country_code":"MV", 714 | "phone_code":"960" 715 | }, 716 | { 717 | "english_name":"Mali", 718 | "chinese_name":"马里", 719 | "country_code":"ML", 720 | "phone_code":"223" 721 | }, 722 | { 723 | "english_name":"Malta", 724 | "chinese_name":"马耳他", 725 | "country_code":"MT", 726 | "phone_code":"356" 727 | }, 728 | { 729 | "english_name":"Martinique", 730 | "chinese_name":"马提尼克", 731 | "country_code":"MQ", 732 | "phone_code":"596" 733 | }, 734 | { 735 | "english_name":"Mauritania", 736 | "chinese_name":"毛里塔尼亚", 737 | "country_code":"MR", 738 | "phone_code":"222" 739 | }, 740 | { 741 | "english_name":"Mauritius", 742 | "chinese_name":"毛里求斯", 743 | "country_code":"MU", 744 | "phone_code":"230" 745 | }, 746 | { 747 | "english_name":"Mayotte", 748 | "chinese_name":"马约特", 749 | "country_code":"YT", 750 | "phone_code":"269" 751 | }, 752 | { 753 | "english_name":"Mexico", 754 | "chinese_name":"墨西哥", 755 | "country_code":"MX", 756 | "phone_code":"52" 757 | }, 758 | { 759 | "english_name":"Moldova", 760 | "chinese_name":"摩尔多瓦", 761 | "country_code":"MD", 762 | "phone_code":"373" 763 | }, 764 | { 765 | "english_name":"Monaco", 766 | "chinese_name":"摩纳哥", 767 | "country_code":"MC", 768 | "phone_code":"377" 769 | }, 770 | { 771 | "english_name":"Mongolia", 772 | "chinese_name":"蒙古", 773 | "country_code":"MN", 774 | "phone_code":"976" 775 | }, 776 | { 777 | "english_name":"Montenegro", 778 | "chinese_name":"黑山", 779 | "country_code":"ME", 780 | "phone_code":"382" 781 | }, 782 | { 783 | "english_name":"Montserrat", 784 | "chinese_name":"蒙特塞拉特岛", 785 | "country_code":"MS", 786 | "phone_code":"1664" 787 | }, 788 | { 789 | "english_name":"Morocco", 790 | "chinese_name":"摩洛哥", 791 | "country_code":"MA", 792 | "phone_code":"212" 793 | }, 794 | { 795 | "english_name":"Mozambique", 796 | "chinese_name":"莫桑比克", 797 | "country_code":"MZ", 798 | "phone_code":"258" 799 | }, 800 | { 801 | "english_name":"Myanmar", 802 | "chinese_name":"缅甸", 803 | "country_code":"MM", 804 | "phone_code":"95" 805 | }, 806 | { 807 | "english_name":"Namibia", 808 | "chinese_name":"纳米比亚", 809 | "country_code":"NA", 810 | "phone_code":"264" 811 | }, 812 | { 813 | "english_name":"Nepal", 814 | "chinese_name":"尼泊尔", 815 | "country_code":"NP", 816 | "phone_code":"977" 817 | }, 818 | { 819 | "english_name":"Netherlands", 820 | "chinese_name":"荷兰", 821 | "country_code":"NL", 822 | "phone_code":"31" 823 | }, 824 | { 825 | "english_name":"New Caledonia", 826 | "chinese_name":"新喀里多尼亚", 827 | "country_code":"NC", 828 | "phone_code":"687" 829 | }, 830 | { 831 | "english_name":"New Zealand", 832 | "chinese_name":"新西兰", 833 | "country_code":"NZ", 834 | "phone_code":"64" 835 | }, 836 | { 837 | "english_name":"Nicaragua", 838 | "chinese_name":"尼加拉瓜", 839 | "country_code":"NI", 840 | "phone_code":"505" 841 | }, 842 | { 843 | "english_name":"Niger", 844 | "chinese_name":"尼日尔", 845 | "country_code":"NE", 846 | "phone_code":"227" 847 | }, 848 | { 849 | "english_name":"Nigeria", 850 | "chinese_name":"尼日利亚", 851 | "country_code":"NG", 852 | "phone_code":"234" 853 | }, 854 | { 855 | "english_name":"Norway", 856 | "chinese_name":"挪威", 857 | "country_code":"NO", 858 | "phone_code":"47" 859 | }, 860 | { 861 | "english_name":"Oman", 862 | "chinese_name":"阿曼", 863 | "country_code":"OM", 864 | "phone_code":"968" 865 | }, 866 | { 867 | "english_name":"Pakistan", 868 | "chinese_name":"巴基斯坦", 869 | "country_code":"PK", 870 | "phone_code":"92" 871 | }, 872 | { 873 | "english_name":"Palau", 874 | "chinese_name":"帕劳", 875 | "country_code":"PW", 876 | "phone_code":"680" 877 | }, 878 | { 879 | "english_name":"Palestine", 880 | "chinese_name":"巴勒斯坦", 881 | "country_code":"BL", 882 | "phone_code":"970" 883 | }, 884 | { 885 | "english_name":"Panama", 886 | "chinese_name":"巴拿马", 887 | "country_code":"PA", 888 | "phone_code":"507" 889 | }, 890 | { 891 | "english_name":"Papua New Guinea", 892 | "chinese_name":"巴布亚新几内亚", 893 | "country_code":"PG", 894 | "phone_code":"675" 895 | }, 896 | { 897 | "english_name":"Paraguay", 898 | "chinese_name":"巴拉圭", 899 | "country_code":"PY", 900 | "phone_code":"595" 901 | }, 902 | { 903 | "english_name":"Peru", 904 | "chinese_name":"秘鲁", 905 | "country_code":"PE", 906 | "phone_code":"51" 907 | }, 908 | { 909 | "english_name":"Philippines", 910 | "chinese_name":"菲律宾", 911 | "country_code":"PH", 912 | "phone_code":"63" 913 | }, 914 | { 915 | "english_name":"Poland", 916 | "chinese_name":"波兰", 917 | "country_code":"PL", 918 | "phone_code":"48" 919 | }, 920 | { 921 | "english_name":"Portugal", 922 | "chinese_name":"葡萄牙", 923 | "country_code":"PT", 924 | "phone_code":"351" 925 | }, 926 | { 927 | "english_name":"Puerto Rico", 928 | "chinese_name":"波多黎各", 929 | "country_code":"PR", 930 | "phone_code":"1787" 931 | }, 932 | { 933 | "english_name":"Qatar", 934 | "chinese_name":"卡塔尔", 935 | "country_code":"QA", 936 | "phone_code":"974" 937 | }, 938 | { 939 | "english_name":"Republic Of The Congo", 940 | "chinese_name":"刚果共和国", 941 | "country_code":"CG", 942 | "phone_code":"242" 943 | }, 944 | { 945 | "english_name":"Réunion Island", 946 | "chinese_name":"留尼汪", 947 | "country_code":"RE", 948 | "phone_code":"262" 949 | }, 950 | { 951 | "english_name":"Romania", 952 | "chinese_name":"罗马尼亚", 953 | "country_code":"RO", 954 | "phone_code":"40" 955 | }, 956 | { 957 | "english_name":"Russia", 958 | "chinese_name":"俄罗斯", 959 | "country_code":"RU", 960 | "phone_code":"7" 961 | }, 962 | { 963 | "english_name":"Rwanda", 964 | "chinese_name":"卢旺达", 965 | "country_code":"RW", 966 | "phone_code":"250" 967 | }, 968 | { 969 | "english_name":"Saint Kitts and Nevis", 970 | "chinese_name":"圣基茨和尼维斯", 971 | "country_code":"KN", 972 | "phone_code":"1869" 973 | }, 974 | { 975 | "english_name":"Saint Lucia", 976 | "chinese_name":"圣露西亚", 977 | "country_code":"LC", 978 | "phone_code":"1758" 979 | }, 980 | { 981 | "english_name":"Saint Pierre and Miquelon", 982 | "chinese_name":"圣彼埃尔和密克隆岛", 983 | "country_code":"PM", 984 | "phone_code":"508" 985 | }, 986 | { 987 | "english_name":"Saint Vincent and The Grenadines", 988 | "chinese_name":"圣文森特和格林纳丁斯", 989 | "country_code":"VC", 990 | "phone_code":"1784" 991 | }, 992 | { 993 | "english_name":"Samoa", 994 | "chinese_name":"萨摩亚", 995 | "country_code":"WS", 996 | "phone_code":"685" 997 | }, 998 | { 999 | "english_name":"San Marino", 1000 | "chinese_name":"圣马力诺", 1001 | "country_code":"SM", 1002 | "phone_code":"378" 1003 | }, 1004 | { 1005 | "english_name":"Sao Tome and Principe", 1006 | "chinese_name":"圣多美和普林西比", 1007 | "country_code":"ST", 1008 | "phone_code":"239" 1009 | }, 1010 | { 1011 | "english_name":"Saudi Arabia", 1012 | "chinese_name":"沙特阿拉伯", 1013 | "country_code":"SA", 1014 | "phone_code":"966" 1015 | }, 1016 | { 1017 | "english_name":"Senegal", 1018 | "chinese_name":"塞内加尔", 1019 | "country_code":"SN", 1020 | "phone_code":"221" 1021 | }, 1022 | { 1023 | "english_name":"Serbia", 1024 | "chinese_name":"塞尔维亚", 1025 | "country_code":"RS", 1026 | "phone_code":"381" 1027 | }, 1028 | { 1029 | "english_name":"Seychelles", 1030 | "chinese_name":"塞舌尔", 1031 | "country_code":"SC", 1032 | "phone_code":"248" 1033 | }, 1034 | { 1035 | "english_name":"Sierra Leone", 1036 | "chinese_name":"塞拉利昂", 1037 | "country_code":"SL", 1038 | "phone_code":"232" 1039 | }, 1040 | { 1041 | "english_name":"Singapore", 1042 | "chinese_name":"新加坡", 1043 | "country_code":"SG", 1044 | "phone_code":"65" 1045 | }, 1046 | { 1047 | "english_name":"Saint Maarten (Dutch Part)", 1048 | "chinese_name":"圣马丁岛(荷兰部分)", 1049 | "country_code":"SX", 1050 | "phone_code":"1721" 1051 | }, 1052 | { 1053 | "english_name":"Slovakia", 1054 | "chinese_name":"斯洛伐克", 1055 | "country_code":"SK", 1056 | "phone_code":"421" 1057 | }, 1058 | { 1059 | "english_name":"Slovenia", 1060 | "chinese_name":"斯洛文尼亚", 1061 | "country_code":"SI", 1062 | "phone_code":"386" 1063 | }, 1064 | { 1065 | "english_name":"Solomon Islands", 1066 | "chinese_name":"所罗门群岛", 1067 | "country_code":"SB", 1068 | "phone_code":"677" 1069 | }, 1070 | { 1071 | "english_name":"Somalia", 1072 | "chinese_name":"索马里", 1073 | "country_code":"SO", 1074 | "phone_code":"252" 1075 | }, 1076 | { 1077 | "english_name":"South Africa", 1078 | "chinese_name":"南非", 1079 | "country_code":"ZA", 1080 | "phone_code":"27" 1081 | }, 1082 | { 1083 | "english_name":"South Korea", 1084 | "chinese_name":"韩国", 1085 | "country_code":"KR", 1086 | "phone_code":"82" 1087 | }, 1088 | { 1089 | "english_name":"Spain", 1090 | "chinese_name":"西班牙", 1091 | "country_code":"ES", 1092 | "phone_code":"34" 1093 | }, 1094 | { 1095 | "english_name":"Sri Lanka", 1096 | "chinese_name":"斯里兰卡", 1097 | "country_code":"LK", 1098 | "phone_code":"94" 1099 | }, 1100 | { 1101 | "english_name":"Sudan", 1102 | "chinese_name":"苏丹", 1103 | "country_code":"SD", 1104 | "phone_code":"249" 1105 | }, 1106 | { 1107 | "english_name":"Suriname", 1108 | "chinese_name":"苏里南", 1109 | "country_code":"SR", 1110 | "phone_code":"597" 1111 | }, 1112 | { 1113 | "english_name":"Swaziland", 1114 | "chinese_name":"斯威士兰", 1115 | "country_code":"SZ", 1116 | "phone_code":"268" 1117 | }, 1118 | { 1119 | "english_name":"Sweden", 1120 | "chinese_name":"瑞典", 1121 | "country_code":"SE", 1122 | "phone_code":"46" 1123 | }, 1124 | { 1125 | "english_name":"Switzerland", 1126 | "chinese_name":"瑞士", 1127 | "country_code":"CH", 1128 | "phone_code":"41" 1129 | }, 1130 | { 1131 | "english_name":"Syria", 1132 | "chinese_name":"叙利亚", 1133 | "country_code":"SY", 1134 | "phone_code":"963" 1135 | }, 1136 | { 1137 | "english_name":"Taiwan", 1138 | "chinese_name":"中国台湾", 1139 | "country_code":"TW", 1140 | "phone_code":"886" 1141 | }, 1142 | { 1143 | "english_name":"Tajikistan", 1144 | "chinese_name":"塔吉克斯坦", 1145 | "country_code":"TJ", 1146 | "phone_code":"992" 1147 | }, 1148 | { 1149 | "english_name":"Tanzania", 1150 | "chinese_name":"坦桑尼亚", 1151 | "country_code":"TZ", 1152 | "phone_code":"255" 1153 | }, 1154 | { 1155 | "english_name":"Thailand", 1156 | "chinese_name":"泰国", 1157 | "country_code":"TH", 1158 | "phone_code":"66" 1159 | }, 1160 | { 1161 | "english_name":"Timor-Leste", 1162 | "chinese_name":"东帝汶", 1163 | "country_code":"TL", 1164 | "phone_code":"670" 1165 | }, 1166 | { 1167 | "english_name":"Togo", 1168 | "chinese_name":"多哥", 1169 | "country_code":"TG", 1170 | "phone_code":"228" 1171 | }, 1172 | { 1173 | "english_name":"Tonga", 1174 | "chinese_name":"汤加", 1175 | "country_code":"TO", 1176 | "phone_code":"676" 1177 | }, 1178 | { 1179 | "english_name":"Trinidad and Tobago", 1180 | "chinese_name":"特立尼达和多巴哥", 1181 | "country_code":"TT", 1182 | "phone_code":"1868" 1183 | }, 1184 | { 1185 | "english_name":"Tunisia", 1186 | "chinese_name":"突尼斯", 1187 | "country_code":"TN", 1188 | "phone_code":"216" 1189 | }, 1190 | { 1191 | "english_name":"Turkey", 1192 | "chinese_name":"土耳其", 1193 | "country_code":"TR", 1194 | "phone_code":"90" 1195 | }, 1196 | { 1197 | "english_name":"Turkmenistan", 1198 | "chinese_name":"土库曼斯坦", 1199 | "country_code":"TM", 1200 | "phone_code":"993" 1201 | }, 1202 | { 1203 | "english_name":"Turks and Caicos Islands", 1204 | "chinese_name":"特克斯和凯科斯群岛", 1205 | "country_code":"TC", 1206 | "phone_code":"1649" 1207 | }, 1208 | { 1209 | "english_name":"Uganda", 1210 | "chinese_name":"乌干达", 1211 | "country_code":"UG", 1212 | "phone_code":"256" 1213 | }, 1214 | { 1215 | "english_name":"Ukraine", 1216 | "chinese_name":"乌克兰", 1217 | "country_code":"UA", 1218 | "phone_code":"380" 1219 | }, 1220 | { 1221 | "english_name":"United Arab Emirates", 1222 | "chinese_name":"阿拉伯联合酋长国", 1223 | "country_code":"AE", 1224 | "phone_code":"971" 1225 | }, 1226 | { 1227 | "english_name":"United Kingdom", 1228 | "chinese_name":"英国", 1229 | "country_code":"GB", 1230 | "phone_code":"44" 1231 | }, 1232 | { 1233 | "english_name":"United States", 1234 | "chinese_name":"美国", 1235 | "country_code":"US", 1236 | "phone_code":"1" 1237 | }, 1238 | { 1239 | "english_name":"Uruguay", 1240 | "chinese_name":"乌拉圭", 1241 | "country_code":"UY", 1242 | "phone_code":"598" 1243 | }, 1244 | { 1245 | "english_name":"Uzbekistan", 1246 | "chinese_name":"乌兹别克斯坦", 1247 | "country_code":"UZ", 1248 | "phone_code":"998" 1249 | }, 1250 | { 1251 | "english_name":"Vanuatu", 1252 | "chinese_name":"瓦努阿图", 1253 | "country_code":"VU", 1254 | "phone_code":"678" 1255 | }, 1256 | { 1257 | "english_name":"Venezuela", 1258 | "chinese_name":"委内瑞拉", 1259 | "country_code":"VE", 1260 | "phone_code":"58" 1261 | }, 1262 | { 1263 | "english_name":"Vietnam", 1264 | "chinese_name":"越南", 1265 | "country_code":"VN", 1266 | "phone_code":"84" 1267 | }, 1268 | { 1269 | "english_name":"Virgin Islands, British", 1270 | "chinese_name":"英属处女群岛", 1271 | "country_code":"VG", 1272 | "phone_code":"1340" 1273 | }, 1274 | { 1275 | "english_name":"Virgin Islands, US", 1276 | "chinese_name":"美属维尔京群岛", 1277 | "country_code":"VI", 1278 | "phone_code":"1284" 1279 | }, 1280 | { 1281 | "english_name":"Yemen", 1282 | "chinese_name":"也门", 1283 | "country_code":"YE", 1284 | "phone_code":"967" 1285 | }, 1286 | { 1287 | "english_name":"Zambia", 1288 | "chinese_name":"赞比亚", 1289 | "country_code":"ZM", 1290 | "phone_code":"260" 1291 | }, 1292 | { 1293 | "english_name":"Zimbabwe", 1294 | "chinese_name":"津巴布韦", 1295 | "country_code":"ZW", 1296 | "phone_code":"263" 1297 | } 1298 | ] 1299 | -------------------------------------------------------------------------------- /all/countryCodeAndPhoneCode.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "english_name":"Afghanistan", 4 | "chinese_name":"阿富汗", 5 | "country_code":"AF", 6 | "phone_code":"93" 7 | }, 8 | { 9 | "english_name":"Alaska", 10 | "chinese_name":"阿拉斯加", 11 | "country_code":"US", 12 | "phone_code":"1907" 13 | }, 14 | { 15 | "english_name":"Albania", 16 | "chinese_name":"阿尔巴尼亚", 17 | "country_code":"AL", 18 | "phone_code":"355" 19 | }, 20 | { 21 | "english_name":"Algeria", 22 | "chinese_name":"阿尔及利亚", 23 | "country_code":"DZ", 24 | "phone_code":"213" 25 | }, 26 | { 27 | "english_name":"American Samoa", 28 | "chinese_name":"美属萨摩亚", 29 | "country_code":"AS", 30 | "phone_code":"1684" 31 | }, 32 | { 33 | "english_name":"Andorra", 34 | "chinese_name":"安道尔", 35 | "country_code":"AD", 36 | "phone_code":"376" 37 | }, 38 | { 39 | "english_name":"Angola", 40 | "chinese_name":"安哥拉", 41 | "country_code":"AO", 42 | "phone_code":"244" 43 | }, 44 | { 45 | "english_name":"Anguilla", 46 | "chinese_name":"安圭拉", 47 | "country_code":"AI", 48 | "phone_code":"1264" 49 | }, 50 | { 51 | "english_name":"Antigua and Barbuda", 52 | "chinese_name":"安提瓜和巴布达", 53 | "country_code":"AG", 54 | "phone_code":"1268" 55 | }, 56 | { 57 | "english_name":"Argentina", 58 | "chinese_name":"阿根廷", 59 | "country_code":"AR", 60 | "phone_code":"54" 61 | }, 62 | { 63 | "english_name":"Armenia", 64 | "chinese_name":"亚美尼亚", 65 | "country_code":"AM", 66 | "phone_code":"374" 67 | }, 68 | { 69 | "english_name":"Aruba", 70 | "chinese_name":"阿鲁巴", 71 | "country_code":"AW", 72 | "phone_code":"297" 73 | }, 74 | { 75 | "english_name":"Ascension", 76 | "chinese_name":"阿森松", 77 | "country_code":"SH", 78 | "phone_code":"247" 79 | }, 80 | { 81 | "english_name":"Australia", 82 | "chinese_name":"澳大利亚", 83 | "country_code":"AU", 84 | "phone_code":"61" 85 | }, 86 | { 87 | "english_name":"Austria", 88 | "chinese_name":"奥地利", 89 | "country_code":"AT", 90 | "phone_code":"43" 91 | }, 92 | { 93 | "english_name":"Azerbaijan", 94 | "chinese_name":"阿塞拜疆", 95 | "country_code":"AZ", 96 | "phone_code":"994" 97 | }, 98 | { 99 | "english_name":"Bahamas", 100 | "chinese_name":"巴哈马", 101 | "country_code":"BS", 102 | "phone_code":"1242" 103 | }, 104 | { 105 | "english_name":"Bahrain", 106 | "chinese_name":"巴林", 107 | "country_code":"BH", 108 | "phone_code":"973" 109 | }, 110 | { 111 | "english_name":"Bangladesh", 112 | "chinese_name":"孟加拉国", 113 | "country_code":"BD", 114 | "phone_code":"880" 115 | }, 116 | { 117 | "english_name":"Barbados", 118 | "chinese_name":"巴巴多斯", 119 | "country_code":"BB", 120 | "phone_code":"1246" 121 | }, 122 | { 123 | "english_name":"Belarus", 124 | "chinese_name":"白俄罗斯", 125 | "country_code":"BY", 126 | "phone_code":"375" 127 | }, 128 | { 129 | "english_name":"Belgium", 130 | "chinese_name":"比利时", 131 | "country_code":"BE", 132 | "phone_code":"32" 133 | }, 134 | { 135 | "english_name":"Belize", 136 | "chinese_name":"伯利兹", 137 | "country_code":"BZ", 138 | "phone_code":"501" 139 | }, 140 | { 141 | "english_name":"Benin", 142 | "chinese_name":"贝宁", 143 | "country_code":"BJ", 144 | "phone_code":"229" 145 | }, 146 | { 147 | "english_name":"Bermuda", 148 | "chinese_name":"百慕大群岛", 149 | "country_code":"BM", 150 | "phone_code":"1441" 151 | }, 152 | { 153 | "english_name":"Bhutan", 154 | "chinese_name":"不丹", 155 | "country_code":"BT", 156 | "phone_code":"975" 157 | }, 158 | { 159 | "english_name":"Bolivia", 160 | "chinese_name":"玻利维亚", 161 | "country_code":"BO", 162 | "phone_code":"591" 163 | }, 164 | { 165 | "english_name":"Bosnia and Herzegovina", 166 | "chinese_name":"波斯尼亚和黑塞哥维那", 167 | "country_code":"BA", 168 | "phone_code":"387" 169 | }, 170 | { 171 | "english_name":"Botswana", 172 | "chinese_name":"博茨瓦纳", 173 | "country_code":"BW", 174 | "phone_code":"267" 175 | }, 176 | { 177 | "english_name":"Brazil", 178 | "chinese_name":"巴西", 179 | "country_code":"BR", 180 | "phone_code":"55" 181 | }, 182 | { 183 | "english_name":"Brunei", 184 | "chinese_name":"文莱", 185 | "country_code":"BN", 186 | "phone_code":"673" 187 | }, 188 | { 189 | "english_name":"Bulgaria", 190 | "chinese_name":"保加利亚", 191 | "country_code":"BG", 192 | "phone_code":"359" 193 | }, 194 | { 195 | "english_name":"Burkina Faso", 196 | "chinese_name":"布基纳法索", 197 | "country_code":"BF", 198 | "phone_code":"226" 199 | }, 200 | { 201 | "english_name":"Burundi", 202 | "chinese_name":"布隆迪", 203 | "country_code":"BI", 204 | "phone_code":"257" 205 | }, 206 | { 207 | "english_name":"Cambodia", 208 | "chinese_name":"柬埔寨", 209 | "country_code":"KH", 210 | "phone_code":"855" 211 | }, 212 | { 213 | "english_name":"Cameroon", 214 | "chinese_name":"喀麦隆", 215 | "country_code":"CM", 216 | "phone_code":"237" 217 | }, 218 | { 219 | "english_name":"Canada", 220 | "chinese_name":"加拿大", 221 | "country_code":"CA", 222 | "phone_code":"1" 223 | }, 224 | { 225 | "english_name":"Islas Canarias", 226 | "chinese_name":"加那利群岛", 227 | "country_code":"ES", 228 | "phone_code":"34" 229 | }, 230 | { 231 | "english_name":"Cape Verde", 232 | "chinese_name":"开普", 233 | "country_code":"CV", 234 | "phone_code":"238" 235 | }, 236 | { 237 | "english_name":"Cayman Islands", 238 | "chinese_name":"开曼群岛", 239 | "country_code":"KY", 240 | "phone_code":"1345" 241 | }, 242 | { 243 | "english_name":"Central African Republic", 244 | "chinese_name":"中非共和国", 245 | "country_code":"CF", 246 | "phone_code":"236" 247 | }, 248 | { 249 | "english_name":"Chad", 250 | "chinese_name":"乍得", 251 | "country_code":"TD", 252 | "phone_code":"235" 253 | }, 254 | { 255 | "english_name":"China", 256 | "chinese_name":"中国", 257 | "country_code":"CN", 258 | "phone_code":"86" 259 | }, 260 | { 261 | "english_name":"Chile", 262 | "chinese_name":"智利", 263 | "country_code":"CL", 264 | "phone_code":"56" 265 | }, 266 | { 267 | "english_name":"Christmas Island", 268 | "chinese_name":"圣诞岛", 269 | "country_code":"CX", 270 | "phone_code":"0061 9164" 271 | }, 272 | { 273 | "english_name":"Cocos Island", 274 | "chinese_name":"科科斯岛", 275 | "country_code":"CC", 276 | "phone_code":"0061 9162" 277 | }, 278 | { 279 | "english_name":"Colombia", 280 | "chinese_name":"哥伦比亚", 281 | "country_code":"CO", 282 | "phone_code":"57" 283 | }, 284 | { 285 | "english_name":"Comoros", 286 | "chinese_name":"科摩罗", 287 | "country_code":"KM", 288 | "phone_code":"269" 289 | }, 290 | { 291 | "english_name":"Republic Of The Congo", 292 | "chinese_name":"刚果共和国", 293 | "country_code":"CG", 294 | "phone_code":"242" 295 | }, 296 | { 297 | "english_name":"Cook Islands", 298 | "chinese_name":"库克群岛", 299 | "country_code":"CK", 300 | "phone_code":"682" 301 | }, 302 | { 303 | "english_name":"Costa Rica", 304 | "chinese_name":"哥斯达黎加", 305 | "country_code":"CR", 306 | "phone_code":"506" 307 | }, 308 | { 309 | "english_name":"Croatia", 310 | "chinese_name":"克罗地亚", 311 | "country_code":"HR", 312 | "phone_code":"385" 313 | }, 314 | { 315 | "english_name":"Cuba", 316 | "chinese_name":"古巴", 317 | "country_code":"CU", 318 | "phone_code":"53" 319 | }, 320 | { 321 | "english_name":"Curacao", 322 | "chinese_name":"库拉索", 323 | "country_code":"CW", 324 | "phone_code":"599" 325 | }, 326 | { 327 | "english_name":"Cyprus", 328 | "chinese_name":"塞浦路斯", 329 | "country_code":"CY", 330 | "phone_code":"357" 331 | }, 332 | { 333 | "english_name":"Czech", 334 | "chinese_name":"捷克", 335 | "country_code":"CZ", 336 | "phone_code":"420" 337 | }, 338 | { 339 | "english_name":"Denmark", 340 | "chinese_name":"丹麦", 341 | "country_code":"DK", 342 | "phone_code":"45" 343 | }, 344 | { 345 | "english_name":"Djibouti", 346 | "chinese_name":"吉布提", 347 | "country_code":"DJ", 348 | "phone_code":"253" 349 | }, 350 | { 351 | "english_name":"Dominica", 352 | "chinese_name":"多米尼克", 353 | "country_code":"DM", 354 | "phone_code":"1767" 355 | }, 356 | { 357 | "english_name":"Dominican Republic", 358 | "chinese_name":"多米尼加共和国", 359 | "country_code":"DO", 360 | "phone_code":"1809" 361 | }, 362 | { 363 | "english_name":"Ecuador", 364 | "chinese_name":"厄瓜多尔", 365 | "country_code":"EC", 366 | "phone_code":"593" 367 | }, 368 | { 369 | "english_name":"Egypt", 370 | "chinese_name":"埃及", 371 | "country_code":"EG", 372 | "phone_code":"20" 373 | }, 374 | { 375 | "english_name":"El Salvador", 376 | "chinese_name":"萨尔瓦多", 377 | "country_code":"SV", 378 | "phone_code":"503" 379 | }, 380 | { 381 | "english_name":"Equatorial Guinea", 382 | "chinese_name":"赤道几内亚", 383 | "country_code":"GQ", 384 | "phone_code":"240" 385 | }, 386 | { 387 | "english_name":"Eritrea", 388 | "chinese_name":"厄立特里亚", 389 | "country_code":"ER", 390 | "phone_code":"291" 391 | }, 392 | { 393 | "english_name":"Estonia", 394 | "chinese_name":"爱沙尼亚", 395 | "country_code":"EE", 396 | "phone_code":"372" 397 | }, 398 | { 399 | "english_name":"Ethiopia", 400 | "chinese_name":"埃塞俄比亚", 401 | "country_code":"ET", 402 | "phone_code":"251" 403 | }, 404 | { 405 | "english_name":"Falkland Islands", 406 | "chinese_name":"福克兰群岛", 407 | "country_code":"FK", 408 | "phone_code":"500" 409 | }, 410 | { 411 | "english_name":"Faroe Islands", 412 | "chinese_name":"法罗群岛", 413 | "country_code":"FO", 414 | "phone_code":"298" 415 | }, 416 | { 417 | "english_name":"Fiji", 418 | "chinese_name":"斐济", 419 | "country_code":"FJ", 420 | "phone_code":"679" 421 | }, 422 | { 423 | "english_name":"Finland", 424 | "chinese_name":"芬兰", 425 | "country_code":"FI", 426 | "phone_code":"358" 427 | }, 428 | { 429 | "english_name":"France", 430 | "chinese_name":"法国", 431 | "country_code":"FR", 432 | "phone_code":"33" 433 | }, 434 | { 435 | "english_name":"French Guiana", 436 | "chinese_name":"法属圭亚那", 437 | "country_code":"GF", 438 | "phone_code":"594" 439 | }, 440 | { 441 | "english_name":"French Polynesia", 442 | "chinese_name":"法属波利尼西亚", 443 | "country_code":"PF", 444 | "phone_code":"689" 445 | }, 446 | { 447 | "english_name":"Gabon", 448 | "chinese_name":"加蓬", 449 | "country_code":"GA", 450 | "phone_code":"241" 451 | }, 452 | { 453 | "english_name":"Gambia", 454 | "chinese_name":"冈比亚", 455 | "country_code":"GM", 456 | "phone_code":"220" 457 | }, 458 | { 459 | "english_name":"Georgia", 460 | "chinese_name":"格鲁吉亚", 461 | "country_code":"GE", 462 | "phone_code":"995" 463 | }, 464 | { 465 | "english_name":"Germany", 466 | "chinese_name":"德国", 467 | "country_code":"DE", 468 | "phone_code":"49" 469 | }, 470 | { 471 | "english_name":"Ghana", 472 | "chinese_name":"加纳", 473 | "country_code":"GH", 474 | "phone_code":"233" 475 | }, 476 | { 477 | "english_name":"Gibraltar", 478 | "chinese_name":"直布罗陀", 479 | "country_code":"GI", 480 | "phone_code":"350" 481 | }, 482 | { 483 | "english_name":"Greece", 484 | "chinese_name":"希腊", 485 | "country_code":"GR", 486 | "phone_code":"30" 487 | }, 488 | { 489 | "english_name":"Greenland", 490 | "chinese_name":"格陵兰岛", 491 | "country_code":"GL", 492 | "phone_code":"299" 493 | }, 494 | { 495 | "english_name":"Grenada", 496 | "chinese_name":"格林纳达", 497 | "country_code":"GD", 498 | "phone_code":"1473" 499 | }, 500 | { 501 | "english_name":"Guadeloupe", 502 | "chinese_name":"瓜德罗普岛", 503 | "country_code":"GP", 504 | "phone_code":"590" 505 | }, 506 | { 507 | "english_name":"Guam", 508 | "chinese_name":"关岛", 509 | "country_code":"GU", 510 | "phone_code":"1671" 511 | }, 512 | { 513 | "english_name":"Guatemala", 514 | "chinese_name":"瓜地马拉", 515 | "country_code":"GT", 516 | "phone_code":"502" 517 | }, 518 | { 519 | "english_name":"Guinea", 520 | "chinese_name":"几内亚", 521 | "country_code":"GN", 522 | "phone_code":"224" 523 | }, 524 | { 525 | "english_name":"Guinea-Bissau", 526 | "chinese_name":"几内亚比绍共和国", 527 | "country_code":"GW", 528 | "phone_code":"245" 529 | }, 530 | { 531 | "english_name":"Guyana", 532 | "chinese_name":"圭亚那", 533 | "country_code":"GY", 534 | "phone_code":"592" 535 | }, 536 | { 537 | "english_name":"Haiti", 538 | "chinese_name":"海地", 539 | "country_code":"HT", 540 | "phone_code":"509" 541 | }, 542 | { 543 | "english_name":"Hawaii", 544 | "chinese_name":"夏威夷", 545 | "country_code":"US", 546 | "phone_code":"1808" 547 | }, 548 | { 549 | "english_name":"Honduras", 550 | "chinese_name":"洪都拉斯", 551 | "country_code":"HN", 552 | "phone_code":"504" 553 | }, 554 | { 555 | "english_name":"Hong Kong", 556 | "chinese_name":"中国香港", 557 | "country_code":"HK", 558 | "phone_code":"852" 559 | }, 560 | { 561 | "english_name":"Hungary", 562 | "chinese_name":"匈牙利", 563 | "country_code":"HU", 564 | "phone_code":"36" 565 | }, 566 | { 567 | "english_name":"Iceland", 568 | "chinese_name":"冰岛", 569 | "country_code":"IS", 570 | "phone_code":"354" 571 | }, 572 | { 573 | "english_name":"India", 574 | "chinese_name":"印度", 575 | "country_code":"IN", 576 | "phone_code":"91" 577 | }, 578 | { 579 | "english_name":"Indonesia", 580 | "chinese_name":"印度尼西亚", 581 | "country_code":"ID", 582 | "phone_code":"62" 583 | }, 584 | { 585 | "english_name":"Iran", 586 | "chinese_name":"伊朗", 587 | "country_code":"IR", 588 | "phone_code":"98" 589 | }, 590 | { 591 | "english_name":"Iraq", 592 | "chinese_name":"伊拉克", 593 | "country_code":"IQ", 594 | "phone_code":"964" 595 | }, 596 | { 597 | "english_name":"Ireland", 598 | "chinese_name":"爱尔兰", 599 | "country_code":"IE", 600 | "phone_code":"353" 601 | }, 602 | { 603 | "english_name":"Israel", 604 | "chinese_name":"以色列", 605 | "country_code":"IL", 606 | "phone_code":"972" 607 | }, 608 | { 609 | "english_name":"Italy", 610 | "chinese_name":"意大利", 611 | "country_code":"IT", 612 | "phone_code":"39" 613 | }, 614 | { 615 | "english_name":"Ivory Coast", 616 | "chinese_name":"象牙海岸", 617 | "country_code":"CI", 618 | "phone_code":"225" 619 | }, 620 | { 621 | "english_name":"Jamaica", 622 | "chinese_name":"牙买加", 623 | "country_code":"JM", 624 | "phone_code":"1876" 625 | }, 626 | { 627 | "english_name":"Japan", 628 | "chinese_name":"日本", 629 | "country_code":"JP", 630 | "phone_code":"81" 631 | }, 632 | { 633 | "english_name":"Jordan", 634 | "chinese_name":"约旦", 635 | "country_code":"JO", 636 | "phone_code":"962" 637 | }, 638 | { 639 | "english_name":"Kazakhstan", 640 | "chinese_name":"哈萨克斯坦", 641 | "country_code":"KZ", 642 | "phone_code":"7" 643 | }, 644 | { 645 | "english_name":"Kenya", 646 | "chinese_name":"肯尼亚", 647 | "country_code":"KE", 648 | "phone_code":"254" 649 | }, 650 | { 651 | "english_name":"Kiribati", 652 | "chinese_name":"基里巴斯", 653 | "country_code":"KI", 654 | "phone_code":"686" 655 | }, 656 | { 657 | "english_name":"Korea Democratic Rep.", 658 | "chinese_name":"朝鲜", 659 | "country_code":"KP", 660 | "phone_code":"85" 661 | }, 662 | { 663 | "english_name":"South Korea", 664 | "chinese_name":"韩国", 665 | "country_code":"KR", 666 | "phone_code":"82" 667 | }, 668 | { 669 | "english_name":"Kuwait", 670 | "chinese_name":"科威特", 671 | "country_code":"KW", 672 | "phone_code":"965" 673 | }, 674 | { 675 | "english_name":"Kyrgyzstan", 676 | "chinese_name":"吉尔吉斯斯坦", 677 | "country_code":"KG", 678 | "phone_code":"996" 679 | }, 680 | { 681 | "english_name":"Laos", 682 | "chinese_name":"老挝", 683 | "country_code":"LA", 684 | "phone_code":"856" 685 | }, 686 | { 687 | "english_name":"Latvia", 688 | "chinese_name":"拉脱维亚", 689 | "country_code":"LV", 690 | "phone_code":"371" 691 | }, 692 | { 693 | "english_name":"Lebanon", 694 | "chinese_name":"黎巴嫩", 695 | "country_code":"LB", 696 | "phone_code":"961" 697 | }, 698 | { 699 | "english_name":"Lesotho", 700 | "chinese_name":"莱索托", 701 | "country_code":"LS", 702 | "phone_code":"266" 703 | }, 704 | { 705 | "english_name":"Liberia", 706 | "chinese_name":"利比里亚", 707 | "country_code":"LR", 708 | "phone_code":"231" 709 | }, 710 | { 711 | "english_name":"Libya", 712 | "chinese_name":"利比亚", 713 | "country_code":"LY", 714 | "phone_code":"218" 715 | }, 716 | { 717 | "english_name":"Liechtenstein", 718 | "chinese_name":"列支敦士登", 719 | "country_code":"LI", 720 | "phone_code":"423" 721 | }, 722 | { 723 | "english_name":"Lithuania", 724 | "chinese_name":"立陶宛", 725 | "country_code":"LT", 726 | "phone_code":"370" 727 | }, 728 | { 729 | "english_name":"Luxembourg", 730 | "chinese_name":"卢森堡", 731 | "country_code":"LU", 732 | "phone_code":"352" 733 | }, 734 | { 735 | "english_name":"Macau", 736 | "chinese_name":"中国澳门", 737 | "country_code":"MO", 738 | "phone_code":"853" 739 | }, 740 | { 741 | "english_name":"Macedonia", 742 | "chinese_name":"马其顿", 743 | "country_code":"MK", 744 | "phone_code":"389" 745 | }, 746 | { 747 | "english_name":"Madagascar", 748 | "chinese_name":"马达加斯加", 749 | "country_code":"MG", 750 | "phone_code":"261" 751 | }, 752 | { 753 | "english_name":"Malawi", 754 | "chinese_name":"马拉维", 755 | "country_code":"MW", 756 | "phone_code":"265" 757 | }, 758 | { 759 | "english_name":"Malaysia", 760 | "chinese_name":"马来西亚", 761 | "country_code":"MY", 762 | "phone_code":"60" 763 | }, 764 | { 765 | "english_name":"Maldives", 766 | "chinese_name":"马尔代夫", 767 | "country_code":"MV", 768 | "phone_code":"960" 769 | }, 770 | { 771 | "english_name":"Mali", 772 | "chinese_name":"马里", 773 | "country_code":"ML", 774 | "phone_code":"223" 775 | }, 776 | { 777 | "english_name":"Malta", 778 | "chinese_name":"马耳他", 779 | "country_code":"MT", 780 | "phone_code":"356" 781 | }, 782 | { 783 | "english_name":"Marshall Islands", 784 | "chinese_name":"马绍尔群岛", 785 | "country_code":"MH", 786 | "phone_code":"692" 787 | }, 788 | { 789 | "english_name":"Martinique", 790 | "chinese_name":"马提尼克", 791 | "country_code":"MQ", 792 | "phone_code":"596" 793 | }, 794 | { 795 | "english_name":"Mauritania", 796 | "chinese_name":"毛里塔尼亚", 797 | "country_code":"MR", 798 | "phone_code":"222" 799 | }, 800 | { 801 | "english_name":"Mauritius", 802 | "chinese_name":"毛里求斯", 803 | "country_code":"MU", 804 | "phone_code":"230" 805 | }, 806 | { 807 | "english_name":"Mayotte", 808 | "chinese_name":"马约特", 809 | "country_code":"YT", 810 | "phone_code":"269" 811 | }, 812 | { 813 | "english_name":"Mexico", 814 | "chinese_name":"墨西哥", 815 | "country_code":"MX", 816 | "phone_code":"52" 817 | }, 818 | { 819 | "english_name":"Micronesia", 820 | "chinese_name":"密克罗尼西亚", 821 | "country_code":"FM", 822 | "phone_code":"691" 823 | }, 824 | { 825 | "english_name":"Moldova", 826 | "chinese_name":"摩尔多瓦", 827 | "country_code":"MD", 828 | "phone_code":"373" 829 | }, 830 | { 831 | "english_name":"Monaco", 832 | "chinese_name":"摩纳哥", 833 | "country_code":"MC", 834 | "phone_code":"377" 835 | }, 836 | { 837 | "english_name":"Mongolia", 838 | "chinese_name":"蒙古", 839 | "country_code":"MN", 840 | "phone_code":"976" 841 | }, 842 | { 843 | "english_name":"Montenegro", 844 | "chinese_name":"黑山", 845 | "country_code":"ME", 846 | "phone_code":"382" 847 | }, 848 | { 849 | "english_name":"Montserrat", 850 | "chinese_name":"蒙特塞拉特岛", 851 | "country_code":"MS", 852 | "phone_code":"1664" 853 | }, 854 | { 855 | "english_name":"Morocco", 856 | "chinese_name":"摩洛哥", 857 | "country_code":"MA", 858 | "phone_code":"212" 859 | }, 860 | { 861 | "english_name":"Mozambique", 862 | "chinese_name":"莫桑比克", 863 | "country_code":"MZ", 864 | "phone_code":"258" 865 | }, 866 | { 867 | "english_name":"Myanmar", 868 | "chinese_name":"缅甸", 869 | "country_code":"MM", 870 | "phone_code":"95" 871 | }, 872 | { 873 | "english_name":"Namibia", 874 | "chinese_name":"纳米比亚", 875 | "country_code":"NA", 876 | "phone_code":"264" 877 | }, 878 | { 879 | "english_name":"Nauru", 880 | "chinese_name":"拿鲁岛", 881 | "country_code":"NR", 882 | "phone_code":"674" 883 | }, 884 | { 885 | "english_name":"Nepal", 886 | "chinese_name":"尼泊尔", 887 | "country_code":"NP", 888 | "phone_code":"977" 889 | }, 890 | { 891 | "english_name":"Netherlands", 892 | "chinese_name":"荷兰", 893 | "country_code":"NL", 894 | "phone_code":"31" 895 | }, 896 | { 897 | "english_name":"New Caledonia", 898 | "chinese_name":"新喀里多尼亚", 899 | "country_code":"NC", 900 | "phone_code":"687" 901 | }, 902 | { 903 | "english_name":"New Zealand", 904 | "chinese_name":"新西兰", 905 | "country_code":"NZ", 906 | "phone_code":"64" 907 | }, 908 | { 909 | "english_name":"Nicaragua", 910 | "chinese_name":"尼加拉瓜", 911 | "country_code":"NI", 912 | "phone_code":"505" 913 | }, 914 | { 915 | "english_name":"Niger", 916 | "chinese_name":"尼日尔", 917 | "country_code":"NE", 918 | "phone_code":"227" 919 | }, 920 | { 921 | "english_name":"Nigeria", 922 | "chinese_name":"尼日利亚", 923 | "country_code":"NG", 924 | "phone_code":"234" 925 | }, 926 | { 927 | "english_name":"Niue Island", 928 | "chinese_name":"纽埃岛(新)", 929 | "country_code":"NU", 930 | "phone_code":"683" 931 | }, 932 | { 933 | "english_name":"Norfolk Island", 934 | "chinese_name":"诺福克岛(澳)", 935 | "country_code":"NF", 936 | "phone_code":"6723" 937 | }, 938 | { 939 | "english_name":"Norway", 940 | "chinese_name":"挪威", 941 | "country_code":"NO", 942 | "phone_code":"47" 943 | }, 944 | { 945 | "english_name":"Oman", 946 | "chinese_name":"阿曼", 947 | "country_code":"OM", 948 | "phone_code":"968" 949 | }, 950 | { 951 | "english_name":"Palau", 952 | "chinese_name":"帕劳", 953 | "country_code":"PW", 954 | "phone_code":"680" 955 | }, 956 | { 957 | "english_name":"Panama", 958 | "chinese_name":"巴拿马", 959 | "country_code":"PA", 960 | "phone_code":"507" 961 | }, 962 | { 963 | "english_name":"Papua New Guinea", 964 | "chinese_name":"巴布亚新几内亚", 965 | "country_code":"PG", 966 | "phone_code":"675" 967 | }, 968 | { 969 | "english_name":"Paraguay", 970 | "chinese_name":"巴拉圭", 971 | "country_code":"PY", 972 | "phone_code":"595" 973 | }, 974 | { 975 | "english_name":"Peru", 976 | "chinese_name":"秘鲁", 977 | "country_code":"PE", 978 | "phone_code":"51" 979 | }, 980 | { 981 | "english_name":"Philippines", 982 | "chinese_name":"菲律宾", 983 | "country_code":"PH", 984 | "phone_code":"63" 985 | }, 986 | { 987 | "english_name":"Poland", 988 | "chinese_name":"波兰", 989 | "country_code":"PL", 990 | "phone_code":"48" 991 | }, 992 | { 993 | "english_name":"Portugal", 994 | "chinese_name":"葡萄牙", 995 | "country_code":"PT", 996 | "phone_code":"351" 997 | }, 998 | { 999 | "english_name":"Pakistan", 1000 | "chinese_name":"巴基斯坦", 1001 | "country_code":"PK", 1002 | "phone_code":"92" 1003 | }, 1004 | { 1005 | "english_name":"Puerto Rico", 1006 | "chinese_name":"波多黎各", 1007 | "country_code":"PR", 1008 | "phone_code":"1787" 1009 | }, 1010 | { 1011 | "english_name":"Qatar", 1012 | "chinese_name":"卡塔尔", 1013 | "country_code":"QA", 1014 | "phone_code":"974" 1015 | }, 1016 | { 1017 | "english_name":"Réunion Island", 1018 | "chinese_name":"留尼汪", 1019 | "country_code":"RE", 1020 | "phone_code":"262" 1021 | }, 1022 | { 1023 | "english_name":"Romania", 1024 | "chinese_name":"罗马尼亚", 1025 | "country_code":"RO", 1026 | "phone_code":"40" 1027 | }, 1028 | { 1029 | "english_name":"Russia", 1030 | "chinese_name":"俄罗斯", 1031 | "country_code":"RU", 1032 | "phone_code":"7" 1033 | }, 1034 | { 1035 | "english_name":"Rwanda", 1036 | "chinese_name":"卢旺达", 1037 | "country_code":"RW", 1038 | "phone_code":"250" 1039 | }, 1040 | { 1041 | "english_name":"Samoa,Eastern", 1042 | "chinese_name":"东萨摩亚(美)", 1043 | "country_code":"AS", 1044 | "phone_code":"684" 1045 | }, 1046 | { 1047 | "english_name":"Samoa", 1048 | "chinese_name":"萨摩亚", 1049 | "country_code":"WS", 1050 | "phone_code":"685" 1051 | }, 1052 | { 1053 | "english_name":"San Marino", 1054 | "chinese_name":"圣马力诺", 1055 | "country_code":"SM", 1056 | "phone_code":"378" 1057 | }, 1058 | { 1059 | "english_name":"Saint Pierre and Miquelon", 1060 | "chinese_name":"圣彼埃尔和密克隆岛", 1061 | "country_code":"PM", 1062 | "phone_code":"508" 1063 | }, 1064 | { 1065 | "english_name":"Sao Tome and Principe", 1066 | "chinese_name":"圣多美和普林西比", 1067 | "country_code":"ST", 1068 | "phone_code":"239" 1069 | }, 1070 | { 1071 | "english_name":"Saudi Arabia", 1072 | "chinese_name":"沙特阿拉伯", 1073 | "country_code":"SA", 1074 | "phone_code":"966" 1075 | }, 1076 | { 1077 | "english_name":"Senegal", 1078 | "chinese_name":"塞内加尔", 1079 | "country_code":"SN", 1080 | "phone_code":"221" 1081 | }, 1082 | { 1083 | "english_name":"Serbia", 1084 | "chinese_name":"塞尔维亚", 1085 | "country_code":"RS", 1086 | "phone_code":"381" 1087 | }, 1088 | { 1089 | "english_name":"Seychelles", 1090 | "chinese_name":"塞舌尔", 1091 | "country_code":"SC", 1092 | "phone_code":"248" 1093 | }, 1094 | { 1095 | "english_name":"Sierra Leone", 1096 | "chinese_name":"塞拉利昂", 1097 | "country_code":"SL", 1098 | "phone_code":"232" 1099 | }, 1100 | { 1101 | "english_name":"Singapore", 1102 | "chinese_name":"新加坡", 1103 | "country_code":"SG", 1104 | "phone_code":"65" 1105 | }, 1106 | { 1107 | "english_name":"Saint Maarten (Dutch Part)", 1108 | "chinese_name":"圣马丁岛(荷兰部分)", 1109 | "country_code":"SX", 1110 | "phone_code":"1721" 1111 | }, 1112 | { 1113 | "english_name":"Slovakia", 1114 | "chinese_name":"斯洛伐克", 1115 | "country_code":"SK", 1116 | "phone_code":"421" 1117 | }, 1118 | { 1119 | "english_name":"Slovenia", 1120 | "chinese_name":"斯洛文尼亚", 1121 | "country_code":"SI", 1122 | "phone_code":"386" 1123 | }, 1124 | { 1125 | "english_name":"Solomon Islands", 1126 | "chinese_name":"所罗门群岛", 1127 | "country_code":"SB", 1128 | "phone_code":"677" 1129 | }, 1130 | { 1131 | "english_name":"Somalia", 1132 | "chinese_name":"索马里", 1133 | "country_code":"SO", 1134 | "phone_code":"252" 1135 | }, 1136 | { 1137 | "english_name":"South Africa", 1138 | "chinese_name":"南非", 1139 | "country_code":"ZA", 1140 | "phone_code":"27" 1141 | }, 1142 | { 1143 | "english_name":"Spain", 1144 | "chinese_name":"西班牙", 1145 | "country_code":"ES", 1146 | "phone_code":"34" 1147 | }, 1148 | { 1149 | "english_name":"Sri Lanka", 1150 | "chinese_name":"斯里兰卡", 1151 | "country_code":"LK", 1152 | "phone_code":"94" 1153 | }, 1154 | { 1155 | "english_name":"St.Helena", 1156 | "chinese_name":"圣赫勒拿", 1157 | "country_code":"SH", 1158 | "phone_code":"290" 1159 | }, 1160 | { 1161 | "english_name":"Saint Lucia", 1162 | "chinese_name":"圣露西亚", 1163 | "country_code":"LC", 1164 | "phone_code":"1758" 1165 | }, 1166 | { 1167 | "english_name":"Saint Vincent and The Grenadines", 1168 | "chinese_name":"圣文森特和格林纳丁斯", 1169 | "country_code":"VC", 1170 | "phone_code":"1784" 1171 | }, 1172 | { 1173 | "english_name":"Sudan", 1174 | "chinese_name":"苏丹", 1175 | "country_code":"SD", 1176 | "phone_code":"249" 1177 | }, 1178 | { 1179 | "english_name":"Suriname", 1180 | "chinese_name":"苏里南", 1181 | "country_code":"SR", 1182 | "phone_code":"597" 1183 | }, 1184 | { 1185 | "english_name":"Swaziland", 1186 | "chinese_name":"斯威士兰", 1187 | "country_code":"SZ", 1188 | "phone_code":"268" 1189 | }, 1190 | { 1191 | "english_name":"Sweden", 1192 | "chinese_name":"瑞典", 1193 | "country_code":"SE", 1194 | "phone_code":"46" 1195 | }, 1196 | { 1197 | "english_name":"Switzerland", 1198 | "chinese_name":"瑞士", 1199 | "country_code":"CH", 1200 | "phone_code":"41" 1201 | }, 1202 | { 1203 | "english_name":"Syria", 1204 | "chinese_name":"叙利亚", 1205 | "country_code":"SY", 1206 | "phone_code":"963" 1207 | }, 1208 | { 1209 | "english_name":"Taiwan", 1210 | "chinese_name":"中国台湾", 1211 | "country_code":"TW", 1212 | "phone_code":"886" 1213 | }, 1214 | { 1215 | "english_name":"Tajikistan", 1216 | "chinese_name":"塔吉克斯坦", 1217 | "country_code":"TJ", 1218 | "phone_code":"992" 1219 | }, 1220 | { 1221 | "english_name":"Tanzania", 1222 | "chinese_name":"坦桑尼亚", 1223 | "country_code":"TZ", 1224 | "phone_code":"255" 1225 | }, 1226 | { 1227 | "english_name":"Thailand", 1228 | "chinese_name":"泰国", 1229 | "country_code":"TH", 1230 | "phone_code":"66" 1231 | }, 1232 | { 1233 | "english_name":"Timor-Leste", 1234 | "chinese_name":"东帝汶", 1235 | "country_code":"TL", 1236 | "phone_code":"670" 1237 | }, 1238 | { 1239 | "english_name":"United Arab Emirates", 1240 | "chinese_name":"阿拉伯联合酋长国", 1241 | "country_code":"AE", 1242 | "phone_code":"971" 1243 | }, 1244 | { 1245 | "english_name":"Togo", 1246 | "chinese_name":"多哥", 1247 | "country_code":"TG", 1248 | "phone_code":"228" 1249 | }, 1250 | { 1251 | "english_name":"Tokelau Is.", 1252 | "chinese_name":"托克劳群岛(新)", 1253 | "country_code":"TK", 1254 | "phone_code":"690" 1255 | }, 1256 | { 1257 | "english_name":"Tonga", 1258 | "chinese_name":"汤加", 1259 | "country_code":"TO", 1260 | "phone_code":"676" 1261 | }, 1262 | { 1263 | "english_name":"Trinidad and Tobago", 1264 | "chinese_name":"特立尼达和多巴哥", 1265 | "country_code":"TT", 1266 | "phone_code":"1868" 1267 | }, 1268 | { 1269 | "english_name":"Tunisia", 1270 | "chinese_name":"突尼斯", 1271 | "country_code":"TN", 1272 | "phone_code":"216" 1273 | }, 1274 | { 1275 | "english_name":"Turkey", 1276 | "chinese_name":"土耳其", 1277 | "country_code":"TR", 1278 | "phone_code":"90" 1279 | }, 1280 | { 1281 | "english_name":"Turkmenistan", 1282 | "chinese_name":"土库曼斯坦", 1283 | "country_code":"TM", 1284 | "phone_code":"993" 1285 | }, 1286 | { 1287 | "english_name":"Turks and Caicos Islands", 1288 | "chinese_name":"特克斯和凯科斯群岛", 1289 | "country_code":"TC", 1290 | "phone_code":"1649" 1291 | }, 1292 | { 1293 | "english_name":"Tuvalu", 1294 | "chinese_name":"图瓦卢", 1295 | "country_code":"TUV", 1296 | "phone_code":"688" 1297 | }, 1298 | { 1299 | "english_name":"United States", 1300 | "chinese_name":"美国", 1301 | "country_code":"US", 1302 | "phone_code":"1" 1303 | }, 1304 | { 1305 | "english_name":"Uganda", 1306 | "chinese_name":"乌干达", 1307 | "country_code":"UG", 1308 | "phone_code":"256" 1309 | }, 1310 | { 1311 | "english_name":"Ukraine", 1312 | "chinese_name":"乌克兰", 1313 | "country_code":"UA", 1314 | "phone_code":"380" 1315 | }, 1316 | { 1317 | "english_name":"United Kingdom", 1318 | "chinese_name":"英国", 1319 | "country_code":"GB", 1320 | "phone_code":"44" 1321 | }, 1322 | { 1323 | "english_name":"Uruguay", 1324 | "chinese_name":"乌拉圭", 1325 | "country_code":"UY", 1326 | "phone_code":"598" 1327 | }, 1328 | { 1329 | "english_name":"Uzbekistan", 1330 | "chinese_name":"乌兹别克斯坦", 1331 | "country_code":"UZ", 1332 | "phone_code":"998" 1333 | }, 1334 | { 1335 | "english_name":"Vanuatu", 1336 | "chinese_name":"瓦努阿图", 1337 | "country_code":"VU", 1338 | "phone_code":"678" 1339 | }, 1340 | { 1341 | "english_name":"Venezuela", 1342 | "chinese_name":"委内瑞拉", 1343 | "country_code":"VE", 1344 | "phone_code":"58" 1345 | }, 1346 | { 1347 | "english_name":"Vietnam", 1348 | "chinese_name":"越南", 1349 | "country_code":"VN", 1350 | "phone_code":"84" 1351 | }, 1352 | { 1353 | "english_name":"Virgin Islands, British", 1354 | "chinese_name":"英属处女群岛", 1355 | "country_code":"VG", 1356 | "phone_code":"1340" 1357 | }, 1358 | { 1359 | "english_name":"Virgin Islands, US", 1360 | "chinese_name":"美属维尔京群岛", 1361 | "country_code":"VI", 1362 | "phone_code":"1284" 1363 | }, 1364 | { 1365 | "english_name":"Wake I.", 1366 | "chinese_name":"威克岛(美)", 1367 | "country_code":"UM", 1368 | "phone_code":"1808" 1369 | }, 1370 | { 1371 | "english_name":"Yemen", 1372 | "chinese_name":"也门", 1373 | "country_code":"YE", 1374 | "phone_code":"967" 1375 | }, 1376 | { 1377 | "english_name":"Zambia", 1378 | "chinese_name":"赞比亚", 1379 | "country_code":"ZM", 1380 | "phone_code":"260" 1381 | }, 1382 | { 1383 | "english_name":"Zanzibar", 1384 | "chinese_name":"桑给巴尔", 1385 | "country_code":"TZ", 1386 | "phone_code":"259" 1387 | }, 1388 | { 1389 | "english_name":"Zimbabwe", 1390 | "chinese_name":"津巴布韦", 1391 | "country_code":"ZW", 1392 | "phone_code":"263" 1393 | } 1394 | ] 1395 | -------------------------------------------------------------------------------- /tencentSms/countryCodeAndPhoneCode.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "english_name":"Andorra", 4 | "chinese_name":"安道尔", 5 | "country_code":"AD", 6 | "phone_code":"376" 7 | }, 8 | { 9 | "english_name":"United Arab Emirates", 10 | "chinese_name":"阿拉伯联合酋长国", 11 | "country_code":"AE", 12 | "phone_code":"971" 13 | }, 14 | { 15 | "english_name":"Afghanistan", 16 | "chinese_name":"阿富汗", 17 | "country_code":"AF", 18 | "phone_code":"93" 19 | }, 20 | { 21 | "english_name":"Antigua and Barbuda", 22 | "chinese_name":"安提瓜和巴布达", 23 | "country_code":"AG", 24 | "phone_code":"1268" 25 | }, 26 | { 27 | "english_name":"Anguilla", 28 | "chinese_name":"安圭拉", 29 | "country_code":"AI", 30 | "phone_code":"1264" 31 | }, 32 | { 33 | "english_name":"Albania", 34 | "chinese_name":"阿尔巴尼亚", 35 | "country_code":"AL", 36 | "phone_code":"355" 37 | }, 38 | { 39 | "english_name":"Armenia", 40 | "chinese_name":"亚美尼亚", 41 | "country_code":"AM", 42 | "phone_code":"374" 43 | }, 44 | { 45 | "english_name":"Angola", 46 | "chinese_name":"安哥拉", 47 | "country_code":"AO", 48 | "phone_code":"244" 49 | }, 50 | { 51 | "english_name":"Argentina", 52 | "chinese_name":"阿根廷", 53 | "country_code":"AR", 54 | "phone_code":"54" 55 | }, 56 | { 57 | "english_name":"American Samoa", 58 | "chinese_name":"美属萨摩亚", 59 | "country_code":"AS", 60 | "phone_code":"1684" 61 | }, 62 | { 63 | "english_name":"Austria", 64 | "chinese_name":"奥地利", 65 | "country_code":"AT", 66 | "phone_code":"43" 67 | }, 68 | { 69 | "english_name":"Australia", 70 | "chinese_name":"澳大利亚", 71 | "country_code":"AU", 72 | "phone_code":"61" 73 | }, 74 | { 75 | "english_name":"Aruba", 76 | "chinese_name":"阿鲁巴", 77 | "country_code":"AW", 78 | "phone_code":"297" 79 | }, 80 | { 81 | "english_name":"Azerbaijan", 82 | "chinese_name":"阿塞拜疆", 83 | "country_code":"AZ", 84 | "phone_code":"994" 85 | }, 86 | { 87 | "english_name":"Bosniaand Herzegovina", 88 | "chinese_name":"波斯尼亚和黑塞哥维那", 89 | "country_code":"BA", 90 | "phone_code":"387" 91 | }, 92 | { 93 | "english_name":"Barbados", 94 | "chinese_name":"巴巴多斯", 95 | "country_code":"BB", 96 | "phone_code":"1246" 97 | }, 98 | { 99 | "english_name":"Bangladesh", 100 | "chinese_name":"孟加拉国", 101 | "country_code":"BD", 102 | "phone_code":"880" 103 | }, 104 | { 105 | "english_name":"Belgium", 106 | "chinese_name":"比利时", 107 | "country_code":"BE", 108 | "phone_code":"32" 109 | }, 110 | { 111 | "english_name":"Burkina Faso", 112 | "chinese_name":"布基纳法索", 113 | "country_code":"BF", 114 | "phone_code":"226" 115 | }, 116 | { 117 | "english_name":"Bulgaria", 118 | "chinese_name":"保加利亚", 119 | "country_code":"BG", 120 | "phone_code":"359" 121 | }, 122 | { 123 | "english_name":"Bahrain", 124 | "chinese_name":"巴林", 125 | "country_code":"BH", 126 | "phone_code":"973" 127 | }, 128 | { 129 | "english_name":"Burundi", 130 | "chinese_name":"布隆迪", 131 | "country_code":"BI", 132 | "phone_code":"257" 133 | }, 134 | { 135 | "english_name":"Benin", 136 | "chinese_name":"贝宁", 137 | "country_code":"BJ", 138 | "phone_code":"229" 139 | }, 140 | { 141 | "english_name":"Bermuda", 142 | "chinese_name":"百慕大群岛", 143 | "country_code":"BM", 144 | "phone_code":"1441" 145 | }, 146 | { 147 | "english_name":"Brunei", 148 | "chinese_name":"文莱", 149 | "country_code":"BN", 150 | "phone_code":"673" 151 | }, 152 | { 153 | "english_name":"Bolivia", 154 | "chinese_name":"玻利维亚", 155 | "country_code":"BO", 156 | "phone_code":"591" 157 | }, 158 | { 159 | "english_name":"Caribisch Nederland", 160 | "chinese_name":"荷兰加勒比", 161 | "country_code":"BQ", 162 | "phone_code":"599" 163 | }, 164 | { 165 | "english_name":"Brazil", 166 | "chinese_name":"巴西", 167 | "country_code":"BR", 168 | "phone_code":"55" 169 | }, 170 | { 171 | "english_name":"Bahamas", 172 | "chinese_name":"巴哈马", 173 | "country_code":"BS", 174 | "phone_code":"1242" 175 | }, 176 | { 177 | "english_name":"Bhutan", 178 | "chinese_name":"不丹", 179 | "country_code":"BT", 180 | "phone_code":"975" 181 | }, 182 | { 183 | "english_name":"Botswana", 184 | "chinese_name":"博茨瓦纳", 185 | "country_code":"BW", 186 | "phone_code":"267" 187 | }, 188 | { 189 | "english_name":"Belarus", 190 | "chinese_name":"白俄罗斯", 191 | "country_code":"BY", 192 | "phone_code":"375" 193 | }, 194 | { 195 | "english_name":"Belize", 196 | "chinese_name":"伯利兹", 197 | "country_code":"BZ", 198 | "phone_code":"501" 199 | }, 200 | { 201 | "english_name":"Canada", 202 | "chinese_name":"加拿大", 203 | "country_code":"CA", 204 | "phone_code":"1" 205 | }, 206 | { 207 | "english_name":"Democratic Republic of theCongo", 208 | "chinese_name":"刚果民主共和国", 209 | "country_code":"CD", 210 | "phone_code":"243" 211 | }, 212 | { 213 | "english_name":"Central African Republic", 214 | "chinese_name":"中非共和国", 215 | "country_code":"CF", 216 | "phone_code":"236" 217 | }, 218 | { 219 | "english_name":"Republic Of The Congo", 220 | "chinese_name":"刚果共和国", 221 | "country_code":"CG", 222 | "phone_code":"242" 223 | }, 224 | { 225 | "english_name":"Switzerland", 226 | "chinese_name":"瑞士", 227 | "country_code":"CH", 228 | "phone_code":"41" 229 | }, 230 | { 231 | "english_name":"Ivory Coast", 232 | "chinese_name":"象牙海岸", 233 | "country_code":"CI", 234 | "phone_code":"225" 235 | }, 236 | { 237 | "english_name":"Cook Islands", 238 | "chinese_name":"库克群岛", 239 | "country_code":"CK", 240 | "phone_code":"682" 241 | }, 242 | { 243 | "english_name":"Chile", 244 | "chinese_name":"智利", 245 | "country_code":"CL", 246 | "phone_code":"56" 247 | }, 248 | { 249 | "english_name":"Cameroon", 250 | "chinese_name":"喀麦隆", 251 | "country_code":"CM", 252 | "phone_code":"237" 253 | }, 254 | { 255 | "english_name":"China", 256 | "chinese_name":"中国", 257 | "country_code":"CN", 258 | "phone_code":"86" 259 | }, 260 | { 261 | "english_name":"Colombia", 262 | "chinese_name":"哥伦比亚", 263 | "country_code":"CO", 264 | "phone_code":"57" 265 | }, 266 | { 267 | "english_name":"CostaRica", 268 | "chinese_name":"哥斯达黎加", 269 | "country_code":"CR", 270 | "phone_code":"506" 271 | }, 272 | { 273 | "english_name":"Cuba", 274 | "chinese_name":"古巴", 275 | "country_code":"CU", 276 | "phone_code":"53" 277 | }, 278 | { 279 | "english_name":"Cape Verde", 280 | "chinese_name":"开普", 281 | "country_code":"CV", 282 | "phone_code":"238" 283 | }, 284 | { 285 | "english_name":"Curacao", 286 | "chinese_name":"库拉索", 287 | "country_code":"CW", 288 | "phone_code":"599" 289 | }, 290 | { 291 | "english_name":"Cyprus", 292 | "chinese_name":"塞浦路斯", 293 | "country_code":"CY", 294 | "phone_code":"357" 295 | }, 296 | { 297 | "english_name":"Czech", 298 | "chinese_name":"捷克", 299 | "country_code":"CZ", 300 | "phone_code":"420" 301 | }, 302 | { 303 | "english_name":"Germany", 304 | "chinese_name":"德国", 305 | "country_code":"DE", 306 | "phone_code":"49" 307 | }, 308 | { 309 | "english_name":"Djibouti", 310 | "chinese_name":"吉布提", 311 | "country_code":"DJ", 312 | "phone_code":"253" 313 | }, 314 | { 315 | "english_name":"Denmark", 316 | "chinese_name":"丹麦", 317 | "country_code":"DK", 318 | "phone_code":"45" 319 | }, 320 | { 321 | "english_name":"Dominica", 322 | "chinese_name":"多米尼克", 323 | "country_code":"DM", 324 | "phone_code":"1767" 325 | }, 326 | { 327 | "english_name":"dominican republic", 328 | "chinese_name":"多米尼加共和国", 329 | "country_code":"DO", 330 | "phone_code":"1809" 331 | }, 332 | { 333 | "english_name":"Algeria", 334 | "chinese_name":"阿尔及利亚", 335 | "country_code":"DZ", 336 | "phone_code":"213" 337 | }, 338 | { 339 | "english_name":"Ecuador", 340 | "chinese_name":"厄瓜多尔", 341 | "country_code":"EC", 342 | "phone_code":"593" 343 | }, 344 | { 345 | "english_name":"Estonia", 346 | "chinese_name":"爱沙尼亚", 347 | "country_code":"EE", 348 | "phone_code":"372" 349 | }, 350 | { 351 | "english_name":"Egypt", 352 | "chinese_name":"埃及", 353 | "country_code":"EG", 354 | "phone_code":"20" 355 | }, 356 | { 357 | "english_name":"Eritrea", 358 | "chinese_name":"厄立特里亚", 359 | "country_code":"ER", 360 | "phone_code":"291" 361 | }, 362 | { 363 | "english_name":"Spain", 364 | "chinese_name":"西班牙", 365 | "country_code":"ES", 366 | "phone_code":"34" 367 | }, 368 | { 369 | "english_name":"Ethiopia", 370 | "chinese_name":"埃塞俄比亚", 371 | "country_code":"ET", 372 | "phone_code":"251" 373 | }, 374 | { 375 | "english_name":"Finland", 376 | "chinese_name":"芬兰", 377 | "country_code":"FI", 378 | "phone_code":"358" 379 | }, 380 | { 381 | "english_name":"Fiji", 382 | "chinese_name":"斐济", 383 | "country_code":"FJ", 384 | "phone_code":"679" 385 | }, 386 | { 387 | "english_name":"Micronesia", 388 | "chinese_name":"密克罗尼西亚", 389 | "country_code":"FM", 390 | "phone_code":"691" 391 | }, 392 | { 393 | "english_name":"Faroe Islands", 394 | "chinese_name":"法罗群岛", 395 | "country_code":"FO", 396 | "phone_code":"298" 397 | }, 398 | { 399 | "english_name":"France", 400 | "chinese_name":"法国", 401 | "country_code":"FR", 402 | "phone_code":"33" 403 | }, 404 | { 405 | "english_name":"Gabon", 406 | "chinese_name":"加蓬", 407 | "country_code":"GA", 408 | "phone_code":"241" 409 | }, 410 | { 411 | "english_name":"United Kingdom", 412 | "chinese_name":"英国", 413 | "country_code":"GB", 414 | "phone_code":"44" 415 | }, 416 | { 417 | "english_name":"Grenada", 418 | "chinese_name":"格林纳达", 419 | "country_code":"GD", 420 | "phone_code":"1473" 421 | }, 422 | { 423 | "english_name":"Georgia", 424 | "chinese_name":"格鲁吉亚", 425 | "country_code":"GE", 426 | "phone_code":"995" 427 | }, 428 | { 429 | "english_name":"French Guiana", 430 | "chinese_name":"法属圭亚那", 431 | "country_code":"GF", 432 | "phone_code":"594" 433 | }, 434 | { 435 | "english_name":"Ghana", 436 | "chinese_name":"加纳", 437 | "country_code":"GH", 438 | "phone_code":"233" 439 | }, 440 | { 441 | "english_name":"Gibraltar", 442 | "chinese_name":"直布罗陀", 443 | "country_code":"GI", 444 | "phone_code":"350" 445 | }, 446 | { 447 | "english_name":"Greenland", 448 | "chinese_name":"格陵兰岛", 449 | "country_code":"GL", 450 | "phone_code":"299" 451 | }, 452 | { 453 | "english_name":"Gambia", 454 | "chinese_name":"冈比亚", 455 | "country_code":"GM", 456 | "phone_code":"220" 457 | }, 458 | { 459 | "english_name":"Guinea", 460 | "chinese_name":"几内亚", 461 | "country_code":"GN", 462 | "phone_code":"224" 463 | }, 464 | { 465 | "english_name":"Guadeloupe", 466 | "chinese_name":"瓜德罗普岛", 467 | "country_code":"GP", 468 | "phone_code":"590" 469 | }, 470 | { 471 | "english_name":"Equatorial Guinea", 472 | "chinese_name":"赤道几内亚", 473 | "country_code":"GQ", 474 | "phone_code":"240" 475 | }, 476 | { 477 | "english_name":"Greece", 478 | "chinese_name":"希腊", 479 | "country_code":"GR", 480 | "phone_code":"30" 481 | }, 482 | { 483 | "english_name":"Guatemala", 484 | "chinese_name":"瓜地马拉", 485 | "country_code":"GT", 486 | "phone_code":"502" 487 | }, 488 | { 489 | "english_name":"Guam", 490 | "chinese_name":"关岛", 491 | "country_code":"GU", 492 | "phone_code":"1671" 493 | }, 494 | { 495 | "english_name":"Guinea-Bissau", 496 | "chinese_name":"几内亚比绍共和国", 497 | "country_code":"GW", 498 | "phone_code":"245" 499 | }, 500 | { 501 | "english_name":"Guyana", 502 | "chinese_name":"圭亚那", 503 | "country_code":"GY", 504 | "phone_code":"592" 505 | }, 506 | { 507 | "english_name":"Hong Kong", 508 | "chinese_name":"中国香港", 509 | "country_code":"HK", 510 | "phone_code":"852" 511 | }, 512 | { 513 | "english_name":"Honduras", 514 | "chinese_name":"洪都拉斯", 515 | "country_code":"HN", 516 | "phone_code":"504" 517 | }, 518 | { 519 | "english_name":"Croatia", 520 | "chinese_name":"克罗地亚", 521 | "country_code":"HR", 522 | "phone_code":"385" 523 | }, 524 | { 525 | "english_name":"Haiti", 526 | "chinese_name":"海地", 527 | "country_code":"HT", 528 | "phone_code":"509" 529 | }, 530 | { 531 | "english_name":"Hungary", 532 | "chinese_name":"匈牙利", 533 | "country_code":"HU", 534 | "phone_code":"36" 535 | }, 536 | { 537 | "english_name":"Indonesia", 538 | "chinese_name":"印度尼西亚", 539 | "country_code":"ID", 540 | "phone_code":"62" 541 | }, 542 | { 543 | "english_name":"Ireland", 544 | "chinese_name":"爱尔兰", 545 | "country_code":"IE", 546 | "phone_code":"353" 547 | }, 548 | { 549 | "english_name":"Israel", 550 | "chinese_name":"以色列", 551 | "country_code":"IL", 552 | "phone_code":"972" 553 | }, 554 | { 555 | "english_name":"India", 556 | "chinese_name":"印度", 557 | "country_code":"IN", 558 | "phone_code":"91" 559 | }, 560 | { 561 | "english_name":"Iraq", 562 | "chinese_name":"伊拉克", 563 | "country_code":"IQ", 564 | "phone_code":"964" 565 | }, 566 | { 567 | "english_name":"Iran", 568 | "chinese_name":"伊朗", 569 | "country_code":"IR", 570 | "phone_code":"98" 571 | }, 572 | { 573 | "english_name":"Iceland", 574 | "chinese_name":"冰岛", 575 | "country_code":"IS", 576 | "phone_code":"354" 577 | }, 578 | { 579 | "english_name":"Italy", 580 | "chinese_name":"意大利", 581 | "country_code":"IT", 582 | "phone_code":"39" 583 | }, 584 | { 585 | "english_name":"Jamaica", 586 | "chinese_name":"牙买加", 587 | "country_code":"JM", 588 | "phone_code":"1876" 589 | }, 590 | { 591 | "english_name":"Jordan", 592 | "chinese_name":"约旦", 593 | "country_code":"JO", 594 | "phone_code":"962" 595 | }, 596 | { 597 | "english_name":"Japan", 598 | "chinese_name":"日本", 599 | "country_code":"JP", 600 | "phone_code":"81" 601 | }, 602 | { 603 | "english_name":"Kenya", 604 | "chinese_name":"肯尼亚", 605 | "country_code":"KE", 606 | "phone_code":"254" 607 | }, 608 | { 609 | "english_name":"Kyrgyzstan", 610 | "chinese_name":"吉尔吉斯斯坦", 611 | "country_code":"KG", 612 | "phone_code":"996" 613 | }, 614 | { 615 | "english_name":"Cambodia", 616 | "chinese_name":"柬埔寨", 617 | "country_code":"KH", 618 | "phone_code":"855" 619 | }, 620 | { 621 | "english_name":"Kiribati", 622 | "chinese_name":"基里巴斯", 623 | "country_code":"KI", 624 | "phone_code":"686" 625 | }, 626 | { 627 | "english_name":"Comoros", 628 | "chinese_name":"科摩罗", 629 | "country_code":"KM", 630 | "phone_code":"269" 631 | }, 632 | { 633 | "english_name":"Saint Kitts and Nevis", 634 | "chinese_name":"圣基茨和尼维斯", 635 | "country_code":"KN", 636 | "phone_code":"1869" 637 | }, 638 | { 639 | "english_name":"Korea Democratic Rep.", 640 | "chinese_name":"朝鲜", 641 | "country_code":"KP", 642 | "phone_code":"850" 643 | }, 644 | { 645 | "english_name":"South Korea", 646 | "chinese_name":"韩国", 647 | "country_code":"KR", 648 | "phone_code":"82" 649 | }, 650 | { 651 | "english_name":"Kuwait", 652 | "chinese_name":"科威特", 653 | "country_code":"KW", 654 | "phone_code":"965" 655 | }, 656 | { 657 | "english_name":"Cayman Islands", 658 | "chinese_name":"开曼群岛", 659 | "country_code":"KY", 660 | "phone_code":"1345" 661 | }, 662 | { 663 | "english_name":"Kazakhstan", 664 | "chinese_name":"哈萨克斯坦", 665 | "country_code":"KZ", 666 | "phone_code":"7" 667 | }, 668 | { 669 | "english_name":"Laos", 670 | "chinese_name":"老挝", 671 | "country_code":"LA", 672 | "phone_code":"856" 673 | }, 674 | { 675 | "english_name":"Lebanon", 676 | "chinese_name":"黎巴嫩", 677 | "country_code":"LB", 678 | "phone_code":"961" 679 | }, 680 | { 681 | "english_name":"Saint Lucia", 682 | "chinese_name":"圣露西亚", 683 | "country_code":"LC", 684 | "phone_code":"1758" 685 | }, 686 | { 687 | "english_name":"Liechtenstein", 688 | "chinese_name":"列支敦士登", 689 | "country_code":"LI", 690 | "phone_code":"423" 691 | }, 692 | { 693 | "english_name":"Sri Lanka", 694 | "chinese_name":"斯里兰卡", 695 | "country_code":"LK", 696 | "phone_code":"94" 697 | }, 698 | { 699 | "english_name":"Liberia", 700 | "chinese_name":"利比里亚", 701 | "country_code":"LR", 702 | "phone_code":"231" 703 | }, 704 | { 705 | "english_name":"Lesotho", 706 | "chinese_name":"莱索托", 707 | "country_code":"LS", 708 | "phone_code":"266" 709 | }, 710 | { 711 | "english_name":"Lithuania", 712 | "chinese_name":"立陶宛", 713 | "country_code":"LT", 714 | "phone_code":"370" 715 | }, 716 | { 717 | "english_name":"Luxembourg", 718 | "chinese_name":"卢森堡", 719 | "country_code":"LU", 720 | "phone_code":"352" 721 | }, 722 | { 723 | "english_name":"Latvia", 724 | "chinese_name":"拉脱维亚", 725 | "country_code":"LV", 726 | "phone_code":"371" 727 | }, 728 | { 729 | "english_name":"Libya", 730 | "chinese_name":"利比亚", 731 | "country_code":"LY", 732 | "phone_code":"218" 733 | }, 734 | { 735 | "english_name":"Morocco", 736 | "chinese_name":"摩洛哥", 737 | "country_code":"MA", 738 | "phone_code":"212" 739 | }, 740 | { 741 | "english_name":"Monaco", 742 | "chinese_name":"摩纳哥", 743 | "country_code":"MC", 744 | "phone_code":"377" 745 | }, 746 | { 747 | "english_name":"Moldova", 748 | "chinese_name":"摩尔多瓦", 749 | "country_code":"MD", 750 | "phone_code":"373" 751 | }, 752 | { 753 | "english_name":"Montenegro", 754 | "chinese_name":"黑山", 755 | "country_code":"ME", 756 | "phone_code":"382" 757 | }, 758 | { 759 | "english_name":"Madagascar", 760 | "chinese_name":"马达加斯加", 761 | "country_code":"MG", 762 | "phone_code":"261" 763 | }, 764 | { 765 | "english_name":"Marshall Islands", 766 | "chinese_name":"马绍尔群岛", 767 | "country_code":"MH", 768 | "phone_code":"692" 769 | }, 770 | { 771 | "english_name":"Macedonia", 772 | "chinese_name":"马其顿", 773 | "country_code":"MK", 774 | "phone_code":"389" 775 | }, 776 | { 777 | "english_name":"Mali", 778 | "chinese_name":"马里", 779 | "country_code":"ML", 780 | "phone_code":"223" 781 | }, 782 | { 783 | "english_name":"Myanmar", 784 | "chinese_name":"缅甸", 785 | "country_code":"MM", 786 | "phone_code":"95" 787 | }, 788 | { 789 | "english_name":"Mongolia", 790 | "chinese_name":"蒙古", 791 | "country_code":"MN", 792 | "phone_code":"976" 793 | }, 794 | { 795 | "english_name":"Macau", 796 | "chinese_name":"中国澳门", 797 | "country_code":"MO", 798 | "phone_code":"853" 799 | }, 800 | { 801 | "english_name":"Mauritania", 802 | "chinese_name":"毛里塔尼亚", 803 | "country_code":"MR", 804 | "phone_code":"222" 805 | }, 806 | { 807 | "english_name":"Montserrat", 808 | "chinese_name":"蒙特塞拉特岛", 809 | "country_code":"MS", 810 | "phone_code":"1664" 811 | }, 812 | { 813 | "english_name":"Malta", 814 | "chinese_name":"马耳他", 815 | "country_code":"MT", 816 | "phone_code":"356" 817 | }, 818 | { 819 | "english_name":"Mauritius", 820 | "chinese_name":"毛里求斯", 821 | "country_code":"MU", 822 | "phone_code":"230" 823 | }, 824 | { 825 | "english_name":"Maldives", 826 | "chinese_name":"马尔代夫", 827 | "country_code":"MV", 828 | "phone_code":"960" 829 | }, 830 | { 831 | "english_name":"Malawi", 832 | "chinese_name":"马拉维", 833 | "country_code":"MW", 834 | "phone_code":"265" 835 | }, 836 | { 837 | "english_name":"Mexico", 838 | "chinese_name":"墨西哥", 839 | "country_code":"MX", 840 | "phone_code":"52" 841 | }, 842 | { 843 | "english_name":"Malaysia", 844 | "chinese_name":"马来西亚", 845 | "country_code":"MY", 846 | "phone_code":"60" 847 | }, 848 | { 849 | "english_name":"Mozambique", 850 | "chinese_name":"莫桑比克", 851 | "country_code":"MZ", 852 | "phone_code":"258" 853 | }, 854 | { 855 | "english_name":"Namibia", 856 | "chinese_name":"纳米比亚", 857 | "country_code":"NA", 858 | "phone_code":"264" 859 | }, 860 | { 861 | "english_name":"New Caledonia", 862 | "chinese_name":"新喀里多尼亚", 863 | "country_code":"NC", 864 | "phone_code":"687" 865 | }, 866 | { 867 | "english_name":"Niger", 868 | "chinese_name":"尼日尔", 869 | "country_code":"NE", 870 | "phone_code":"227" 871 | }, 872 | { 873 | "english_name":"Nigeria", 874 | "chinese_name":"尼日利亚", 875 | "country_code":"NG", 876 | "phone_code":"234" 877 | }, 878 | { 879 | "english_name":"Nicaragua", 880 | "chinese_name":"尼加拉瓜", 881 | "country_code":"NI", 882 | "phone_code":"505" 883 | }, 884 | { 885 | "english_name":"Netherlands", 886 | "chinese_name":"荷兰", 887 | "country_code":"NL", 888 | "phone_code":"31" 889 | }, 890 | { 891 | "english_name":"Norway", 892 | "chinese_name":"挪威", 893 | "country_code":"NO", 894 | "phone_code":"47" 895 | }, 896 | { 897 | "english_name":"Nepal", 898 | "chinese_name":"尼泊尔", 899 | "country_code":"NP", 900 | "phone_code":"977" 901 | }, 902 | { 903 | "english_name":"Nauru", 904 | "chinese_name":"拿鲁岛", 905 | "country_code":"NR", 906 | "phone_code":"674" 907 | }, 908 | { 909 | "english_name":"New Zealand", 910 | "chinese_name":"新西兰", 911 | "country_code":"NZ", 912 | "phone_code":"64" 913 | }, 914 | { 915 | "english_name":"Oman", 916 | "chinese_name":"阿曼", 917 | "country_code":"OM", 918 | "phone_code":"968" 919 | }, 920 | { 921 | "english_name":"Panama", 922 | "chinese_name":"巴拿马", 923 | "country_code":"PA", 924 | "phone_code":"507" 925 | }, 926 | { 927 | "english_name":"Peru", 928 | "chinese_name":"秘鲁", 929 | "country_code":"PE", 930 | "phone_code":"51" 931 | }, 932 | { 933 | "english_name":"French Polynesia", 934 | "chinese_name":"法属波利尼西亚", 935 | "country_code":"PF", 936 | "phone_code":"689" 937 | }, 938 | { 939 | "english_name":"Papua New Guinea", 940 | "chinese_name":"巴布亚新几内亚", 941 | "country_code":"PG", 942 | "phone_code":"675" 943 | }, 944 | { 945 | "english_name":"Philippines", 946 | "chinese_name":"菲律宾", 947 | "country_code":"PH", 948 | "phone_code":"63" 949 | }, 950 | { 951 | "english_name":"Pakistan", 952 | "chinese_name":"巴基斯坦", 953 | "country_code":"PK", 954 | "phone_code":"92" 955 | }, 956 | { 957 | "english_name":"Poland", 958 | "chinese_name":"波兰", 959 | "country_code":"PL", 960 | "phone_code":"48" 961 | }, 962 | { 963 | "english_name":"Saint Pierreand Miquelon", 964 | "chinese_name":"圣彼埃尔和密克隆岛", 965 | "country_code":"PM", 966 | "phone_code":"508" 967 | }, 968 | { 969 | "english_name":"Puerto Rico", 970 | "chinese_name":"波多黎各", 971 | "country_code":"PR", 972 | "phone_code":"1787" 973 | }, 974 | { 975 | "english_name":"Portugal", 976 | "chinese_name":"葡萄牙", 977 | "country_code":"PT", 978 | "phone_code":"351" 979 | }, 980 | { 981 | "english_name":"Palau", 982 | "chinese_name":"帕劳", 983 | "country_code":"PW", 984 | "phone_code":"680" 985 | }, 986 | { 987 | "english_name":"Paraguay", 988 | "chinese_name":"巴拉圭", 989 | "country_code":"PY", 990 | "phone_code":"595" 991 | }, 992 | { 993 | "english_name":"Qatar", 994 | "chinese_name":"卡塔尔", 995 | "country_code":"QA", 996 | "phone_code":"974" 997 | }, 998 | { 999 | "english_name":"Réunion Island", 1000 | "chinese_name":"留尼汪", 1001 | "country_code":"RE", 1002 | "phone_code":"262" 1003 | }, 1004 | { 1005 | "english_name":"Romania", 1006 | "chinese_name":"罗马尼亚", 1007 | "country_code":"RO", 1008 | "phone_code":"40" 1009 | }, 1010 | { 1011 | "english_name":"Serbia", 1012 | "chinese_name":"塞尔维亚", 1013 | "country_code":"RS", 1014 | "phone_code":"381" 1015 | }, 1016 | { 1017 | "english_name":"Russia", 1018 | "chinese_name":"俄罗斯", 1019 | "country_code":"RU", 1020 | "phone_code":"7" 1021 | }, 1022 | { 1023 | "english_name":"Rwanda", 1024 | "chinese_name":"卢旺达", 1025 | "country_code":"RW", 1026 | "phone_code":"250" 1027 | }, 1028 | { 1029 | "english_name":"Saudi Arabia", 1030 | "chinese_name":"沙特阿拉伯", 1031 | "country_code":"SA", 1032 | "phone_code":"966" 1033 | }, 1034 | { 1035 | "english_name":"Solomon Islands", 1036 | "chinese_name":"所罗门群岛", 1037 | "country_code":"SB", 1038 | "phone_code":"677" 1039 | }, 1040 | { 1041 | "english_name":"Seychelles", 1042 | "chinese_name":"塞舌尔", 1043 | "country_code":"SC", 1044 | "phone_code":"248" 1045 | }, 1046 | { 1047 | "english_name":"Sudan", 1048 | "chinese_name":"苏丹", 1049 | "country_code":"SD", 1050 | "phone_code":"249" 1051 | }, 1052 | { 1053 | "english_name":"Sweden", 1054 | "chinese_name":"瑞典", 1055 | "country_code":"SE", 1056 | "phone_code":"46" 1057 | }, 1058 | { 1059 | "english_name":"Singapore", 1060 | "chinese_name":"新加坡", 1061 | "country_code":"SG", 1062 | "phone_code":"65" 1063 | }, 1064 | { 1065 | "english_name":"Slovenia", 1066 | "chinese_name":"斯洛文尼亚", 1067 | "country_code":"SI", 1068 | "phone_code":"386" 1069 | }, 1070 | { 1071 | "english_name":"Slovakia", 1072 | "chinese_name":"斯洛伐克", 1073 | "country_code":"SK", 1074 | "phone_code":"421" 1075 | }, 1076 | { 1077 | "english_name":"Sierra Leone", 1078 | "chinese_name":"塞拉利昂", 1079 | "country_code":"SL", 1080 | "phone_code":"232" 1081 | }, 1082 | { 1083 | "english_name":"San Marino", 1084 | "chinese_name":"圣马力诺", 1085 | "country_code":"SM", 1086 | "phone_code":"378" 1087 | }, 1088 | { 1089 | "english_name":"Senegal", 1090 | "chinese_name":"塞内加尔", 1091 | "country_code":"SN", 1092 | "phone_code":"221" 1093 | }, 1094 | { 1095 | "english_name":"Somalia", 1096 | "chinese_name":"索马里", 1097 | "country_code":"SO", 1098 | "phone_code":"252" 1099 | }, 1100 | { 1101 | "english_name":"Suriname", 1102 | "chinese_name":"苏里南", 1103 | "country_code":"SR", 1104 | "phone_code":"597" 1105 | }, 1106 | { 1107 | "english_name":"Sao Tome and Principe", 1108 | "chinese_name":"圣多美和普林西比", 1109 | "country_code":"ST", 1110 | "phone_code":"239" 1111 | }, 1112 | { 1113 | "english_name":"ElSalvador", 1114 | "chinese_name":"萨尔瓦多", 1115 | "country_code":"SV", 1116 | "phone_code":"503" 1117 | }, 1118 | { 1119 | "english_name":"Syria", 1120 | "chinese_name":"叙利亚", 1121 | "country_code":"SY", 1122 | "phone_code":"963" 1123 | }, 1124 | { 1125 | "english_name":"Swaziland", 1126 | "chinese_name":"斯威士兰", 1127 | "country_code":"SZ", 1128 | "phone_code":"268" 1129 | }, 1130 | { 1131 | "english_name":"Turksand Caicos Islands", 1132 | "chinese_name":"特克斯和凯科斯群岛", 1133 | "country_code":"TC", 1134 | "phone_code":"1649" 1135 | }, 1136 | { 1137 | "english_name":"Chad", 1138 | "chinese_name":"乍得", 1139 | "country_code":"TD", 1140 | "phone_code":"235" 1141 | }, 1142 | { 1143 | "english_name":"Togo", 1144 | "chinese_name":"多哥", 1145 | "country_code":"TG", 1146 | "phone_code":"228" 1147 | }, 1148 | { 1149 | "english_name":"Thailand", 1150 | "chinese_name":"泰国", 1151 | "country_code":"TH", 1152 | "phone_code":"66" 1153 | }, 1154 | { 1155 | "english_name":"Tajikistan", 1156 | "chinese_name":"塔吉克斯坦", 1157 | "country_code":"TJ", 1158 | "phone_code":"992" 1159 | }, 1160 | { 1161 | "english_name":"East Timor", 1162 | "chinese_name":"东帝汶", 1163 | "country_code":"TL", 1164 | "phone_code":"670" 1165 | }, 1166 | { 1167 | "english_name":"Turkmenistan", 1168 | "chinese_name":"土库曼斯坦", 1169 | "country_code":"TM", 1170 | "phone_code":"993" 1171 | }, 1172 | { 1173 | "english_name":"Tunisia", 1174 | "chinese_name":"突尼斯", 1175 | "country_code":"TN", 1176 | "phone_code":"216" 1177 | }, 1178 | { 1179 | "english_name":"Tonga", 1180 | "chinese_name":"汤加", 1181 | "country_code":"TO", 1182 | "phone_code":"676" 1183 | }, 1184 | { 1185 | "english_name":"Turkey", 1186 | "chinese_name":"土耳其", 1187 | "country_code":"TR", 1188 | "phone_code":"90" 1189 | }, 1190 | { 1191 | "english_name":"Trinidadand Tobago", 1192 | "chinese_name":"特立尼达和多巴哥", 1193 | "country_code":"TT", 1194 | "phone_code":"1868" 1195 | }, 1196 | { 1197 | "english_name":"Taiwan", 1198 | "chinese_name":"中国台湾", 1199 | "country_code":"TW", 1200 | "phone_code":"886" 1201 | }, 1202 | { 1203 | "english_name":"Tanzania", 1204 | "chinese_name":"坦桑尼亚", 1205 | "country_code":"TZ", 1206 | "phone_code":"255" 1207 | }, 1208 | { 1209 | "english_name":"Ukraine", 1210 | "chinese_name":"乌克兰", 1211 | "country_code":"UA", 1212 | "phone_code":"380" 1213 | }, 1214 | { 1215 | "english_name":"Uganda", 1216 | "chinese_name":"乌干达", 1217 | "country_code":"UG", 1218 | "phone_code":"256" 1219 | }, 1220 | { 1221 | "english_name":"United States", 1222 | "chinese_name":"美国", 1223 | "country_code":"US", 1224 | "phone_code":"1" 1225 | }, 1226 | { 1227 | "english_name":"Uruguay", 1228 | "chinese_name":"乌拉圭", 1229 | "country_code":"UY", 1230 | "phone_code":"598" 1231 | }, 1232 | { 1233 | "english_name":"Uzbekistan", 1234 | "chinese_name":"乌兹别克斯坦", 1235 | "country_code":"UZ", 1236 | "phone_code":"998" 1237 | }, 1238 | { 1239 | "english_name":"Saint Vincent and The Grenadines", 1240 | "chinese_name":"圣文森特和格林纳丁斯", 1241 | "country_code":"VC", 1242 | "phone_code":"1784" 1243 | }, 1244 | { 1245 | "english_name":"Venezuela", 1246 | "chinese_name":"委内瑞拉", 1247 | "country_code":"VE", 1248 | "phone_code":"58" 1249 | }, 1250 | { 1251 | "english_name":"VirginIslands,British", 1252 | "chinese_name":"英属处女群岛", 1253 | "country_code":"VG", 1254 | "phone_code":"1284" 1255 | }, 1256 | { 1257 | "english_name":"Vietnam", 1258 | "chinese_name":"越南", 1259 | "country_code":"VN", 1260 | "phone_code":"84" 1261 | }, 1262 | { 1263 | "english_name":"Vanuatu", 1264 | "chinese_name":"瓦努阿图", 1265 | "country_code":"VU", 1266 | "phone_code":"678" 1267 | }, 1268 | { 1269 | "english_name":"Samoa", 1270 | "chinese_name":"萨摩亚", 1271 | "country_code":"WS", 1272 | "phone_code":"685" 1273 | }, 1274 | { 1275 | "english_name":"Yemen", 1276 | "chinese_name":"也门", 1277 | "country_code":"YE", 1278 | "phone_code":"967" 1279 | }, 1280 | { 1281 | "english_name":"Mayotte", 1282 | "chinese_name":"马约特", 1283 | "country_code":"YT", 1284 | "phone_code":"269" 1285 | }, 1286 | { 1287 | "english_name":"South Africa", 1288 | "chinese_name":"南非", 1289 | "country_code":"ZA", 1290 | "phone_code":"27" 1291 | }, 1292 | { 1293 | "english_name":"Zambia", 1294 | "chinese_name":"赞比亚", 1295 | "country_code":"ZM", 1296 | "phone_code":"260" 1297 | }, 1298 | { 1299 | "english_name":"Zimbabwe", 1300 | "chinese_name":"津巴布韦", 1301 | "country_code":"ZW", 1302 | "phone_code":"263" 1303 | }, 1304 | { 1305 | "english_name":"The Republic of South Sudan", 1306 | "chinese_name":"南苏丹共和国", 1307 | "country_code":"SS", 1308 | "phone_code":"211" 1309 | } 1310 | ] --------------------------------------------------------------------------------