Phone Numbers in Fiji: A Comprehensive Guide

Quick Reference

  • Country: Fiji
  • Country Code: +679
  • International Prefix: 00 or 052
  • National Prefix: None
  • Typical Number Lengths:
    • Fixed-Line Numbers: 7 digits
    • Mobile Numbers: 7 digits

Overview

Fiji's telephone numbering plan is straightforward, adhering to the ITU-T E.164 standard. This guide is essential for telecom professionals, developers, and system administrators who need to understand the structure, formats, and dialing rules for phone numbers in Fiji.

Numbering Plan Structure

Fiji employs a closed numbering plan with a fixed length of 7 digits for both fixed-line and mobile numbers. The entire country operates under a single numbering plan without area codes.

Number Structure

  • Country Code: +679
  • Subscriber Number: 7 digits

Number Formats

TypeFormatExample
Fixed-LineX{7}3301234
MobileX{7}7012345
Toll-Free0800X{4}08001234
Premium Rate0900X{4}09001234

Regular Expressions

For validation purposes, the following regular expressions can be used:

  • Fixed-Line: /^[3-6]\d{6}$/
  • Mobile: /^[7-9]\d{6}$/
  • Toll-Free: /^0800\d{4}$/
  • Premium Rate: /^0900\d{4}$/

Dialing Rules

Domestic Dialing

  • Landline to Landline: Dial the 7-digit subscriber number directly.
  • Landline to Mobile: Dial the 7-digit mobile number directly.
  • Mobile to Mobile: Dial the 7-digit mobile number directly.

International Dialing

  • Outgoing International Calls: Dial the international prefix 00 or 052, followed by the destination country code, and then the subscriber number.

    • Example: To call Australia from Fiji, dial 00 61 2 12345678.
  • Incoming International Calls: Callers from abroad should dial +679 followed by the 7-digit subscriber number.

    • Example: To call a number in Suva, Fiji from the United States, dial +679 3301234.

Number Portability

Fiji has implemented mobile number portability (MNP), allowing subscribers to retain their mobile numbers when switching between operators. Fixed-line number portability is not available. The implementation of MNP was completed in 2011.

Major Telecom Operators and Number Ranges

OperatorNumber RangeService Type
Vodafone Fiji7XXXXXXMobile
Digicel Fiji8XXXXXXMobile
Telecom Fiji Ltd3XXXXXXFixed-Line
Fiji Telecom Corp5XXXXXXFixed-Line

Regulatory Authority

The telecommunications sector in Fiji is regulated by the Fiji Communications Commission (FCC). The FCC is responsible for the allocation and management of numbering resources, as well as enforcing compliance with national and international standards.

Technical Considerations for Developers

Developers and systems administrators working with Fiji's phone numbers should consider the following:

  • Validation: Ensure that phone numbers conform to the 7-digit format and use the appropriate prefixes for toll-free and premium rate numbers.
  • Number Portability: Implement logic to handle mobile number portability, ensuring that calls are routed correctly even if the subscriber has switched operators.
  • Internationalization: When handling international calls, always include the country code +679 and strip any leading zeros from the subscriber number.

Example Code Snippet for Validation

function validateFijiPhoneNumber(number) {
  const fixedLinePattern = /^[3-6]\d{6}$/;
  const mobilePattern = /^[7-9]\d{6}$/;
  const tollFreePattern = /^0800\d{4}$/;
  const premiumRatePattern = /^0900\d{4}$/;

  return fixedLinePattern.test(number) || 
         mobilePattern.test(number) || 
         tollFreePattern.test(number) || 
         premiumRatePattern.test(number);
}

Recent or Upcoming Changes

As of the latest update, there are no significant changes or planned modifications to Fiji's telephone numbering plan. Stakeholders should monitor announcements from the Fiji Communications Commission for any future updates.

Emergency Numbers

  • Police: 911
  • Fire: 910
  • Ambulance: 911

For the most up-to-date information on telecommunications regulations in Fiji, please consult the official website of the Fiji Communications Commission.

Conclusion

Fiji's telephone numbering plan is straightforward, adhering to the ITU-T E.164 standard with a 7-digit subscriber number for both fixed-line and mobile services. The country code is +679, and there are no area codes. Number portability is available for mobile numbers, and the telecommunications sector is regulated by the Fiji Communications Commission. For developers, it is crucial to implement correct validation, handle number portability, and ensure internationalization in systems dealing with Fiji's phone numbers.

This guide serves as a comprehensive reference for understanding and working with Fiji's phone numbers, ensuring compliance with national and international standards.