Status
Invalid
Validate IBAN values using format checks and official mod-97 checksum.
Status
Invalid
Country
-
Details
Enter an IBAN to validate.
The validator checks country code/length rules, reorders the IBAN, converts letters to numbers, and computes mod-97. A valid IBAN returns remainder 1.
reordered = iban[4..] + iban[0..4]
numeric = A->10 ... Z->35
valid if numeric % 97 == 1This validates structure and checksum, not ownership or account availability.
Example: DE89 3704 0044 0532 0130 00 is a commonly used valid-format sample for checksum tests.
Each IBAN country has a fixed length; mismatches are invalid immediately.
No. It validates format and checksum only.
Yes. Spaces are normalized before processing.
These numbers are randomly generated and intended for testing purposes only.