US Passport Number Validator
us-financeValidate a US passport number format instantly. Checks for the correct 9-character alphanumeric structure used on US passport books and cards. Free, client-side.
What is a US Passport?
The US Passport Number Validator checks whether a US passport number follows the correct 9-character alphanumeric format used on US passport books and cards. It verifies the length, confirms the number starts with a letter (as all US passport numbers do), and checks that only valid characters (AโZ, 0โ9) are present.
US passport book numbers are 9 characters: typically a letter followed by 8 digits (e.g. A12345678), though some newer books may begin with two letters. US passport card numbers also follow the 9-character format and start with the letter C. Both are issued by the US Department of State and appear on the data page of the document and in the Machine Readable Zone (MRZ).
The format check is a useful first-pass filter in travel, immigration, and identity verification forms โ catching transpositions, short entries from partial copies, and entries made from OCR-scanned documents that introduced incorrect characters.
What this validator checks: exactly 9 characters, first character is a letter (AโZ), all remaining characters are letters or digits (no spaces, hyphens, or special characters).
What it does not check: Whether the passport was actually issued, is currently valid, or belongs to a specific person. Format validation only โ the State Department does not expose a public passport verification API.
For related US identity document validation, see the SSN Validator and DUNS Number Validator.
All validation is client-side. No data is transmitted.
How to use this US Passport calculator
- Enter the passport number in the input field โ 9 characters, uppercase letters and digits.
- Check the Valid/Invalid badge โ updates instantly.
- Read the details โ character count and likely document type (book or card).
- If entering on behalf of someone: verify against the physical document to avoid OCR transcription errors.
- Note: passport card numbers (starting with C) are not valid for international air travel.
- Related tools: use the SSN Validator for Social Security numbers.
Formula & Methodology
Format rules: - Exactly 9 characters - First character: uppercase letter (AโZ) - Remaining 8 characters: uppercase letters (AโZ) or digits (0โ9) - Regex:/^[A-Z][A-Z0-9]{8}$/Likely document type by first character: | First character | Likely document | |---|---| | C | US Passport Card | | Other letter | US Passport Book | Valid and invalid examples: | Input | Valid? | Note | |---|---|---| |A12345678| โ | 9 chars, starts with letter | |C98765432| โ | Likely passport card | |AB1234567| โ | Two letters, valid format | |A1234567| โ | Only 8 characters | |123456789| โ | Starts with digit | |A1234567!| โ | Invalid special character |
Frequently Asked Questions