phone number standards

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

Jersey Phone Numbers: Complete Format, Area Code & Validation Guide

Master Jersey phone numbers with our complete developer guide: +44 1534 area code format, validation regex, international dialing procedures, and number portability implementation for telecom applications.

Jersey Phone Numbers: Complete Format, Area Code & Validation Guide

Jersey phone numbers use the +44 country code with the distinctive 01534 area code for geographic landlines. This comprehensive guide covers Jersey phone number formats, validation patterns, international dialing procedures, and practical integration with the JCRA-regulated telecommunications system for developers and businesses.

Jersey's Telecommunications System

Jersey maintains a distinct telecommunications identity within the British Isles. The Jersey Competition Regulatory Authority (JCRA) regulates the island's telecommunications sector under the Telecommunications (Jersey) Law 2002, while Ofcom (the UK's Office of Communications) manages spectrum allocation and numbering ranges under the Wireless Telegraphy Act 2006 and Communications Act 2003. Understanding this regulatory framework for international telecommunications is essential when implementing Jersey phone number validation.

Jersey's dual regulatory structure requires operators to hold both a JCRA telecommunications license and an Ofcom Wireless Telegraphy (WT) license. When integrating with Jersey telecom services, verify your provider holds valid Jersey licenses. Ofcom allocates numbers exclusively to companies with local JCRA telecoms licenses.

The island uses its own area code (01534) and specific numbering conventions. Three providers operate on the island: JT Global (formerly Jersey Telecom), Sure, and Airtel-Vodafone. As of 2020, JT holds 52% mobile market share, Sure has 23%, and Airtel-Vodafone has 24%. JT dominates broadband with 68% market share (2016). Jersey delivers the world's highest average broadband speeds at 274.27 Mbit/s (as of 2021).

How to Dial Local Numbers Within Jersey

Call Local Landlines

Within Jersey, dial local landline numbers using the shortened format:

  • Short Format (Within Jersey): XXXXXX or XXXXXXX (6–7 digits)
    • Example: 832555

From the UK mainland or internationally, use the full national format:

  • National Format (From UK or International): 01534 XXXXXX
    • Example: 01534 832555

Best Practice: Always store and display Jersey landline numbers in the full national format (including the 01534 area code). This prevents confusion and ensures correct dialing from any location.

Call Mobile Numbers

Jersey mobile numbers follow the standard UK mobile format:

  • Standard Format: 07XXX XXXXXX
    • Example: 07700 912345

Dial the full 10-digit mobile number for both mobile-to-mobile and landline-to-mobile calls. Add a space after the "07" prefix for readability (optional).

Provider-Specific Mobile Prefixes:

Jersey mobile operators use distinct number ranges that help identify the network:

  • JT Global: +44 7797 XXXXXX
  • Sure: +44 7700 XXXXXX
  • Airtel-Vodafone: +44 7829 XXXXXX

Due to mobile number portability, users can retain their numbers when switching providers. Prefixes no longer reliably indicate the current network operator.

How to Make International Calls to and from Jersey

Call Internationally from Jersey

To dial internationally from Jersey:

  1. Dial 00 (the international access code)
  2. Enter the country code (e.g., 44 for UK, 33 for France)
  3. Dial the local number, omitting any leading zero

Examples:

  • UK Mainland: 00 44 1632 960123
  • France: 00 33 1 23 45 67 89
  • Ireland: 00 353 1 234 5678

Common Mistake: Remove the leading zero from the area code when dialing international numbers.

International Call Pricing (as of 2024–2025):

From Jersey landlines, international call rates vary by provider:

VoIP Considerations: When implementing VoIP services for Jersey users, account for Jersey's high-speed fiber infrastructure (average 274 Mbit/s). Verify your VoIP provider recognizes the 01534 area code and routes calls correctly through Jersey's telecommunications network.

Receive International Calls in Jersey

Provide Jersey numbers in international format for incoming international calls:

  • Geographic Numbers: +44 1534 XXXXXX (Example: +44 1534 832555)
  • Mobile Numbers: +44 7XXX XXXXXX (Example: +44 7700 912345)

Best Practice: Store all contacts using the international format (+44) to ensure consistent dialing regardless of your location.

Understanding Jersey Special Number Formats

Jersey follows the UK's special number formats:

  • Freephone: 0800 XXX XXXX and 0808 XXX XXXX (Example: 0800 123 4567) – Customer service and helplines. Ofcom withdrew the older 0500 freephone range on June 5, 2017, migrating numbers to the dedicated 08085 range.
  • Non-Geographic: 03XX XXX XXXX (Example: 0300 123 4567) – Used by businesses and organizations, charged at standard geographic rates
  • Premium Rate: 09XX XXX XXXX (Example: 0900 123 4567) – Pay-per-call services

Ofcom regulates these numbers to maintain pricing and accessibility standards consistent with the UK mainland.

Calling Special Numbers from Jersey:

Pricing for special numbers varies by provider when calling from Jersey:

  • Freephone (0800/0808): Free from both JT and Sure landlines and mobiles
  • Non-Geographic (05/08 excluding 0800/0808): Access charge of 11p/min (Sure landline) or 52.5p/min (Sure mobile), plus the service provider's charge
  • Premium Rate (09XX): Access charge of 40p/min (JT) or 60p/min (Sure mobile), plus the service provider's charge (can range from pence to several pounds per minute)

Developer Note: Two-part charging applies to non-geographic and premium numbers: your network's access charge plus the service provider's charge. Display both components to users for transparency.

How to Validate Jersey Phone Numbers

Number Structure

Jersey phone numbers follow this hierarchical structure:

+44 1534 XXXXXX(X) │ │ └── Subscriber Number (6–8 digits) │ └────── Area Code (1534) └────────── Country Code (44)

Subscriber Number Allocation:

Jersey is part of the UK National Telephone Numbering Plan administered by Ofcom. The geographic fixed line prefix 01534 is allocated specifically for Jersey. Operators apply to Ofcom for Jersey number allocations, available only to companies with a local JCRA telecoms license.

Subscriber numbers contain 6–7 digits for geographic landlines: 01534 XXXXXX or 01534 XXXXXXX. Ofcom manages allocation ranges and distributes them to licensed operators (JT Global, Sure, Newtel) based on capacity requirements.

Important: As of October 2025, Ofcom cannot allocate new Jersey phone numbers without updated legal basis, potentially affecting number availability for new services.

Implement Validation

Use these JavaScript patterns to validate Jersey phone numbers:

javascript
// Validate geographic numbers
const geoPattern = /^(?:1534)\d{6,7}$/;

// Validate mobile numbers with optional formatting
const mobilePattern = /^(?:07\d{3})\s?(\d{3})\s?(\d{3})$/;

// Validate and format Jersey numbers with error handling
function validateJerseyNumber(number) {
  // Input validation
  if (!number || typeof number !== 'string') {
    return {
      isValid: false,
      type: 'invalid',
      error: 'Invalid input: number must be a non-empty string'
    };
  }

  // Remove spaces, dashes, and parentheses
  const cleaned = number.replace(/[\s\-\(\)]/g, '');

  // Remove leading + and country code if present
  const normalized = cleaned.replace(/^\+?44/, '');

  // Remove leading 0 if present (for national format)
  const withoutLeadingZero = normalized.replace(/^0/, '');

  const isGeographic = geoPattern.test(withoutLeadingZero);
  const isMobile = mobilePattern.test(cleaned);

  if (!isGeographic && !isMobile) {
    return {
      isValid: false,
      type: 'unknown',
      error: 'Number does not match Jersey geographic (01534) or UK mobile (07XXX) format'
    };
  }

  return {
    isValid: true,
    type: isGeographic ? 'geographic' : 'mobile',
    formatted: formatJerseyNumber(withoutLeadingZero, isGeographic),
    international: formatInternational(withoutLeadingZero, isGeographic)
  };
}

// Format numbers for display
function formatJerseyNumber(cleaned, isGeographic) {
  if (isGeographic) {
    // Format: 01534 XXXXXX
    return `01534 ${cleaned.slice(4)}`;
  }
  // Format mobile: 07XXX XXX XXX
  return `${cleaned.slice(0, 5)} ${cleaned.slice(5, 8)} ${cleaned.slice(8)}`;
}

// Format in international E.164 format
function formatInternational(cleaned, isGeographic) {
  if (isGeographic) {
    return `+44 1534 ${cleaned.slice(4)}`;
  }
  return `+44 ${cleaned}`;
}

// Example usage with edge cases
console.log(validateJerseyNumber('832555'));           // Local format
console.log(validateJerseyNumber('01534 832555'));     // National format
console.log(validateJerseyNumber('+44 1534 832555')); // International format
console.log(validateJerseyNumber('07700 912345'));     // Mobile
console.log(validateJerseyNumber(''));                 // Error: empty input
console.log(validateJerseyNumber('12345'));            // Error: invalid format

Best Practice: Use a dedicated phone number validation library or API for comprehensive validation. Real-time validation services handle number portability, edge cases, and provide accurate number status and formatting across different countries and international phone number formats.

Common Use Cases for Jersey Phone Numbers

Business Applications

Build applications that handle Jersey phone numbers:

  • Customer Registration: Validate and store numbers in international format (+44 1534 XXXXXX)
  • SMS Verification: Use Jersey-compatible SMS providers that support the +44 country code
  • Call Routing: Implement routing logic for Jersey's unique area code
  • Contact Management: Display numbers in the appropriate format based on user location

Implementation Example (Node.js):

javascript
const libphonenumber = require('libphonenumber-js');

function processJerseyPhoneNumber(input, userCountry = 'JE') {
  try {
    // Parse with Jersey as default country
    const phoneNumber = libphonenumber.parsePhoneNumber(input, userCountry);

    if (!phoneNumber) {
      throw new Error('Invalid phone number format');
    }

    // Validate the number
    if (!phoneNumber.isValid()) {
      throw new Error('Phone number failed validation');
    }

    // Store in E.164 format for database
    const e164Format = phoneNumber.format('E.164');

    // Display format based on context
    const nationalFormat = phoneNumber.formatNational();
    const internationalFormat = phoneNumber.formatInternational();

    return {
      stored: e164Format,           // +441534832555
      display: nationalFormat,       // 01534 832555
      international: internationalFormat // +44 1534 832555
    };
  } catch (error) {
    console.error('Phone validation error:', error.message);
    return null;
  }
}

E-commerce and Booking Systems

  • Store all Jersey phone numbers with the full international prefix
  • Validate numbers before processing orders or reservations
  • Provide country code selectors that correctly identify Jersey (+44 1534)
  • Test international calling features with Jersey numbers

Common Integration Issues & Solutions:

  1. Issue: Country selector shows "United Kingdom" but Jersey isn't listed separately

    • Solution: Jersey uses UK country code (+44) but needs area code validation. Add Jersey-specific validation for 01534 prefix.
  2. Issue: SMS delivery failures to Jersey mobile numbers

    • Solution: Jersey mobiles use UK 07XXX format. Verify your SMS gateway supports UK routes and doesn't filter Jersey as a separate country.
  3. Issue: Form validation rejects Jersey numbers as invalid UK numbers

    • Solution: Update regex to include 01534 as valid UK geographic code. Use libraries like libphonenumber-js that recognize Jersey.
  4. Issue: Incorrect call routing or expensive routing charges

    • Solution: Configure SIP trunks to recognize 01534 as Jersey-specific routing. Verify with your carrier that Jersey has the correct rate card entry.

CRM and Communication Platforms

  • Configure phone systems to recognize 01534 as a valid UK area code
  • Set up caller ID display for Jersey numbers
  • Verify VoIP systems route calls to Jersey correctly
  • Implement click-to-call functionality with international prefixes

How Number Portability Works in Jersey

Jersey's number portability system lets users switch providers while keeping their existing number. The JCRA mandated Mobile Number Portability (MNP) implementation in 2006, requiring operators to use a centralized database solution. Build systems that interact with Jersey phone numbers:

  • Verify number status through authorized APIs
  • Don't assume the provider based on number prefix
  • Implement routing based on real-time number status
  • Allow time for porting processes to complete

Technical Implementation:

Jersey uses a centralized database approach for number portability. The JCRA directed operators in 2006 to implement MNP using a centralized database that all operators query to determine the current network operator for each number.

How MNP Works in Jersey:

  1. Customer Initiates: Customer requests to port their number to a new operator (recipient operator)
  2. Database Query: Recipient operator queries the centralized MNP database to verify number status
  3. Porting Coordination: Operators coordinate the transfer through the centralized system
  4. Database Update: Central database updates with new operator assignment
  5. Call Routing: All operators query the database for each call to route correctly

For Developers:

  • Number Lookup Services: Use HLR (Home Location Register) lookup APIs to query the current operator for Jersey mobile numbers
  • Don't Cache Long-Term: Number-to-operator mappings change. Refresh lookups regularly or use real-time APIs
  • Handle All Prefixes: JT (7797), Sure (7700), and Airtel-Vodafone (7829) numbers can port to any operator
  • Test Ported Numbers: Include ported numbers in test scenarios to verify routing works correctly

Porting Timeframes: The JCRA doesn't publicly document specific completion timeframes for Jersey MNP, but the process typically completes within a few business days, similar to UK standards.

Future Developments in Jersey Telecommunications

Jersey's telecommunications sector continues to evolve under JCRA oversight:

  • Telecommunications Security Rules: In 2024, JCRA proposed new security obligations for public communications providers, mandating proactive measures to prevent, detect, and respond to security incidents.

  • Number Allocation Challenges: As of October 2025, Ofcom cannot issue new Jersey phone numbers without updated legal basis, requiring Jersey to update telecommunications law to enable continued number allocations.

  • 5G Deployment: All three mobile operators (JT, Sure, Airtel-Vodafone) have deployed 4G networks. 5G rollout is expected to follow UK spectrum allocation decisions by Ofcom.

Track JCRA announcements, Ofcom updates, and provider notices to maintain compatibility and leverage new capabilities.

Frequently Asked Questions

What is Jersey's country code?

Jersey uses country code +44 (shared with the United Kingdom) with the distinct area code 01534 for geographic landline numbers.

What is the area code for Jersey?

The area code for Jersey is 01534. From outside Jersey, dial +44 1534 followed by the 6–7 digit subscriber number. Within Jersey, dial only the local number.

How do I call Jersey from the United States?

Dial 011 44 1534 [subscriber number]. Example: 011 44 1534 832555. Format: 011 (US exit code) + 44 (UK country code) + 1534 (Jersey area code) + local number.

Are Jersey phone numbers the same as UK numbers?

Jersey uses the UK country code (+44) but has a unique area code (01534). Mobile numbers (07XXX) are indistinguishable from UK mobile numbers.

How do I format a Jersey phone number?

Local format: 832555. National format: 01534 832555. International format: +44 1534 832555. Always store in international format (+44 1534) for consistency.

Can I keep my number when switching Jersey phone providers?

Yes. Jersey supports mobile number portability regulated by JCRA since 2006, allowing you to keep your number when switching telecom providers using a centralized database system.

Do Jersey mobile numbers differ from UK mobile numbers?

No. Jersey mobile numbers use the identical UK mobile format (07XXX XXXXXX) and are indistinguishable from UK mainland mobile numbers. Specific prefixes like 7797 (JT), 7700 (Sure), and 7829 (Airtel-Vodafone) help identify the original operator, but numbers can be ported.

What are Jersey's emergency numbers?

Dial 999 or 112 for emergencies in Jersey. Both numbers connect to emergency services (police, fire, ambulance) from any phone on the island, including mobiles without SIM cards.

Quick Reference

DetailValue
CountryJersey
Country Code+44
International Prefix00
National Prefix0
Area Code1534
Regulatory AuthorityJCRA (Jersey Competition Regulatory Authority)
Spectrum & NumberingOfcom (UK)
Key ProvidersJT Global (52%), Sure (23%), Airtel-Vodafone (24%)
Mobile PrefixesJT: 7797, Sure: 7700, Airtel-Vodafone: 7829
Number Length10–11 digits (with country code)
Emergency Numbers999, 112
Number PortabilityYes (centralized database, since 2006)