1. Clean the input
Remove spaces, parentheses and hyphens while preserving the digits and country context.
+90 test data
Generate Turkey phone number examples for development, QA, input masks and documentation. Results are not live subscriber lines.
| Calling code | +90 |
|---|---|
| National pattern | 05xx xxx xx xx |
| E.164 example | +905321234567 |
| Typical length | 10 national digits after +90 |
Remove spaces, parentheses and hyphens while preserving the digits and country context.
Remove the leading domestic 0 before adding +90.
Use +905321234567 for machine storage and format it for display at the edge of your application.
| Case | Fixture | Expected test behavior |
|---|---|---|
| National display | 05xx xxx xx xx | Accept punctuation, then normalize. |
| Valid E.164 structure | +905321234567 | Accept for format testing; do not infer reachability. |
| Invalid length | +90532123456 | Reject before storing or sending to an API. |
Manually reviewed country notes
Turkish mobile display uses domestic 05xx. E.164 removes the first zero, adds +90 and keeps ten national digits after the country code, as in +90 532 123 45 67.
BTK's numbering plan identifies mobile ranges but does not provide a general fictional number for this tool. The value may be assigned and is restricted to offline testing.
Convert domestic 0532 to international +90 532.
Keep ten national digits after +90.
Do not infer operator or current allocation from formatting alone.
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 |
|---|---|---|
0532 123 45 67 | +905321234567 | Remove the domestic trunk zero |
+90 532 123 45 67 | +905321234567 | Normalize punctuation |
0090 532 123 45 67 | +905321234567 | Convert an access prefix |
+90 0532 123 45 67 | Reject or repair | The trunk zero follows +90 |
0532 123 45 6 | Reject | One digit short |
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.
+90 is the international country calling code for Turkey. 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 BTK 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.