If you've ever stared at a contact list full of "415-555-0123", "(415) 555.0123", and "+14155550123" and wondered which one is actually correct, you're in the right place. Every format you see is technically a US phone number, but only some will pass validation in modern systems, route through carriers cleanly, or sync between your CRM and your phone system without breaking.
This guide is the technical reference. We'll cover the +1 country code, the North American Numbering Plan, area code rules, E.164, formatting conventions, regex examples, and the mistakes that quietly corrupt data in CRMs. Bookmark it, share it with your dev team, and stop guessing.
The US phone number format at a glance
A complete US phone number has four parts. Here's how they fit together:
| Component | Digits | Example | Purpose |
|---|---|---|---|
| Country code | 1 | +1 | Routes the call to the NANP region |
| Area code (NPA) | 3 | 415 | Geographic or service-type identifier |
| Central office code (NXX) | 3 | 555 | Carrier's local exchange |
| Line number | 4 | 0123 | Specific subscriber line |
Common ways to write the same number:
- E.164:
+14155550123 - National:
(415) 555-0123 - Hyphenated:
415-555-0123 - Dotted:
415.555.0123 - Spaced:
+1 415 555 0123
All five represent the same line. The format you choose depends on where it's going: humans, databases, or carriers.
Anatomy of a US phone number
+1 country code (the NANP)
The "+1" is shared by 25 countries and territories under the North American Numbering Plan, including the US, Canada, and most of the Caribbean. It's the only country code in the world covering multiple sovereign nations with a unified dialing plan.
That's why a New York number and a Toronto number look identical at the digit level, even though they cross an international border. Both start with +1 and follow the same NPA-NXX-XXXX pattern.
Area code (NPA) — 3 digits
Area codes have strict rules baked into the NANP:
- The first digit must be 2-9 (never 0 or 1)
- The second and third digits can be 0-9
- Codes ending in 11 (211, 311, 411, 511, 611, 711, 811, 911) are reserved for special services
- Codes starting with the same digit repeated three times (like 800, 888, 877, 866, 855, 844, 833) are toll-free
That gives roughly 800 valid geographic NPAs. Some are tied to a city or region (212 = Manhattan, 415 = San Francisco). Others are toll-free or non-geographic (500 for personal, 900 for premium). For a deeper look at toll-free, local, and mobile options, see our overview of US phone numbers.
Central office code (NXX) — 3 digits
The NXX follows the same first-digit rule: it must start with 2-9. The second digit can be anything 0-9, and the third digit can be anything 0-9 (with one historical exception around N11 codes).
The "555" prefix in our examples is reserved for fictional use, which is why you see it in movies and documentation. Real numbers won't use 555-0100 through 555-0199.
Line number — 4 digits
The last four digits identify the specific subscriber line within a central office. Any combination 0000-9999 is valid. There are no special rules here.
Formatting conventions

Different audiences expect different formats. Here's the modern playbook:
- Parentheses + hyphen:
(415) 555-0123— the traditional American format, still widely used in print and customer-facing UI. - Hyphens only:
415-555-0123— clean, scannable, the U.S. Web Design System (USWDS) recommendation for federal sites. - Dots:
415.555.0123— popular in marketing materials, but harder for screen readers to parse. - Spaces:
+1 415 555 0123— international convention, friendly for global audiences. - No separators:
4155550123— only for storage or input fields that strip formatting.
The USWDS standard (415-555-0123) is the current best practice for accessibility because screen readers handle hyphens predictably. If you're building a form or a public-facing site, that's the safe choice.
Ready when you are
Protect your business line.
MCM's local numbers ship with verified caller ID and smart call filtering — customers always know it's really you, and spam never reaches your team.
E.164 format for US numbers

E.164 is the international standard maintained by the ITU. It defines a single canonical format every modern phone system uses internally:
+14155550123
That's a plus sign, the country code, then the national number with no spaces or punctuation. E.164 numbers max out at 15 digits worldwide. US numbers always come in at exactly 12 characters including the plus.
Why does this matter? Because every serious telecom platform — Twilio, your VoIP provider, your CRM's phone field — stores numbers in E.164. If you store anything else, you'll spend the rest of your life writing conversion logic to handle "(415) 555-0123" vs. "415.555.0123" vs. "1-415-555-0123". Pick E.164 and never look back.
How to format US phone numbers in CRMs and databases

A practical rule: store one way, display another.
- Storage: always E.164 (
+14155550123). One field, one format, no exceptions. - 画面: ヘルパー関数を使用して途中でフォーマットします。対象者に合った形式を選択してください。フォームには USWDS ハイフン、請求書には括弧を使用します。
- 入力: ユーザーが入力した形式を受け入れ、保存する前に E.164 に正規化します。
CRM で電話番号フィールドの種類を設定できる場合は、それを使用してください。 Salesforce、HubSpot、およびほとんどの最新ツールには、正規化を自動的に処理するネイティブ電話フィールドがあります。プレーン テキスト フィールドに行き詰まっている場合は、数字と先頭のプラスを除くすべてを削除する小さなノーマライザーを作成します。
Validation regex examples
単純な正規表現 (一般的な形式をキャッチしますが、厳密ではありません):
^\+?1?[-.\s]?\(?[2-9]\d{2}\)?[-.\s]?[2-9]\d{2}[-.\s]?\d{4}$
平易な英語: オプションのプラスと 1、括弧内にオプションの市外局番、市外局番と中央局コードの両方で始まる 2 ~ 9 の数字。グループ間にはハイフン、ドット、またはスペースを使用できます。
厳密な E.164 正規表現 (正規形式のみを受け入れます):
^\+1[2-9]\d{2}[2-9]\d{6}$
これだけがマッチする +14155550123 スタイル文字列。生のユーザー入力ではなく、正規化後のデータに対して使用します。
Common US phone number format mistakes

- 「1-800」を国番号プレフィックスとして扱う: 1 は国番号、800 はフリーダイヤルの市外局番です。それらは別のフィールドです。
- 市外局番の最初の桁として 0 または 1 を許可する: これは NANP ルールに違反し、番号はルーティングされません。で検証する
[2-9]最初の桁については。 - フォーマットされた数値をデータベースに保存する: 重複レコードが発生します (
(415) 555-0123そして415-555-0123DB とは異なるように見えます)。 - 非表示の空白を含む貼り付けられた数字の処理を忘れる: 電子メールまたは PDF からコピー&ペーストすると、改行しないスペースが挿入されることがよくあります。それらを剥ぎ取ります。
- 米国の論理と国際的な論理の混合: 米国の番号で機能する正規表現は、カナダまたはカリブ海の +1 番号では、形式が共有されている場合でも、通知なく失敗します。
Ready when you are
販売するあらゆる場所でローカルなサウンドを提供する準備はできていますか?
MCM は、コール ルーティング、分析、CRM 対応の統合により、ビジネス番号を数分でアクティブ化します。無料トライアルを開始してください。在庫を閲覧するためのカードはありません。
FAQ
米国の電話番号は常に 10 桁ですか?
はい - 国内の有効番号は常に 10 桁 (市外局番 3 桁 + 中央局 3 桁 + 回線 4 桁) です。 +1 国コードを追加すると、E.164 では 11 桁、つまりプラス記号を付けた 12 文字になります。
+1 は常に必要ですか?
国際ダイヤルまたは E.164 ストレージの場合は、はい。米国内の国内通話の場合は、いいえ、ほとんどの通信事業者は 10 桁の番号のみを受け入れます。ただし、+1 を付けずに番号を保存すると、連絡先が海外に移動したり、海外に拡大したりした瞬間にコンテキストが失われます。
米国とカナダは同じフォーマットを共有していますか?
はい。どちらも NANP の下で +1 国コードを使用し、同じ NPA-NXX-XXXX 構造に従います。番号だけではそれがどの国に属しているかを知ることはできません。市外局番を調べる必要があります。
CRM に電話番号を保存するにはどうすればよいですか?
E.164 (+14155550123)。いつも。これは、統合、輸出、国際展開を経ても壊れることなく生き残る唯一のフォーマットです。
NPA と NXX の違いは何ですか?
NPA は市外局番 (+1 の後の最初の 3 桁) です。 NXX は電話局のコード (次の 3 桁) です。どちらも、最初の数字は 2 ~ 9 でなければならないというルールに従います。
フリーダイヤル番号の形式は異なりますか?
いいえ、同じ 10 桁の NPA-NXX-XXXX パターンに従います。唯一の違いは市外局番自体です。800、888、877、866、855、844、および 833 はフリーダイヤル サービス用に予約されています。
Get a US number that follows every standard
ビジネスに米国の電話番号 (市内電話、フリーダイヤル、またはその両方) が必要な場合、My Country Mobile はすべての州で E.164 準拠の番号を提供し、拡張する準備ができたら 100 か国以上で仮想番号を利用できます。プランはユーザーあたり月額 12 ドルから始まり、契約は不要で、99.99% の稼働率が 17,500 以上の企業から信頼され、G2 で 4.8/5 の評価を受けています。






