Boneyard Tools

VIN Validator and Check Digit Calculator

Paste a Vehicle Identification Number to check whether it passes the ISO 3779 check digit. The tool computes the check digit at position 9, decodes the model year from position 10, and shows the manufacturer code, all locally in your browser.

How to validate a VIN

  1. Type or paste the 17-character VIN. Letters are uppercased automatically.
  2. See the valid or invalid badge update with the reason and the computed check digit.
  3. Review the decoded manufacturer (WMI) and model year, then copy the cleaned VIN.

Examples

A valid VIN

1HGCM82633A004352
valid: true, checkDigit: 3, wmi: 1HG, modelYear: 2003

A VIN with the wrong check digit

1HGCM82643A004352
valid: false, computedCheckDigit: 3

Frequently asked questions

What does this VIN validator check?

It checks the structure defined by ISO 3779: the VIN is exactly 17 characters, contains only the allowed letters and digits, and its check digit at position 9 matches the value computed from the other 16 characters. A valid result means the VIN is well-formed, not that a vehicle with that VIN exists.

How is the VIN check digit calculated?

Each character is converted to a number using the standard transliteration table (A=1, B=2, and so on, skipping I, O and Q), then multiplied by a positional weight. The weighted values are summed and reduced modulo 11. A remainder of 10 is written as the letter X. That result is the check digit and belongs in position 9.

Why are the letters I, O and Q not allowed?

VINs deliberately exclude I, O and Q because they are easily mistaken for the digits 1, 0 and 0. If your VIN appears to contain one of these letters, it is almost certainly a misread digit. The validator rejects any VIN that includes them.

How is the model year decoded?

Position 10 of the VIN encodes the model year on a repeating 30-year cycle of letters and digits. Because the same code repeats every 30 years, the tool maps it to the most recent plausible year. The manufacturer code (WMI) is the first three characters.

Is my VIN sent anywhere?

No. All validation runs locally in your browser using client-side JavaScript. The VIN you enter is never uploaded, logged, or stored, so it never leaves your device.

Related tools