UUID Validator
Validate UUID format and inspect version, variant, and embedded timestamps.
Check the format and mod-97 checksum of an International Bank Account Number (IBAN).
This tool instantly checks whether an IBAN (International Bank Account Number) has a valid format and a matching mod-97 checksum. It’s useful for catching typos before an international transfer, or for verifying validation logic while building a system.
This tool only confirms that an IBAN is formally well-formed — it does not guarantee the account actually exists. Always verify account details through a bank or transfer service before sending money.
An IBAN (International Bank Account Number) is a standardized format for bank account numbers used in international transfers. Defined by ISO 13616, it consists of a 2-letter country code, 2-digit check digits, and a BBAN (the domestic account number portion).
It's a validation method for catching typos in an IBAN (ISO 7064 MOD 97-10). The first 4 characters are moved to the end, letters are converted to numbers (A=10, B=11, ..., Z=35), and the resulting number is valid if it leaves a remainder of 1 when divided by 97.
No. This tool can only verify that the format is correct and the checksum matches. Confirming that an account actually exists requires checking through a bank or the SWIFT network.
No. Validation happens entirely in your browser — nothing is sent externally.