- Which formats does it check?
- ISBN-10 and ISBN-13 (book identifiers), IBAN (international bank accounts), and generic Luhn-validated numbers (credit cards, SSNs for some countries).
- Does it check if the account exists?
- Only the checksum — that the number's structure is internally consistent. For IBAN routing or credit-card authorization, you'd need to call the bank/processor.
- What about ISBN-10 to ISBN-13 conversion?
- Toggle to convert. ISBN-13 is the current standard (since 2007); ISBN-10 is legacy but still present on older books.
- Is Luhn the same as IBAN's check?
- Different algorithms. Luhn is a single-digit mod-10 check; IBAN uses a mod-97 check across the whole string. The tool picks the right one for each format.