功能开发中
IBAN验证器和解析器
验证和解析国际银行账号。
验证结果
请输入 IBAN 账号并点击验证按钮
IBAN 解析
IBAN 解析结果将显示在这里
IBAN 格式示例
德国 (DE): DE44500105170445678901
法国 (FR): FR7630006000011234567890189
英国 (GB): GB29NWBK60161331926819
意大利 (IT): IT60X0542811101000000123456
关于 IBAN
国际银行账号 (IBAN) 是一个国际标准的银行账户标识符,用于跨境支付。
IBAN 结构:
- 国家代码: 2位字母 (如 DE, FR, GB)
- 校验位: 2位数字
- 银行代码: 由国家决定
- 账户号码: 由国家决定
IBAN 最大长度为34个字符,包含字母和数字。
使用教程
- 在输入框 (input field / textarea) 粘贴或键入完整的 IBAN 号码字符串 (paste or type the complete IBAN string)
- 点击 "验证 IBAN" (Validate IBAN) 按钮 (button click trigger) 或启用 自动模式(auto-validate on input event) 输入时即触發 (triggers on every keystroke/input event)
- 查看 验证结果面板 (validation result panel) 三色状态指示灯 (traffic-light style indicator):
- 有效 IBAN 的下方还展示 辅助信息 (auxiliary information panel):
使用场景
- 跨境 SEPA 电汇款 (SEPA Cross-Border Credit Transfer):个人用户 (individuals) 在进行欧洲单一付款区域 (SEPA zone) 内的跨国转账 (international remittance / cross-border wire transfer) 前核实收款人 (beneficiary/payee) 的 IBAN 正确性 (correctness) 避免转错钱到错误账户 (wrong account misdirection risk mitigation)。
- 金融系统开发 (Fintech System Development):支付网关 (payment gateway) / 核心账务系统 (core banking ledger) / 电子钱包 (e-wallet/digital wallet) 的 IBAN 输入前端校验逻辑 (frontend input validation logic component) —— 在表单提交 (form submission) 前做第一道防线 (first line of defense / client-side validation) 减少无效请求 (reduce invalid requests hitting the backend) 降低服务器负载。
- 合规 KYC 审计 (Compliance KYC Audit):金融机构 (financial institutions / banks / fintechs) KYC Know Your Customer 客户身份识别程序 (identity verification program IIP / CDD / EDD enhanced due diligence) 中客户提供的银行账户信息 (bank account details) 的 格式合规性检查 (format compliance checking / validation) —— 确保 IBAN 符合 ISO 13616 标准 (standard-compliant) 且未被篡改 (not tampered with).
- ERP 系统 SAP Integration:SAP S/4HANA / Oracle Fusion Applications / Microsoft Dynamics 365 Finance 等 企业资源计划 (Enterprise Resource Planning) 系统 中供应商 (vendor/supplier) IBAN 数据的字段批量校验 (bulk field-level validation) 和数据清洗 (data cleansing / ETL extract-transform-load pipeline)。
- 电商平台集成 (E-commerce Platform Integration):WooCommerce / Magento / Shopify / PrestaShop 等开源电商平台的 IBAN 支付方式插件 (payment method plugin / SEPA Direct Debit / Stripe Connect) 配置时验证商户 IBAN 合法性。
- 会计师事务所审计 (Accounting Firm Audit):核对企业 (enterprise company) 银行账户信息 (bank account records / ledger entries) 的准确性 (accuracy) 和规范性 (compliance) —— 特别是欧洲子公司的 EUR 账户记录 (EUR ledger entries)。
常见问题
Q: IBAN 最多有多少位?各国家的 IBAN 长度是多少?
A: 不同国家 (different countries) 的 IBAN 长度 (length varies): - 最短 (shortest): 挪威 Norway NO 15 位 (characters) - 常见范围 (common range): 20-27 位 (大多数欧洲国家) - 最长 (longest): 马尔他 Malta MT 31 位 (characters) - 工具内置了 70+ 国家/地区 (countries/regions) 的长度规则 (length rule database) 包括全部 SEPA 成员国 (SEPA member states) 和多数主要非 SEPA 国家。
Q: Mod-97 校验原理 (How does the Mod-97 checksum work)? What's the math?
A: 基于 ISO 13616 (Information technology — Security techniques — Part 1: General) 标准 (standard specification) 定义: 1. 重排 (Rearrange): 将 IBAN 的前 4 个字符(first 4 characters) 移动到末尾 (end of string) —— 即将国家代码+前两位校验位移到最右边 2. 替换替换 (Replace): 将所有大写字母 (uppercase letters A-Z) 替换为对应的数字值 (numeric values: A=10, B=11, ..., Z=35) 3. 取模 (Modulo): 对所得的大整数 (large integer number) 做 取模 97 操作 (modulo 97 arithmetic / remainder operation) 4. 验证 (Validate): 结果必须严格等于 1 (exactly equal to 1) 才算通过 (pass validation) - 若 ≠ 1 → IBAN 无效 (invalid IBAN / checksum mismatch / format violation)!
Q: 中国 China 有 IBAN 吗?能用这个工具验证中国银行卡号吗?
A: ❌ 中国大陆 mainland China 不使用 IBAN 体系 (does NOT adopt IBAN system)!中国使用的是 CNAPS_code (联行号/行号体系 / China National Advanced Payment System code) —— 类似于美国ABA Routing Transit Number (RTN) 的国内银行识别码 (9-14位数字)。IBAN 主要用于 欧洲 SEPA 区域 (SEPA Single Euro Payments Area) 及中东部分国家 (Middle East countries)。本工具对 CNAPS 号不支持 (not applicable / N/A)。
Q: 验证通过就代表账户存在吗?(Does validation success mean the account actually exists?)
A: ⚠️ 不!格式和 checksum 通过仅表示 (Format + checksum valid only means): - IBAN 语法正确 (syntactically well-formed / structurally valid) - Checksum 数学正确 (mathematically correct / passes mod-97) - 但不代表 (does NOT guarantee / does NOT prove that) 该银行账户 真实存在于银行系统中 (actually exists at the bank) 或 有余额 (has balance > 0)! - 账户存在性验证 (account existence verification) 需要 调用银行 API (banking API / SWIFT/BIC) 或 在线查询数据库 (online DB query) —— 本工具仅做本地离线 (offline client-side only / pure frontend) 格式级验证!
建议反馈 (可留下联系方式)
0/200
工具名称
IBAN验证器和解析器
所属分类
Web
更新时间
2026-06-23
使用次数
46
工具简介
验证和解析国际银行账号。
功能特性
格式验证 (Format Validation):检查 IBAN 是否符合该国规定的 固定长度 (fixed length per country) 和字符规则 (character rules: alphanumeric only / no spaces / case-insensitive):
ISO 7064 Mod-97 Checksum 校验算法 (Modulo-97 Arithmetic Checksum Validation):执行 ISO 13616 标准 (Standard) 定义的数学运算(mathematical operation):
结构化解析 (Structured Decomposition/Parsing):拆分 IBAN 为:
错误定位 (Error Localization):当校验失败时精确定位 (pinpoint) 失败的具体位置:
暂无收藏工具
收藏工具