Check Digit Validator

← All formats

IBAN check digit validator

Move the first 4 characters (country code + check digits) to the end, convert every letter to a number (A=10 ... Z=35), and require the resulting number mod 97 to equal 1. The total length is fixed per country — this tool refuses country codes it doesn't have a registered length for rather than guessing.

DE89370400440532013000 is a valid IBAN: the check digits match.

A passing checksum only proves the number is arithmetically self-consistent. It does not prove an IBAN names an open account, an ISBN is assigned to a real book, or a card is active, unstolen, or has funds. Those require asking the bank, the ISBN registry, or the card network.

Try it: a valid example · a broken example

curl 'https://check-digit.gumballtools.com/api/v1/run?input=DE89%203704%200044%200532%200130%2000&format=iban'