phone number standards

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

Guernsey Phone Numbers: Format, Area Code & Validation Guide

Learn how to format, validate, and integrate Guernsey phone numbers into your application. This comprehensive guide covers the +44 1481 area code, number formatting standards, validation techniques, special service numbers, and developer implementation best practices for Guernsey telecommunications.

Guernsey Phone Numbers: Format, Area Code & Validation Guide

Learn how to format, validate, and integrate Guernsey phone numbers into your application. This comprehensive guide covers the +44 1481 area code, number formatting standards, validation techniques, special service numbers, and developer implementation best practices for Guernsey telecommunications.

Guernsey Phone Number Format and Area Codes

Guernsey uses the +44 international dialing code and follows the UK's National Telephone Numbering Plan. The dedicated area code for Guernsey is 1481, which distinguishes it from UK mainland numbers.

Number TypeFormatExample
Landline+44 1481 XXXXXX+44 1481 234567
Mobile+44 7XXX XXXXXX+44 7781 123456

Note: Mobile prefixes include 7781, 7839, and 7911.

How to Validate Guernsey Phone Numbers

Validating Guernsey phone numbers prevents delivery failures, reduces errors, and ensures accurate routing for SMS and voice services. Use this JavaScript validation function for both landline and mobile numbers:

javascript
const validateGuernseyNumber = (number) => {
  const cleanedNumber = number.replace(/\s/g, ''); // Remove whitespace
  if (cleanedNumber.match(/^\+441481\d{6}$/)) {
    return { valid: true, type: 'landline' };
  } else if (cleanedNumber.match(/^\+447[7-9]\d{2}\d{6}$/)) {
    return { valid: true, type: 'mobile' };
  } else {
    return { valid: false, type: null };
  }
};

// Example usage:
console.log(validateGuernseyNumber('+44 1481 234567')); // { valid: true, type: 'landline' }
console.log(validateGuernseyNumber('+447781123456')); // { valid: true, type: 'mobile' }
console.log(validateGuernseyNumber('+44 1234567890')); // { valid: false, type: null }

This validation function checks the number format and identifies whether it's a landline (+44 1481) or mobile (+44 7xxx) number. Always handle invalid numbers gracefully by providing clear error messages to users.

Guernsey Special Service Numbers and Emergency Dialing Codes

Guernsey provides access to emergency services, directory assistance, and value-added services through specific dialing codes.

Emergency Numbers in Guernsey

  • 999 or 112: Emergency services (police, fire, ambulance). Use only for genuine emergencies.
  • 01481 725111: Police non-emergency line. Contact for situations requiring police assistance without immediate danger.

Other Important Services

Directory and Information Services

Premium Rate and Value-Added Service Numbers

Guernsey supports value-added services and shortcodes aligned with UK standards:

  • 2580XX: Information services
  • 159XX: Banking services
  • 1622XX: Weather updates
  • 1623XX: Traffic information
  • 09XXXX: Premium-rate services

Contact your service provider for specific shortcode details and premium-rate pricing.

Guernsey Telecommunications Providers and Networks

Two major telecom operators provide mobile, landline, and broadband services in Guernsey:

ProviderServicesNotable Features
Sure GuernseyMobile, landline, broadband, business solutionsOperating since 1898; fiber-optic rollout in progress
JT GlobalMobile, broadband, international connectivityModern digital services

Voicemail Access Codes and Setup

Both Sure and JT offer voicemail services for landlines and mobiles. Contact your provider for specific access codes and setup instructions.

Developer Guide: Integrating Guernsey Phone Numbers

Number Portability in Guernsey

Mobile number portability allows users to switch providers while keeping their existing Guernsey phone number. The porting process typically takes 5 business days, though complex cases may take longer. The Office of the Telecommunications Adjudicator (OTA) oversees number portability regulations in Guernsey.

Best Practices for Integrating Guernsey Numbers

  • Implement robust error handling: Manage invalid numbers, service disruptions, and edge cases.
  • Use provider-specific APIs: Integrate SMS messaging, call routing, and number lookup with proper authentication.
  • Plan fallback options: Implement alternative mechanisms for service disruptions.
  • Test emergency routing: Verify emergency number routing (999/112) works reliably.
  • Ensure cross-border compatibility: Handle international dialing codes and UK formatting standards.

Guernsey Phone Call and SMS Pricing

Telecommunications costs in Guernsey vary by provider and service type. Typical starting rates:

ServiceStarting Rate
Local calls£0.02/minute
Mobile calls£0.10/minute
SMS messages£0.05/message
Data servicesPackage-dependent
Premium servicesHigher charges apply

Consult your service provider's current rate card for detailed pricing information.

For the most up-to-date implementation details, API documentation, and telecommunications guidelines, refer to official provider resources from Sure Guernsey and JT Global.