phone number standards

Sent logo
Sent TeamMar 8, 2026 / phone number standards / Article

Niue Country Code +683: Phone Number Format & Validation Guide

Complete guide to Niue phone numbers with country code +683. Learn the 4-digit format, how to call Niue from USA, validation regex, emergency number 999, mobile prefixes, and E.164 formatting for developers.

Niue Phone Numbers: Complete Format & Validation Guide (+683)

Niue uses country code +683 with a simple 4-digit phone number format. This comprehensive guide covers how to call Niue from the USA and other countries, validate Niue phone numbers with regex patterns, understand mobile versus landline prefixes, and integrate Niue's telecommunications system into your applications. Learn about the emergency number (999), ITU numbering plan updates, E.164 formatting, and Band 28 4G LTE network requirements.

What is the Country Code for Niue?

The country code for Niue is +683. To call Niue from anywhere in the world, dial your international exit code (011 from USA, 00 from most countries), then 683, followed by the 4-digit local number. Example: 011 683 4747 from the United States.

Understanding Niue's Telecommunications Landscape

Niue, a small island nation in the South Pacific, operates a modern telecommunications system managed by Telecom Niue, the sole provider. The island has 1,689 residents (2022 census), yet Telecom Niue has invested in robust infrastructure: 4G LTE coverage (Band 28 – 700 MHz) in populated areas, a fiber backbone connecting all 14 villages (completed 2015), and satellite backup for international connectivity. The Manatua Fibre Cable connection commissioned 13 May 2021 significantly improved international connectivity, transforming speed, capacity, and resilience. Internet penetration stood at 79.6% in January 2024 (1,539 users), though access varies by location and service type (WiFi, ADSL, or mobile).

Important: An updated numbering plan for Niue took effect 1 May 2018 (ITU Operational Bulletin No. 1148). The 2018 update established current number allocations including mobile prefixes (1, 3, 5, 6), landline ranges (4XXX, 7XXX–9XXX), and the new prepaid LTE mobile range (8884XXX–8889XXX). A further update was communicated 31 August 2023 (ITU Operational Bulletin No. 1276). Ensure your validation logic reflects current allocations.

Domestic Calling Procedures

Niue's domestic dialing system is remarkably simple. The entire island operates on a unified 4-digit numbering plan – no area codes or regional prefixes needed.

Call Types

  • Landline to Landline: Dial the 4-digit number directly. Landline numbers begin with 4 (PSTN post paid: 4000–4999) or 7, 8, 9 (PSTN postpaid: 7000–9999). Example: 4747. Standard rate: NZ$0.17 per minute.
  • Landline to Mobile: Dial the 4-digit mobile number directly. Mobile numbers begin with 1 (not 10), 3, 5, or 6. Examples: 5656, 6234, 3456.
  • Mobile to Mobile: Dial the 4-digit number directly. Example: 5656.
  • Emergency Services: Dial 999. Available 24/7, free of charge, connects directly to emergency responders. Direct contacts: Hospital (4100), Police non-emergency (4333), Fire Rescue (4133).
  • Special Services:
    • Operator Assistance: 010
    • Faults & Directory Service: 015
    • Weather & Tidal Information: 101
    • Prepaid LTE Mobile: 8884000–8889999 range for LTE mobile services

Note: Service hours vary. Check the Telecom Niue website for current schedules.

How to Call Niue from the USA and Other Countries

To call Niue from the United States or any other country, follow this international dialing format:

  • Step 1 - International Exit Code: Dial 011 from USA/Canada, or 00 from most other countries
  • Step 2 - Niue Country Code: Dial 683
  • Step 3 - Local Number: Dial the 4-digit Niue phone number

Examples:

  • From USA: 011 683 4747
  • From UK/Europe: 00 683 4747
  • Mobile format: +683 4747

Roaming Note: International roaming is not available. Telecom Niue has no roaming agreements with overseas operators. Purchase a local SIM card if you're visiting.

SIM Cards for Visitors: Purchase SIM cards at the Telecom Niue kiosk at Hanan Airport (on plane arrival days, subject to staffing) or at the Telecom Niue Office in Alofi Commercial Centre. Visitor SIM packages cost NZ$55 (as of January 2025) and include the SIM card, 30 minutes of local/NZ/AUS calls, 30 SMS, and 6 GB data valid for 14 days. Standard SIM cards cost approximately NZ$10. Your device must support Band 28 (700 MHz) for 4G VoLTE compatibility; rent a MiFi device for NZ$50 plus NZ$80 refundable bond as an alternative.

Number Format Specifications for Developers

Core Structure and Validation

All local Niue numbers are 4 digits long. This consistent format simplifies validation and processing.

javascript
function isValidNiueNumber(number) {
    const cleaned = number.replace(/\D/g, ''); // Remove non-digit characters
    // Accept numbers with or without country code, validate mobile (1/3/5/6) and landline (4/7/8/9)
    return /^(?:683)?[13-9]\d{3}$/.test(cleaned);
}

Number Categories (ITU Allocations – Effective 1 May 2018)

CategoryFormatExampleUsageValidation RegexStatus
Landline (Post paid PSTN)4XXX4747Fixed-line services^4\d{3}$Active
Landline (Postpaid PSTN)7XXX, 8XXX, 9XXX7234, 8567Fixed-line services^[789]\d{3}$Active
Mobile (Prepaid GSM 2G)5XXX, 6XXX5656, 6234Mobile services^[56]\d{3}$Active
Mobile (Post paid AMPS)1XXX1234Mobile services (excluding 10XX)^1[1-9]\d{2}$Not Active
Mobile (Post paid AMPS FWT)3XXX3456Mobile services^3\d{3}$Not Active
Prepaid LTE Mobile8884XXX to 8889XXX8885123LTE mobile services (7-digit)^888[4-9]\d{3}$Active
Fixed-GSM Wireless2XXX2345Fixed wireless^2\d{3}$Not Active
Emergency999999Emergency services^999$Active
Operator Assistance010010Operator help^010$Active
Faults & Directory015015Directory assistance^015$Active
Weather & Tidal Info101101Weather information^101$Active

Status Definitions:

  • Active: Currently in use and accepting new assignments
  • Not Active: Legacy allocations no longer used for new assignments; ranges may contain existing numbers but are not allocated to new subscribers

Technology Acronyms:

  • AMPS: Advanced Mobile Phone System – first-generation analog cellular technology (now obsolete)
  • FWT: Fixed Wireless Terminal – device connecting landline phones to mobile networks
  • GSM: Global System for Mobile Communications – second-generation digital cellular technology
  • PSTN: Public Switched Telephone Network – traditional landline telephone system

Best Practices for Implementation

  • Storage: Store phone numbers in international E.164 format (+6834747). This ensures consistency and facilitates international communication.
  • Display: Format numbers based on context. For local display, show the 4-digit number. For international contexts, include the country code.
javascript
function formatNiueNumber(number) {
    const cleaned = number.replace(/\D/g, '');
    // Handle 4-digit local numbers and 7-digit LTE numbers
    if (cleaned.length === 4) {
        return `+683 ${cleaned}`;
    } else if (cleaned.startsWith('888') && cleaned.length === 7) {
        return `+683 ${cleaned}`;
    }
    return cleaned;
}
  • SMS Integration: Validate and format SMS numbers like voice numbers, ensuring correct country code inclusion. Mobile numbers start with 1 (not 10), 3, 5, or 6. SMS Limitations: Two-way SMS is not supported in Niue (one-way outbound only). Concatenated (multi-part) messages are not supported; keep messages within 160 characters (GSM-7 encoding) or 70 characters (UCS-2 for special characters/emoji). MMS converts to SMS with embedded URL links. Source: Sent.dm Niue SMS Guide
javascript
function validateSMSNumber(number) {
    const cleaned = number.replace(/\D/g, '');
    // Mobile prefixes: 1 (not 10), 3, 5, 6
    const isValid = /^(?:\+683|683)?(?:1[1-9]\d{2}|[356]\d{3})$/.test(cleaned);
    return {
        valid: isValid,
        formatted: isValid ? `+683${cleaned.slice(-4)}` : null
    };
}

Network Integration Considerations

  • 4G LTE Band: Niue's 4G LTE network operates on Band 28 (700 MHz – specifically 703–748 MHz uplink, 758–803 MHz downlink), common in Australia and New Zealand. The network supports 4G VoLTE for voice calls. Ensure your devices explicitly support Band 28 for compatibility. Source: Telecom Niue
  • Network Technology: Primary network is 4G LTE (Band 28). Legacy 2G GSM infrastructure exists for basic coverage. 3G is not deployed. When 4G is unavailable, compatible devices fall back to 2G GSM for voice/SMS only (limited data capability).
  • International Connectivity: The Manatua submarine fiber optic cable (commissioned May 2021) provides primary international connectivity, significantly reducing latency compared to previous satellite-dependent systems. Satellite backup remains available for redundancy.
  • Coverage: 4G LTE coverage available in populated areas and all 14 villages. Some coverage gaps exist inland and on the east coast. Network covers most residential and business areas.

Testing and Error Handling

Test thoroughly for any application interacting with Niue's telecommunications system. Include test cases for various number formats, edge cases, and international calling scenarios. Implement robust error handling for invalid numbers, network issues, and other potential problems.

Common Test Cases:

  • Valid 4-digit mobile: 5656, 6234 (should validate)
  • Valid 4-digit landline: 4747, 7234 (should validate)
  • Valid 7-digit LTE: 8885123 (should validate)
  • Invalid prefix: 0234, 1056 (should reject – 10XX reserved)
  • Invalid length: 567, 56789 (should reject 4-digit numbers with wrong length)
  • With country code: +6835656, +6834747 (should validate and normalize)
  • Landline SMS attempt: +6834747 to SMS endpoint (should fail with error 21614)

Common Error Codes:

  • 21614: SMS sent to landline (verify recipient has mobile number starting with 1/3/5/6)
  • 30007: Message filtered by carrier (review content for spam triggers)
  • 30008: Unknown destination (verify +683 prefix and number format)
  • 21211: Invalid destination number (check E.164 format compliance)
javascript
try {
    const number = validatePhoneNumber(input);
    if (!number.valid) {
        throw new Error(`Invalid Niue phone number: ${input}`);
    }
    // Process valid number
} catch (error) {
    console.error(`Validation error: ${error.message}`);
    // Handle error appropriately (e.g., display user-friendly message)
}

Frequently Asked Questions (FAQ)

What country is +683?

Country code +683 belongs to Niue, a small island nation in the South Pacific Ocean. When you see a phone number starting with +683, it's from Niue. All international calls to Niue require the +683 country code prefix, followed by a 4-digit local number.

What is the emergency number in Niue?

The emergency number in Niue is 999 (not 911). Dial 999 for police, fire, and ambulance services. Available 24/7, free of charge. Direct emergency contacts: Hospital (4100), Police non-emergency (4333), Fire Rescue (4133).

How many digits are Niue phone numbers?

Niue phone numbers are 4 digits long for local numbers. With the country code, the full international format is +683 followed by 4 digits (e.g., +683 4747). LTE mobile numbers are 7 digits (888XXXX range).

What prefixes do Niue mobile numbers use?

Niue mobile numbers begin with 1 (not 10), 3, 5, or 6. Active mobile prefixes are 5XXX and 6XXX (prepaid GSM 2G). Examples: 5656, 6234, 3456, 1234. This changed with the 2018 numbering plan update.

How do I validate a Niue phone number?

Use regex patterns based on number type. Mobile: /^[13-6]\d{3}$/ after removing +683. Landline: /^[4789]\d{3}$/. Always store numbers in E.164 format (+6834747) for consistency.

Does Niue have international roaming?

No, international roaming is not available in Niue. Telecom Niue has no roaming agreements with overseas operators. Visitors must purchase a local SIM card from Telecom Niue to use mobile services.

Visitor SIM Purchase Guide:

  • Where: Telecom Niue airport kiosk at Hanan Airport (plane arrival days only) or Telecom Niue Office, Alofi Commercial Centre
  • Cost: Visitor SIM NZ$55 (includes SIM, 30 mins local/NZ/AUS calls, 30 SMS, 6 GB data for 14 days); Standard SIM NZ$10
  • Activation: Immediate upon purchase; use Telecom Niue app or dial *888# to check balance
  • Device compatibility: Phone must support Band 28 (700 MHz) 4G VoLTE; incompatible devices can use MiFi rental (NZ$50 + NZ$80 refundable bond)

Source: Niue Pocket Guide

What 4G LTE band does Niue use?

Niue's 4G LTE network operates on Band 28 (700 MHz), common in Australia and New Zealand. Ensure your device supports Band 28 for compatibility with Niue's mobile network.

When did Niue update its numbering plan?

Niue implemented an updated numbering plan effective 1 May 2018. This ITU-approved plan established current number allocations including mobile prefixes 1, 3, 5, 6 and LTE mobile range 8884000–8889999.

How do I dial Niue from the United States?

To call Niue from the United States, dial 011 683 followed by the 4-digit local number. Example: 011 683 4747. Here's the breakdown: 011 is the US international exit code, 683 is Niue's country code, and 4747 is the local phone number. From a mobile phone, you can also dial +683 4747 directly.

What special service numbers does Niue have?

Niue special services: Operator Assistance (010), Faults & Directory Service (015), Weather & Tidal Information (101). LTE mobile services use the 8884000–8889999 range for 7-digit prepaid mobile numbers.


Keeping Up-to-Date

Telecom Niue continues developing and improving infrastructure. Refer to their official website and ITU numbering plan documentation for updates on numbering plans, network capabilities, and service offerings. The current numbering plan became effective 1 May 2018. Stay informed to ensure your applications remain compatible and optimized.

Additional Resources