Tested tool guide
Tested browser tools
Checked August 16, 2026
What IBAN Validator does, with a checked example
IBAN Validator determines whether an International Bank Account Number is structurally plausible for its stated country. It reads the first two letters as the country code, checks the country's required IBAN length and character pattern, and tests the two check digits using the IBAN MOD 97-10 calculation. A valid result means the identifier is internally consistent. It does not mean the account exists, remains open, accepts a particular payment, or belongs to the intended recipient. That distinction is the most important limitation when interpreting the result.
Worked example
A concrete input and expected output from the current implementation.
Input
GB82WEST12345698765432
->
Expected output
Valid IBAN
Moving GB82 to the end and converting letters to numbers, with A = 10 through Z = 35, produces 3214282912345698765432161182. This number leaves remainder 1 when divided by 97, and the 22-character value also matches the GB IBAN structure.