Generate state-format US license plates
US license plates do not share one format — each state’s DMV runs its own scheme. This tool emits plate strings that match a chosen state’s current passenger-plate pattern, with random characters in each position, so they pass front-end format checks for vehicle, parking, tolling, and fleet apps without ever matching a registered vehicle.
How it works
Each state pattern is described as a sequence of slots: a digit slot (0–9) or a letter slot (A–Z). For example:
- California —
1ABC234: digit, three letters, three digits. - New York —
ABC-1234: three letters, hyphen, four digits. - Texas —
ABC-1234: three letters, hyphen, four digits. - Florida —
ABC-D12: three letters, hyphen, a letter, two digits.
The generator fills each letter slot from A–Z and each digit slot from 0–9 at random, then inserts the fixed separators. Because every fillable position is random, the full plate is fictional.
Tips and notes
- Generate a batch to test plate-lookup lists, OCR pipelines, and CSV imports.
- Patterns reflect the common current-issue passenger format; older or specialty plates differ.
- A format-correct plate here is not a real registration — never use it against a live enforcement system.
- Pair with the fake address generator to assemble full vehicle-owner test profiles.