1. Clean the input
Remove spaces, parentheses and hyphens while preserving the digits and country context.
+33 test data
Generate France phone number examples for development, QA, input masks and documentation. Results are not live subscriber lines.
| Calling code | +33 |
|---|---|
| National pattern | 06 xx xx xx xx |
| E.164 example | +33639981234 |
| Typical length | 9 national digits after +33 |
Remove spaces, parentheses and hyphens while preserving the digits and country context.
Remove the leading domestic 0 before adding +33.
Use +33639981234 for machine storage and format it for display at the edge of your application.
| Case | Fixture | Expected test behavior |
|---|---|---|
| National display | 06 xx xx xx xx | Accept punctuation, then normalize. |
| Valid E.164 structure | +33639981234 | Accept for format testing; do not infer reachability. |
| Invalid length | +3363998123 | Reject before storing or sending to an API. |
Manually reviewed country notes
French national display uses a leading 0, while international storage removes that trunk digit and adds +33. This page uses a mobile-shaped 06 example and does not claim that every 06 or 07 value is assigned or reachable.
The fixture is reviewed against Arcep numbering material, but it is not a guaranteed fictional subscriber line. Keep it out of messaging, calling and account-verification workflows.
Remove the domestic zero before adding +33.
Keep nine national digits after +33.
Treat format, current allocation and reachability as separate claims.
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 |
|---|---|---|
06 39 98 12 34 | +33639981234 | Remove the domestic trunk zero |
+33 6 39 98 12 34 | +33639981234 | Normalize an international input |
0033 6 39 98 12 34 | +33639981234 | Convert an international access prefix |
06 39 98 12 3 | Reject | One digit short |
+33639981234 | Structure only | Do not infer assignment or consent |
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.
+33 is the international country calling code for France. 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 Arcep national numbering plan 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.
Advertisement