-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworking_cache.html
More file actions
7240 lines (7226 loc) · 202 KB
/
working_cache.html
File metadata and controls
7240 lines (7226 loc) · 202 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" class="client-nojs">
<head>
<meta charset="UTF-8" />
<title>List of mobile phone number series by country - Wikipedia, the free encyclopedia</title>
<meta name="generator" content="MediaWiki 1.24wmf18" />
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/List_of_mobile_phone_number_series_by_country" />
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=List_of_mobile_phone_number_series_by_country&action=edit" />
<link rel="edit" title="Edit this page" href="/w/index.php?title=List_of_mobile_phone_number_series_by_country&action=edit" />
<link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png" />
<link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="canonical" href="http://en.wikipedia.org/wiki/List_of_mobile_phone_number_series_by_country" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2Cfeatured-articles-links%2CrefToolbar%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector&*" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" />
<style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"List_of_mobile_phone_number_series_by_country","wgTitle":"List of mobile phone number series by country","wgCurRevisionId":621320909,"wgRevisionId":621320909,"wgArticleId":5940541,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Articles with links needing disambiguation from July 2013","Telephone numbers","Mobile phones","Lists by country"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"List_of_mobile_phone_number_series_by_country","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"preview":false,"previewDialog":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":true,"wgVisualEditor":{"isPageWatched":false,"pageLanguageCode":"en","pageLanguageDir":"ltr","svgMaxSize":2048,"namespacesWithSubpages":{"6":0,"8":0,"1":true,"2":true,"3":true,"4":true,"5":true,"7":true,"9":true,"10":true,"11":true,"12":true,"13":true,"14":true,"15":true,"100":true,"101":true,"102":true,"103":true,"104":true,"105":true,"106":true,"107":true,"108":true,"109":true,"110":true,"111":true,"447":true,"2600":false,"828":true,"829":true}},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgULSAcceptLanguageList":["en-gb"],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q3250168"});
}</script><script>if(window.mw){mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"editfont":"default","editondblclick":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nickname":"","norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rows":25,"showhiddencats":false,"shownumberswatching":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,
"watchrollback":0,"wllimit":250,"useeditwarning":1,"prefershttps":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"visualeditor-enable":0,"visualeditor-betatempdisable":0,"visualeditor-enable-experimental":0,"visualeditor-enable-language":0,"visualeditor-hidebetawelcome":0,"wikilove-enabled":1,"mathJax":false,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-subscriptions-web-education-program":true,"echo-subscriptions-email-education-program":false,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-user-rights":true,"echo-subscriptions-web-user-rights":true,"echo-subscriptions-email-other":false,
"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"echo-subscriptions-web-flow-discussion":true,"echo-subscriptions-email-flow-discussion":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","multimediaviewer-enable":true,"language":"en","variant-gan":"gan","variant-iu":"iu","variant-kk":"kk","variant-ku":"ku","variant-shi":"shi","variant-sr":"sr","variant-tg":"tg","variant-uz":"uz","variant-zh":"zh","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":
false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs118":false,"searchNs119":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"searchNs2600":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-geonotice":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-refToolbar":1,"gadget-mySandbox":1,"gadget-featured-articles-links":1,"variant":"en"});},{},{});mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});}
/* cache key: enwiki:resourceloader:filter:minify-js:7:8825215e3b8330f97c8b320b947fb51c */</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","ext.centralNotice.bannerController","skins.vector.js"]);
}</script>
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.24wmf18/skins/Vector/csshover.min.htc")}</style><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-List_of_mobile_phone_number_series_by_country skin-vector action-view vector-animateLayout">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="siteNotice"><!-- CentralNotice --></div>
<h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">List of mobile phone number series by country</span></h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
</div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><p>In many countries, <a href="/wiki/Mobile_phone" title="Mobile phone">mobile phones</a> are assigned dedicated <b>mobile phone codes</b> within the country's <a href="/wiki/Telephone_numbering_plan" title="Telephone numbering plan">telephone numbering plan</a>. Some countries that do not use area codes (e.g. <a href="/wiki/Singapore" title="Singapore">Singapore</a>) allocate specific number ranges to mobile phones that are easily distinguishable from landlines. One notable exception to this type of assignment is the countries within the <a href="/wiki/North_American_Numbering_Plan" title="North American Numbering Plan">North American Numbering Plan</a> (the <a href="/wiki/United_States" title="United States">United States</a> and its territories, <a href="/wiki/Canada" title="Canada">Canada</a>, and much of the Caribbean), in which mobile phones are assigned subscriber numbers within geographic area codes, and are not easily distinguishable from landlines.</p>
<p></p>
<div id="toc" class="toc">
<div id="toctitle">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#International_prefixes_table"><span class="tocnumber">1</span> <span class="toctext">International prefixes table</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#See_also"><span class="tocnumber">2</span> <span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Notes"><span class="tocnumber">3</span> <span class="toctext">Notes</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#References"><span class="tocnumber">4</span> <span class="toctext">References</span></a></li>
</ul>
</div>
<p></p>
<h2><span class="mw-headline" id="International_prefixes_table">International prefixes table</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_mobile_phone_number_series_by_country&action=edit&section=1" title="Edit section: International prefixes table">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<table class="wikitable sortable">
<tr>
<th>Country or unrecognized territory</th>
<th>International Calling Code</th>
<th><abbr title="Mobile Prefix">Mobile Prefix</abbr><sup id="cite_ref-prefix_note_1-0" class="reference"><a href="#cite_note-prefix_note-1"><span>[</span>notes 1<span>]</span></a></sup></th>
<th><abbr title="National Significant Number">NSN</abbr><sup id="cite_ref-nsn_note_2-0" class="reference"><a href="#cite_note-nsn_note-2"><span>[</span>notes 2<span>]</span></a></sup></th>
<th>Carrier</th>
<th>Notes</th>
</tr>
<tr>
<td rowspan="2"><a href="/wiki/Abkhazia" title="Abkhazia">Abkhazia</a></td>
<td>+7</td>
<td><a href="/wiki/Telephone_numbers_in_Abkhazia" title="Telephone numbers in Abkhazia">940</a></td>
<td>10</td>
<td></td>
<td>See <a href="#Russia">Russia</a></td>
</tr>
<tr>
<td>+995</td>
<td><a href="/wiki/Telephone_numbers_in_Abkhazia" title="Telephone numbers in Abkhazia">44x</a></td>
<td>9</td>
<td></td>
<td>See <a href="#Georgia">Georgia</a></td>
</tr>
<tr>
<td rowspan="8"><a href="/wiki/Afghanistan" title="Afghanistan">Afghanistan</a></td>
<td rowspan="8"><a href="/wiki/%2B93" title="+93" class="mw-redirect">+93</a></td>
<td>700</td>
<td> ?</td>
<td><a href="/wiki/AWCC" title="AWCC" class="mw-redirect">AWCC</a></td>
<td></td>
</tr>
<tr>
<td>0381</td>
<td> ?</td>
<td><a href="/wiki/AWCC" title="AWCC" class="mw-redirect">AWCC</a></td>
<td></td>
</tr>
<tr>
<td>72</td>
<td> ?</td>
<td><a href="/wiki/Afghan_Telecom" title="Afghan Telecom">Afghan Telecom</a></td>
<td></td>
</tr>
<tr>
<td>77</td>
<td> ?</td>
<td><a href="/wiki/MTN_Group" title="MTN Group">MTN</a></td>
<td></td>
</tr>
<tr>
<td>786</td>
<td> ?</td>
<td><a href="/wiki/Etisalat" title="Etisalat" class="mw-redirect">Etisalat</a></td>
<td></td>
</tr>
<tr>
<td>788</td>
<td> ?</td>
<td><a href="/wiki/Etisalat" title="Etisalat" class="mw-redirect">Etisalat</a></td>
<td></td>
</tr>
<tr>
<td>797</td>
<td> ?</td>
<td><a href="/wiki/Roshan_(telco)" title="Roshan (telco)">Roshan</a></td>
<td></td>
</tr>
<tr>
<td>799</td>
<td> ?</td>
<td><a href="/wiki/Roshan_(telco)" title="Roshan (telco)">Roshan</a></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/%C3%85land_Islands" title="Åland Islands">Åland Islands</a></td>
<td>+358</td>
<td><a href="/wiki/Telephone_numbers_in_%C3%85land" title="Telephone numbers in Åland">457</a></td>
<td>10</td>
<td></td>
<td>See <a href="#Finland">Finland</a></td>
</tr>
<tr>
<td rowspan="4"><a href="/wiki/Albania" title="Albania">Albania</a></td>
<td rowspan="4"><a href="/wiki/%2B355" title="+355" class="mw-redirect">+355</a></td>
<td>66</td>
<td> ?</td>
<td><a href="/wiki/Plus_Communication" title="Plus Communication">PLUS Communication</a></td>
<td></td>
</tr>
<tr>
<td>67</td>
<td> ?</td>
<td><a href="/w/index.php?title=EAGLE_MOBILE&action=edit&redlink=1" class="new" title="EAGLE MOBILE (page does not exist)">EAGLE MOBILE</a></td>
<td></td>
</tr>
<tr>
<td>68</td>
<td> ?</td>
<td><a href="/wiki/Albanian_Mobile_Communications" title="Albanian Mobile Communications">AMC</a></td>
<td></td>
</tr>
<tr>
<td>69</td>
<td> ?</td>
<td><a href="/wiki/Vodafone" title="Vodafone">Vodafone</a></td>
<td></td>
</tr>
<tr>
<td rowspan="3"><a href="/wiki/Algeria" title="Algeria">Algeria</a></td>
<td rowspan="3"><a href="/wiki/%2B213" title="+213" class="mw-redirect">+213</a></td>
<td>5</td>
<td>9</td>
<td>Nedjma Telecom</td>
<td>+213 5 xx xx xx xx</td>
</tr>
<tr>
<td>6</td>
<td>9</td>
<td>Mobilis-Algerie Telecom</td>
<td>+213 6 xx xx xx xx</td>
</tr>
<tr>
<td>7</td>
<td>9</td>
<td>Orascom Telecom Algerie</td>
<td>+213 7 xx xx xx xx</td>
</tr>
<tr>
<td><a href="/wiki/American_Samoa" title="American Samoa">American Samoa</a></td>
<td>+1</td>
<td><a href="/wiki/Area_code_684" title="Area code 684">684</a></td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Andorra" title="Andorra">Andorra</a></td>
<td><a href="/wiki/%2B376" title="+376" class="mw-redirect">+376</a></td>
<td>3</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="3"><a href="/wiki/Angola" title="Angola">Angola</a></td>
<td rowspan="3"><a href="/wiki/%2B244" title="+244" class="mw-redirect">+244</a></td>
<td>91</td>
<td> ?</td>
<td><a href="/w/index.php?title=MOVICEL_-_CDMA&action=edit&redlink=1" class="new" title="MOVICEL - CDMA (page does not exist)">MOVICEL - CDMA</a></td>
<td></td>
</tr>
<tr>
<td>92</td>
<td> ?</td>
<td><a href="/w/index.php?title=UNITEL_-_GSM&action=edit&redlink=1" class="new" title="UNITEL - GSM (page does not exist)">UNITEL - GSM</a></td>
<td></td>
</tr>
<tr>
<td>93</td>
<td> ?</td>
<td><a href="/w/index.php?title=UNITEL_-_GSM&action=edit&redlink=1" class="new" title="UNITEL - GSM (page does not exist)">UNITEL - GSM</a></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Anguilla" title="Anguilla">Anguilla</a></td>
<td>+1</td>
<td><a href="/wiki/Area_code_264" title="Area code 264">264</a> 772</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Antigua_and_Barbuda" title="Antigua and Barbuda">Antigua and Barbuda</a></td>
<td>+1</td>
<td><a href="/wiki/Area_code_268" title="Area code 268">268</a> 7xx</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Argentina" title="Argentina">Argentina</a></td>
<td><a href="/wiki/%2B54" title="+54" class="mw-redirect">+54</a></td>
<td>9/15</td>
<td> ?</td>
<td></td>
<td>15 before the local number but after long distance area code for national calls (0 11 15 xxxx-xxxx) and 9 placed after the international access code excluding the 15 for international calls (+54 9 11 xxxx-xxxx).</td>
</tr>
<tr>
<td rowspan="9"><span id="Armenia"></span><a href="/wiki/Armenia" title="Armenia">Armenia</a></td>
<td rowspan="9"><a href="/wiki/%2B374" title="+374" class="mw-redirect">+374</a></td>
<td>55</td>
<td> ?</td>
<td><a href="/wiki/Orange_Armenia" title="Orange Armenia">Orange</a></td>
<td></td>
</tr>
<tr>
<td>77</td>
<td> ?</td>
<td><a href="/w/index.php?title=VivaCell-MTS&action=edit&redlink=1" class="new" title="VivaCell-MTS (page does not exist)">VivaCell-MTS</a></td>
<td></td>
</tr>
<tr>
<td>91</td>
<td> ?</td>
<td><a href="/wiki/ArmenTel" title="ArmenTel" class="mw-redirect">ArmenTel</a></td>
<td>Users can now switch carriers and keep their cell phone numbers, including prefix.</td>
</tr>
<tr>
<td>93</td>
<td> ?</td>
<td><a href="/w/index.php?title=VivaCell-MTS&action=edit&redlink=1" class="new" title="VivaCell-MTS (page does not exist)">VivaCell-MTS</a></td>
<td></td>
</tr>
<tr>
<td>94</td>
<td> ?</td>
<td><a href="/w/index.php?title=VivaCell-MTS&action=edit&redlink=1" class="new" title="VivaCell-MTS (page does not exist)">VivaCell-MTS</a></td>
<td></td>
</tr>
<tr>
<td>95</td>
<td> ?</td>
<td><a href="/wiki/Orange_Armenia" title="Orange Armenia">Orange</a></td>
<td></td>
</tr>
<tr>
<td>97</td>
<td> ?</td>
<td><a href="/w/index.php?title=Karabakh_Telecom&action=edit&redlink=1" class="new" title="Karabakh Telecom (page does not exist)">Karabakh Telecom</a></td>
<td></td>
</tr>
<tr>
<td>98</td>
<td> ?</td>
<td><a href="/w/index.php?title=VivaCell-MTS&action=edit&redlink=1" class="new" title="VivaCell-MTS (page does not exist)">VivaCell-MTS</a></td>
<td></td>
</tr>
<tr>
<td>99</td>
<td> ?</td>
<td><a href="/wiki/ArmenTel" title="ArmenTel" class="mw-redirect">ArmenTel</a></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Aruba" title="Aruba">Aruba</a></td>
<td><a href="/wiki/%2B297" title="+297" class="mw-redirect">+297</a></td>
<td> ??</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Ascension_Island" title="Ascension Island">Ascension Island</a></td>
<td><a href="/wiki/%2B247" title="+247" class="mw-redirect">+247</a></td>
<td> ??</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><span id="Australia"></span><a href="/wiki/Australia" title="Australia">Australia</a></td>
<td><a href="/wiki/%2B61" title="+61" class="mw-redirect">+61</a></td>
<td>4</td>
<td>9</td>
<td>any</td>
<td>No set cellular suffix, due to "<a href="/wiki/Mobile_number_portability" title="Mobile number portability">Number Porting</a>" from one network to another. i.e. 04xx______</td>
</tr>
<tr>
<td><span id="Australian_Antarctic_Territory"></span><a href="/wiki/Australian_Antarctic_Territory" title="Australian Antarctic Territory">Australian Antarctic Territory</a></td>
<td>+672</td>
<td><a href="/wiki/Telephone_numbers_in_the_Australian_Antarctic_Territory" title="Telephone numbers in the Australian Antarctic Territory">1x</a></td>
<td> ?</td>
<td></td>
<td>See <a href="#Norfolk_Island">Norfolk Island</a></td>
</tr>
<tr>
<td rowspan="8"><a href="/wiki/Austria" title="Austria">Austria</a></td>
<td rowspan="8"><a href="/wiki/%2B43" title="+43" class="mw-redirect">+43</a></td>
<td>650</td>
<td>10</td>
<td>T-Mobile Austria GmbH (telering)</td>
<td></td>
</tr>
<tr>
<td>660</td>
<td>10</td>
<td>Hutchison 3G Austria GmbH (drei)</td>
<td></td>
</tr>
<tr>
<td>664</td>
<td>10</td>
<td>mobilkom Austria AG (Mobilkom, A1)</td>
<td></td>
</tr>
<tr>
<td>676</td>
<td>10</td>
<td>T-Mobile Austria GmbH (T-Mobile, formerly max)</td>
<td></td>
</tr>
<tr>
<td>680</td>
<td>10</td>
<td>mobilkom Austria AG (Bob)</td>
<td></td>
</tr>
<tr>
<td>681</td>
<td> ?</td>
<td>YESSS! Telekommunikation GmbH</td>
<td></td>
</tr>
<tr>
<td>688</td>
<td> ?</td>
<td>Tele2 Mobil</td>
<td></td>
</tr>
<tr>
<td>699</td>
<td>11</td>
<td><a href="/wiki/Orange_Austria" title="Orange Austria">Orange Austria</a> (Orange (formerly ONE), Yesss)</td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Azawad" title="Azawad">Azawad</a></td>
<td>+223</td>
<td><a href="/wiki/Telephone_numbers_in_Azawad" title="Telephone numbers in Azawad" class="mw-redirect">??</a></td>
<td> ?</td>
<td></td>
<td>See <a href="#Mali">Mali</a></td>
</tr>
<tr>
<td rowspan="6"><a href="/wiki/Azerbaijan" title="Azerbaijan">Azerbaijan</a></td>
<td rowspan="6"><a href="/wiki/%2B994" title="+994" class="mw-redirect">+994</a></td>
<td>40</td>
<td> ?</td>
<td><a href="/w/index.php?title=Catel&action=edit&redlink=1" class="new" title="Catel (page does not exist)">Catel</a></td>
<td></td>
</tr>
<tr>
<td>50</td>
<td> ?</td>
<td><a href="/wiki/Azercell" title="Azercell">Azercell</a></td>
<td></td>
</tr>
<tr>
<td>51</td>
<td> ?</td>
<td><a href="/wiki/Azercell" title="Azercell">Azercell</a></td>
<td></td>
</tr>
<tr>
<td>55</td>
<td> ?</td>
<td><a href="/wiki/Bakcell" title="Bakcell">Bakcell</a></td>
<td></td>
</tr>
<tr>
<td>70</td>
<td> ?</td>
<td><a href="/wiki/Nar_Mobile" title="Nar Mobile">Nar Mobile</a></td>
<td></td>
</tr>
<tr>
<td>77</td>
<td> ?</td>
<td><a href="/wiki/Azerfon" title="Azerfon" class="mw-redirect">Azerfon</a>-<a href="/wiki/Vodafone" title="Vodafone">Vodafone</a></td>
<td></td>
</tr>
<tr>
<td rowspan="3"><a href="/wiki/Bahamas" title="Bahamas" class="mw-redirect">Bahamas</a></td>
<td rowspan="3">+1</td>
<td><a href="/wiki/Area_code_242" title="Area code 242">242</a> 35x</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Area_code_242" title="Area code 242">242</a> 45x</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Area_code_242" title="Area code 242">242</a> 55x</td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="19"><a href="/wiki/Bahrain" title="Bahrain">Bahrain</a></td>
<td rowspan="19"><a href="/wiki/%2B973" title="+973" class="mw-redirect">+973</a></td>
<td>31</td>
<td>8</td>
<td>Royal Court</td>
<td rowspan="19">Users can now switch carriers and keep their cell phone numbers, including prefix</td>
</tr>
<tr>
<td>322</td>
<td>8</td>
<td>Batelco</td>
</tr>
<tr>
<td>33</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>340</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>341</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>343</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>344</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>345</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>353</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>355</td>
<td>8</td>
<td>Viva</td>
</tr>
<tr>
<td>36</td>
<td>8</td>
<td>Zain</td>
</tr>
<tr>
<td>377</td>
<td>8</td>
<td>Zain</td>
</tr>
<tr>
<td>383</td>
<td>8</td>
<td>Batelco</td>
</tr>
<tr>
<td>384</td>
<td>8</td>
<td>Batelco</td>
</tr>
<tr>
<td>388</td>
<td>8</td>
<td>Batelco</td>
</tr>
<tr>
<td>39</td>
<td>8</td>
<td>Batelco</td>
</tr>
<tr>
<td>663</td>
<td>8</td>
<td>Zain</td>
</tr>
<tr>
<td>666</td>
<td>8</td>
<td>Zain</td>
</tr>
<tr>
<td>669</td>
<td>8</td>
<td>Zain</td>
</tr>
<tr>
<td rowspan="6"><a href="/wiki/Bangladesh" title="Bangladesh">Bangladesh</a></td>
<td rowspan="6"><a href="/wiki/%2B880" title="+880" class="mw-redirect">+880</a></td>
<td>11xx</td>
<td>10</td>
<td><a href="/wiki/Citycell" title="Citycell">Citycell</a></td>
<td>International example : +880 11xx xxxxxx,<br />
Countrywide based example : 011xx xxxxxx</td>
</tr>
<tr>
<td>15xx</td>
<td>10</td>
<td><a href="/wiki/TeleTalk" title="TeleTalk">TeleTalk</a></td>
<td>International example : +880 15xx xxxxxx,<br />
Countrywide based example : 015xx xxxxxx</td>
</tr>
<tr>
<td>16xx</td>
<td>10</td>
<td><a href="/wiki/Airtel_Bangladesh" title="Airtel Bangladesh">Airtel</a></td>
<td>International example : +880 16xx xxxxxx,<br />
Countrywide based example : 016xx xxxxxx</td>
</tr>
<tr>
<td>17xx</td>
<td>10</td>
<td><a href="/wiki/GrameenPhone" title="GrameenPhone" class="mw-redirect">GrameenPhone</a></td>
<td>International example : +880 17xx xxxxxx,<br />
Countrywide based example : 017xx xxxxxx</td>
</tr>
<tr>
<td>18xx</td>
<td>10</td>
<td><a href="/wiki/Robi" title="Robi">Robi</a></td>
<td>International example : +880 18xx xxxxxx,<br />
Countrywide based example : 018xx xxxxxx</td>
</tr>
<tr>
<td>19xx</td>
<td>10</td>
<td><a href="/wiki/Banglalink" title="Banglalink">Banglalink</a></td>
<td>International example : +880 19xx xxxxxx,<br />
Countrywide based example : 019xx xxxxxx</td>
</tr>
<tr>
<td rowspan="4"><a href="/wiki/Barbados" title="Barbados">Barbados</a></td>
<td rowspan="4">+1</td>
<td rowspan="4"><a href="/wiki/Area_code_246#Central_Office_Codes" title="Area code 246">246</a></td>
<td>10</td>
<td><a href="/wiki/AT%26T_Wireless" title="AT&T Wireless" class="mw-redirect">AT&T Wireless</a> (formerly)</td>
<td></td>
</tr>
<tr>
<td>10</td>
<td><a href="/wiki/Digicel" title="Digicel">Digicel</a></td>
<td></td>
</tr>
<tr>
<td>10</td>
<td><a href="/wiki/LIME_(Cable_%26_Wireless)" title="LIME (Cable & Wireless)">LIME</a></td>
<td></td>
</tr>
<tr>
<td>10</td>
<td><a href="/wiki/Sunbeach" title="Sunbeach">Sunbeach</a></td>
<td></td>
</tr>
<tr>
<td rowspan="14"><a href="/wiki/Belarus" title="Belarus">Belarus</a></td>
<td rowspan="14"><a href="/wiki/%2B375" title="+375" class="mw-redirect">+375</a></td>
<td>259</td>
<td>9</td>
<td>life :)</td>
<td>+375 259 xxxxxx - GSM - CJSC "BeST", <a rel="nofollow" class="external text" href="http://life.com.by/en/">life.com.by</a></td>
</tr>
<tr>
<td>291</td>
<td>9</td>
<td>Velcom</td>
<td>+375 291 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>292</td>
<td>9</td>
<td>MTC</td>
<td>+375 292 xxxxxx - GSM - Mobile TeleSystems JLLC, <a rel="nofollow" class="external text" href="http://en.mts.by/">en.mts.by</a></td>
</tr>
<tr>
<td>293</td>
<td>9</td>
<td>Velcom</td>
<td>+375 293 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>294</td>
<td>9</td>
<td>diallog</td>
<td>+375 294 xxxxxx - CDMA2000 - OOO SP "BelSel", <a rel="nofollow" class="external text" href="http://diallog.by/">diallog.by</a></td>
</tr>
<tr>
<td>295</td>
<td>9</td>
<td>MTC</td>
<td>+375 295 xxxxxx - GSM - Mobile TeleSystems JLLC, <a rel="nofollow" class="external text" href="http://en.mts.by/">en.mts.by</a></td>
</tr>
<tr>
<td>296</td>
<td>9</td>
<td>Velcom</td>
<td>+375 296 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>297</td>
<td>9</td>
<td>MTC</td>
<td>+375 297 xxxxxx - GSM - Mobile TeleSystems JLLC, <a rel="nofollow" class="external text" href="http://en.mts.by/">en.mts.by</a></td>
</tr>
<tr>
<td>298</td>
<td>9</td>
<td>MTC</td>
<td>+375 298 xxxxxx - GSM - Mobile TeleSystems JLLC, <a rel="nofollow" class="external text" href="http://en.mts.by/">en.mts.by</a></td>
</tr>
<tr>
<td>299</td>
<td>9</td>
<td>Velcom</td>
<td>+375 299 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>336</td>
<td>9</td>
<td>MTC</td>
<td>+375 336 xxxxxx - GSM - Mobile TeleSystems JLLC, <a rel="nofollow" class="external text" href="http://en.mts.by/">en.mts.by</a></td>
</tr>
<tr>
<td>444</td>
<td>9</td>
<td>Velcom</td>
<td>+375 444 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>445</td>
<td>9</td>
<td>Velcom</td>
<td>+375 445 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td>447</td>
<td>9</td>
<td>Velcom</td>
<td>+375 447 xxxxxx - GSM - FE "VELCOM", Member of Telekom Austria Group, <a rel="nofollow" class="external text" href="http://www.velcom.by/en/home">www.velcom.by</a></td>
</tr>
<tr>
<td rowspan="3"><a href="/wiki/Belgium" title="Belgium">Belgium</a></td>
<td rowspan="3"><a href="/wiki/%2B32" title="+32" class="mw-redirect">+32</a></td>
<td>47x</td>
<td>9</td>
<td><a href="/wiki/Proximus" title="Proximus">Proximus</a> (or other)</td>
<td rowspan="3">Users can switch carriers while keeping number and prefix (so prefixes are not tightly coupled to a specific carrier).
<p>If there is only +32.. followed by any other, shorter number, like +32 51 724859, this is the number of a normal phone, not a mobile.</p>
</td>
</tr>
<tr>
<td>48x</td>
<td>9</td>
<td><a href="/wiki/BASE_(mobile)" title="BASE (mobile)" class="mw-redirect">BASE</a> (or other)</td>
</tr>
<tr>
<td>49x</td>
<td>9</td>
<td><a href="/wiki/Mobistar" title="Mobistar">Mobistar</a> (or other)</td>
</tr>
<tr>
<td><a href="/wiki/Belize" title="Belize">Belize</a></td>
<td><a href="/wiki/%2B501" title="+501" class="mw-redirect">+501</a></td>
<td>6</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Benin" title="Benin">Benin</a></td>
<td><a href="/wiki/%2B229" title="+229" class="mw-redirect">+229</a></td>
<td>9x</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Bermuda" title="Bermuda">Bermuda</a></td>
<td>+1</td>
<td><a href="/wiki/Area_code_441" title="Area code 441">441</a></td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Bhutan" title="Bhutan">Bhutan</a></td>
<td><a href="/wiki/%2B975" title="+975" class="mw-redirect">+975</a></td>
<td>17</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="2"><a href="/wiki/Bolivia" title="Bolivia">Bolivia</a></td>
<td rowspan="2"><a href="/wiki/%2B591" title="+591" class="mw-redirect">+591</a></td>
<td>6</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td>7</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Bonaire" title="Bonaire">Bonaire</a></td>
<td><a href="/wiki/%2B599" title="+599" class="mw-redirect">+599</a></td>
<td> ??</td>
<td> ?</td>
<td></td>
<td>See <a href="#Cura.C3.A7ao_and_the_Caribbean_Netherlands">Curaçao and the Caribbean Netherlands</a></td>
</tr>
<tr>
<td rowspan="7"><a href="/wiki/Bosnia_and_Herzegovina" title="Bosnia and Herzegovina">Bosnia and Herzegovina</a> (Bosnia-Herzegovina)</td>
<td rowspan="7"><a href="/wiki/%2B387" title="+387" class="mw-redirect">+387</a></td>
<td>60</td>
<td> ?</td>
<td><a href="/wiki/BH_Telecom" title="BH Telecom">BH Mobile</a></td>
<td></td>
</tr>
<tr>
<td>61</td>
<td> ?</td>
<td><a href="/wiki/BH_Telecom" title="BH Telecom">BH Mobile</a></td>
<td></td>
</tr>
<tr>
<td>62</td>
<td> ?</td>
<td><a href="/wiki/BH_Telecom" title="BH Telecom">BH Mobile</a></td>
<td></td>
</tr>
<tr>
<td>63</td>
<td> ?</td>
<td><a href="/wiki/HT-ERONET" title="HT-ERONET" class="mw-redirect">Eronet</a></td>
<td></td>
</tr>
<tr>
<td>64</td>
<td> ?</td>
<td><a href="/wiki/Hallo" title="Hallo" class="mw-redirect">Hallo</a></td>
<td></td>
</tr>
<tr>
<td>65</td>
<td> ?</td>
<td><a href="/wiki/Telekom_Srpske" title="Telekom Srpske">m:tel</a></td>
<td></td>
</tr>
<tr>
<td>66</td>
<td> ?</td>
<td><a href="/wiki/Telekom_Srpske" title="Telekom Srpske">m:tel</a></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Botswana" title="Botswana">Botswana</a></td>
<td><a href="/wiki/%2B267" title="+267" class="mw-redirect">+267</a></td>
<td>7</td>
<td>1</td>
<td>Mascom</td>
<td></td>
</tr>
<tr>
<td rowspan="4"><a href="/wiki/Brazil" title="Brazil">Brazil</a></td>
<td rowspan="4"><a href="/wiki/%2B55" title="+55" class="mw-redirect">+55</a></td>
<td>xx 6</td>
<td>8-9</td>
<td></td>
<td></td>
</tr>
<tr>
<td>xx 7</td>
<td>8-9</td>
<td></td>
<td></td>
</tr>
<tr>
<td>xx 8</td>
<td>8-9</td>
<td></td>
<td></td>
</tr>
<tr>
<td>xx 9</td>
<td>8-9</td>
<td></td>
<td></td>
</tr>
<tr>
<td><span id="British_Indian_Ocean_Territory"></span><a href="/wiki/British_Indian_Ocean_Territory" title="British Indian Ocean Territory">British Indian Ocean Territory</a></td>
<td><a href="/wiki/%2B246" title="+246" class="mw-redirect">+246</a></td>
<td>387</td>
<td>7</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/British_Virgin_Islands" title="British Virgin Islands">British Virgin Islands</a></td>
<td>+1</td>
<td><a href="/wiki/Area_code_284" title="Area code 284">284</a></td>
<td>10</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Brunei" title="Brunei">Brunei</a></td>
<td><a href="/wiki/%2B673" title="+673" class="mw-redirect">+673</a></td>
<td>8x</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="5"><a href="/wiki/Bulgaria" title="Bulgaria">Bulgaria</a></td>
<td rowspan="5"><a href="/wiki/%2B359" title="+359" class="mw-redirect">+359</a></td>
<td>48</td>
<td> ?</td>
<td><a href="/wiki/Mobikom" title="Mobikom">Mobikom</a> (now defunct)</td>
<td></td>
</tr>
<tr>
<td>87</td>
<td>9</td>
<td><a href="/wiki/Vivacom" title="Vivacom">Vivacom</a></td>
<td>+359 87 xxxxxxx & Users can now switch carriers and keep their cell phone numbers, including prefix</td>
</tr>
<tr>
<td>88</td>
<td>9</td>
<td><a href="/wiki/Mobiltel" title="Mobiltel" class="mw-redirect">Mobiltel</a></td>
<td>+359 88 xxxxxxx & Users can now switch carriers and keep their cell phone numbers, including prefix</td>
</tr>
<tr>
<td>89</td>
<td>9</td>
<td><a href="/wiki/Globul" title="Globul">Globul</a></td>
<td>+359 89 xxxxxxx & Users can now switch carriers and keep their cell phone numbers, including prefix</td>
</tr>
<tr>
<td>988</td>
<td>9</td>
<td>Other mobile networks</td>
<td>+359 988 xxxxxx & Users can now switch carriers and keep their cell phone numbers, including prefix</td>
</tr>
<tr>
<td rowspan="8"><a href="/wiki/Burkina_Faso" title="Burkina Faso">Burkina Faso</a></td>
<td rowspan="8"><a href="/wiki/%2B226" title="+226" class="mw-redirect">+226</a></td>
<td>70</td>
<td>8</td>
<td>Telmob</td>
<td></td>
</tr>
<tr>
<td>71</td>
<td>8</td>
<td>Telmob</td>
<td></td>
</tr>
<tr>
<td>72</td>
<td>8</td>
<td>Telmob</td>
<td></td>
</tr>
<tr>
<td>74</td>
<td>8</td>
<td>Celtel</td>
<td></td>
</tr>
<tr>
<td>75</td>
<td>8</td>
<td>Celtel</td>
<td></td>
</tr>
<tr>
<td>77</td>
<td>8</td>
<td>Celtel</td>
<td></td>
</tr>
<tr>
<td>78</td>
<td>8</td>
<td>Telecel</td>
<td></td>
</tr>
<tr>
<td>79</td>
<td>8</td>
<td>Telecel</td>
<td></td>
</tr>
<tr>
<td><span id="Burma"></span><a href="/wiki/Burma" title="Burma">Burma</a></td>
<td><a href="/wiki/%2B95" title="+95" class="mw-redirect">+95</a></td>
<td>9</td>
<td> ?</td>
<td></td>
<td>See <a href="#Myanmar">Myanmar</a></td>
</tr>
<tr>
<td><a href="/wiki/Burundi" title="Burundi">Burundi</a></td>
<td><a href="/wiki/%2B257" title="+257" class="mw-redirect">+257</a></td>
<td>7x</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Cambodia" title="Cambodia">Cambodia</a></td>
<td><a href="/wiki/%2B855" title="+855" class="mw-redirect">+855</a></td>
<td>9x</td>
<td> ?</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="2"><a href="/wiki/Cameroon" title="Cameroon">Cameroon</a></td>
<td rowspan="2"><a href="/wiki/%2B237" title="+237" class="mw-redirect">+237</a></td>
<td>7</td>
<td> ?</td>
<td><a href="/wiki/MTN_Group" title="MTN Group">MTN</a></td>
<td></td>
</tr>
<tr>
<td>9</td>
<td> ?</td>