1. Clean the input
Remove spaces, parentheses and hyphens while preserving the digits and country context.
+86 test data
Generate China phone number examples for development, QA, input masks and documentation. Results are not live subscriber lines.
| Calling code | +86 |
|---|---|
| National pattern | 1xx xxxx xxxx |
| E.164 example | +8613012345678 |
| Typical length | 11 mobile digits |
Remove spaces, parentheses and hyphens while preserving the digits and country context.
Keep the 11-digit mobile number and add +86; no trunk zero is removed.
Use +8613012345678 for machine storage and format it for display at the edge of your application.
| Case | Fixture | Expected test behavior |
|---|---|---|
| National display | 1xx xxxx xxxx | Accept punctuation, then normalize. |
| Valid E.164 structure | +8613012345678 | Accept for format testing; do not infer reachability. |
| Invalid length | +861301234567 | Reject before storing or sending to an API. |
Manually reviewed country notes
The mobile-shaped fixture on this page has eleven national digits beginning with 1. International E.164 storage adds +86 before the complete eleven-digit value; there is no domestic trunk zero to strip from this contract.
The MIIT source describes numbering resources but does not provide a general fictional mobile range for these examples. A plausible value may be assigned, so calls, messages and account verification must remain disabled.
Keep all eleven mobile digits after +86.
Do not invent a leading zero when converting national input.
Separate structural parsing from allocation, carrier and reachability checks.
These cases document the fixture contract used by GetPhoneNum. They test parsing and normalization only; they never prove that a subscriber exists.
| Input | Expected result | Reason |
|---|---|---|
130 1234 5678 | +8613012345678 | Add +86 to eleven national digits |
+86 130 1234 5678 | +8613012345678 | Normalize punctuation |
0086 130 1234 5678 | +8613012345678 | Convert an access prefix |
1301234567 | Reject | One national digit short |
+8613012345678 | Structure only | Do not infer subscriber status |
Reviewed by GetPhoneNum Editorial Team · Last reviewed August 11, 2026
Test empty input, pasted punctuation, a missing country code, one digit too few and one digit too many. Avoid using a single global regex for every country.
Test a JavaScript regexStore a normalized E.164 value and keep display formatting separate. Try the E.164 formatter or structural validator.
Numbering plans change. Use a maintained numbering library and treat carrier, line type and reachability as separate checks.
Browse calling-code referencesRelated generators and tools
They are generated test fixtures, not verified subscriber lines. Even a structurally valid value may coincide with an assigned number unless it comes from an officially reserved fictional range.
+86 is the international country calling code for China. In E.164 format it appears after the leading plus sign and before the national number.
No capability is provided or verified. Do not call, text or use generated values for account verification.
Numbering rules can change. Check the MIIT numbering resource system before enforcing production rules.
Create up to 100 local fixtures in the browser, download the open dataset, or use the API design reference to define a deterministic contract for automated test suites.