{"id":338,"date":"2026-07-15T11:00:00","date_gmt":"2026-07-15T05:30:00","guid":{"rendered":"https:\/\/digitoolkit.in\/blog\/?p=338"},"modified":"2026-07-24T17:38:07","modified_gmt":"2026-07-24T12:08:07","slug":"iban-formula-explained","status":"publish","type":"post","link":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/","title":{"rendered":"IBAN Formula Explained with Examples (MOD-97 Guide)"},"content":{"rendered":"<div style=\"background:#f2f7fb;border-left:4px solid #2271b1;padding:16px 20px;margin:0 0 24px;border-radius:4px;\">\n<p><strong>Quick Answer:<\/strong> The IBAN formula is the ISO 7064 MOD-97-10 algorithm: rearrange the BBAN with the country code and &#8220;00&#8221; appended, convert letters to numbers (A=10\u2013Z=35), divide by 97, then compute 98 minus the remainder to get the two check digits. A valid existing IBAN always produces a remainder of exactly 1.<\/p>\n<p><strong>Key takeaways:<\/strong><\/p>\n<ul>\n<li>The IBAN formula is officially called ISO 7064 MOD-97-10.<\/li>\n<li>It has five steps: build the BBAN, rearrange, convert letters to numbers, divide by 97, derive check digits.<\/li>\n<li>97 is used because it&#8217;s the largest two-digit prime number.<\/li>\n<li>The same formula applies globally; only each country&#8217;s BBAN structure differs.<\/li>\n<li>India&#8217;s IFSC code uses structural validation, not a mathematical checksum like IBAN.<\/li>\n<\/ul>\n<\/div>\n<p>Ask ten people how an IBAN&#8217;s check digits are generated, and most will shrug. The formula behind it is public and well-documented. This guide walks through the exact IBAN formula step by step, with worked examples, so you can verify an IBAN by hand or understand what a calculator does behind the scenes.<\/p>\n<h2>What Problem Does the IBAN Formula Actually Solve?<\/h2>\n<p>Cross-border payments involve manually typed or dictated account numbers across language and alphabet barriers. A single transposed digit can send money to a stranger&#8217;s account. The IBAN formula \u2014 ISO 7064 MOD-97-10 \u2014 catches these errors automatically before a bank processes the payment.<\/p>\n<blockquote>\n<p><strong>Expert insight:<\/strong> This is the same design philosophy behind India&#8217;s Aadhaar number, which carries a Verhoeff checksum digit. Both systems embed a self-verifying digit because manual data entry is the biggest source of transaction errors in banking.<\/p>\n<\/blockquote>\n<h2>The IBAN Formula, Step by Step<\/h2>\n<h3>Step 1 \u2014 Build the BBAN<\/h3>\n<p>Combine the bank code, branch code, and account number into the Basic Bank Account Number (BBAN).<\/p>\n<h3>Step 2 \u2014 Rearrange and Append<\/h3>\n<p>Move the country code and &#8220;00&#8221; from the front to the end: <code>DE00370400440532013000<\/code> becomes <code>370400440532013000DE00<\/code>.<\/p>\n<h3>Step 3 \u2014 Letter-to-Number Conversion<\/h3>\n<p>Convert letters using A=10, B=11 \u2026 Z=35. <code>DE<\/code> becomes <code>1314<\/code>.<\/p>\n<h3>Step 4 \u2014 The MOD-97 Division<\/h3>\n<p>Treat the string as one large integer and compute its remainder when divided by 97, using chunked modulo arithmetic for big numbers.<\/p>\n<h3>Step 5 \u2014 Deriving the Check Digits<\/h3>\n<ul>\n<li><strong>To validate:<\/strong> the remainder must equal exactly <strong>1<\/strong>.<\/li>\n<li><strong>To generate:<\/strong> compute <code>98 \u2212 remainder<\/code>, left-padded to two digits.<\/li>\n<\/ul>\n<h2>Worked Examples Across Countries<\/h2>\n<h3>Germany<\/h3>\n<p>BBAN: <code>370400440532013000<\/code> \u2192 Result: <strong>DE89 3704 0044 0532 0130 00<\/strong><\/p>\n<h3>United Kingdom<\/h3>\n<p>BBAN: <code>NWBK60161331926819<\/code> \u2192 Result: <strong>GB29 NWBK 6016 1331 9268 19<\/strong><\/p>\n<h3>France<\/h3>\n<p>BBAN: <code>20041010050500013M02606<\/code> \u2192 Result: <strong>FR14 2004 1010 0505 0001 3M02 606<\/strong><\/p>\n<h3>UAE<\/h3>\n<p>BBAN: <code>0331234567890123456<\/code> \u2192 Result: <strong>AE07 0331 2345 6789 0123 456<\/strong><\/p>\n<p>Each follows the exact same five-step formula \u2014 only the BBAN structure differs by country.<\/p>\n<h2>IBAN Formula for Developers (Pseudocode)<\/h2>\n<pre><code>function calculateCheckDigits(countryCode, bban):\n    rearranged = bban + countryCode + \"00\"\n    numeric = convertLettersToNumbers(rearranged)\n    remainder = mod97(numeric)\n    checkDigits = 98 - remainder\n    return padLeft(checkDigits, 2, \"0\")\n\nfunction validateIBAN(iban):\n    rearranged = iban[4:] + iban[0:4]\n    numeric = convertLettersToNumbers(rearranged)\n    return mod97(numeric) == 1<\/code><\/pre>\n<blockquote>\n<p><strong>Key takeaway:<\/strong> The trickiest part isn&#8217;t the formula \u2014 it&#8217;s chunked modulo arithmetic for numbers with 20\u201330+ digits, requiring big-integer handling.<\/p>\n<\/blockquote>\n<h2>Why the Formula Uses 97 Specifically<\/h2>\n<p>97 is the largest two-digit prime number. Prime moduli distribute remainders evenly and reduce collisions \u2014 the same principle used in parts of India&#8217;s own Aadhaar and PAN verification logic.<\/p>\n<h2>How This Compares to India&#8217;s Own Verification Codes<\/h2>\n<table>\n<thead>\n<tr>\n<th>System<\/th>\n<th>Country<\/th>\n<th>Checksum Method<\/th>\n<th>Purpose<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>IBAN<\/td>\n<td>EU, UK, Gulf, 86+ countries<\/td>\n<td>ISO 7064 MOD-97-10<\/td>\n<td>Validate bank account identifiers<\/td>\n<\/tr>\n<tr>\n<td>PAN<\/td>\n<td>India<\/td>\n<td>Alphanumeric structural check<\/td>\n<td>Validate tax ID format<\/td>\n<\/tr>\n<tr>\n<td>Aadhaar<\/td>\n<td>India<\/td>\n<td>Verhoeff algorithm<\/td>\n<td>Validate identity number<\/td>\n<\/tr>\n<tr>\n<td>IFSC<\/td>\n<td>India<\/td>\n<td>Structural check<\/td>\n<td>Validate bank branch identifier (no checksum digit)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>India&#8217;s IFSC code does <strong>not<\/strong> carry a mathematical check digit the way IBAN does \u2014 it&#8217;s a structural identifier only.<\/p>\n<h2>Common Formula Mistakes to Avoid<\/h2>\n<ul>\n<li>Forgetting to move the country code to the end before conversion.<\/li>\n<li>Using ASCII values instead of A=10&#8230;Z=35.<\/li>\n<li>Applying standard modulo instead of chunked modulo, causing overflow errors.<\/li>\n<li>Confusing &#8220;valid remainder = 1&#8221; with &#8220;remainder = 0.&#8221;<\/li>\n<\/ul>\n<hr \/>\n<p><strong>Skip the manual math:<\/strong> DigiToolkit&#8217;s free <a href=\"\/calculators\/iban-calculator\/\">IBAN Calculator<\/a> runs this exact MOD-97 formula instantly.<\/p>\n<div data-dtk-related=\"1\" style=\"background:#f8f9fb;border:1px solid #e2e8f0;border-radius:6px;padding:16px 20px;margin:28px 0;\">\n<p style=\"margin:0 0 10px;\"><strong>Related tools &amp; guides on DigiToolkit<\/strong><\/p>\n<ul style=\"margin:0;padding-left:20px;\">\n<li><a href=\"https:\/\/digitoolkit.in\/calculators\/iban-calculator\/\">Try the free IBAN Calculator &rarr;<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/how-to-calculate-iban\/\">How to Calculate an IBAN: Step-by-Step Guide (India)<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/what-is-iban-simple-guide\/\">What Is IBAN? A Simple Guide for Indian Users<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/iban-calculator-free-tool-guide\/\">IBAN Calculator: Free Online Tool + Complete Guide<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/iban-examples-for-beginners\/\">IBAN Examples for Beginners (With Real Country Formats)<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/how-to-add-page-numbers-to-pdf-free\/\">How to Add Page Numbers to a PDF for Free (No Software)<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/how-to-calculate-paint-quantity-house-india\/\">How to Calculate Paint Quantity for Your House (Step by Step)<\/a><\/li>\n<li><a href=\"https:\/\/digitoolkit.in\/blog\/category\/banking-deposits\/\">More Banking &amp; Deposits guides<\/a><\/li>\n<\/ul>\n<\/div>\n<h2>Conclusion<\/h2>\n<p>The IBAN formula is a well-defined, five-step process built on ISO 7064 MOD-97-10: rearrange, convert letters to numbers, divide by 97, derive two check digits that catch transcription errors. For Indian users and developers, this demystifies infrastructure that, unlike IFSC, embeds real mathematical error-detection into the number itself.<\/p>\n<h2>FAQs<\/h2>\n<p><strong>What is the exact formula used to calculate IBAN check digits?<\/strong><br \/><code>Check digits = 98 \u2212 (N mod 97)<\/code>.<\/p>\n<p><strong>Can I calculate the IBAN formula by hand?<\/strong><br \/>Yes, but it&#8217;s tedious for long account numbers \u2014 most people use a calculator.<\/p>\n<p><strong>Why is 97 used in the IBAN formula?<\/strong><br \/>It&#8217;s the largest two-digit prime number, giving strong error-detection.<\/p>\n<p><strong>Is the IBAN formula the same for every country?<\/strong><br \/>Yes, only the BBAN structure changes by country.<\/p>\n<p><strong>Does India use a similar formula for IFSC codes?<\/strong><br \/>No, IFSC is structural only, without a checksum digit.<\/p>\n<p><script type=\"application\/ld+json\">\n{\"@context\":\"https:\/\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[\n{\"@type\":\"Question\",\"name\":\"What is the IBAN formula?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"The IBAN formula is the ISO 7064 MOD-97-10 checksum algorithm, which generates two check digits from a rearranged, letter-converted version of the account code.\"}},\n{\"@type\":\"Question\",\"name\":\"How do you calculate IBAN check digits manually?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Rearrange the BBAN with the country code and two placeholder zeros appended, convert letters to numbers using A=10 through Z=35, divide by 97, then subtract the remainder from 98.\"}},\n{\"@type\":\"Question\",\"name\":\"Why does the IBAN formula use mod 97?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"97 is the largest two-digit prime number, giving the checksum strong error-detection properties.\"}},\n{\"@type\":\"Question\",\"name\":\"Does India's IFSC code use the same formula as IBAN?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"No. India's IFSC code is validated structurally and does not include a mathematical checksum digit like IBAN's MOD-97 system.\"}},\n{\"@type\":\"Question\",\"name\":\"What remainder indicates a valid IBAN?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"A valid IBAN produces a remainder of exactly 1 when divided by 97.\"}}\n]}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.<\/p>\n","protected":false},"author":1,"featured_media":854,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[18],"tags":[],"class_list":["post-338","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-banking-deposits"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>IBAN Formula Explained with Examples (MOD-97 Guide)<\/title>\n<meta name=\"description\" content=\"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"IBAN Formula Explained with Examples (MOD-97 Guide)\" \/>\n<meta property=\"og:description\" content=\"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-15T05:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-24T12:08:07+00:00\" \/>\n<meta name=\"author\" content=\"mundliya\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"mundliya\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/\"},\"author\":{\"name\":\"mundliya\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/#\\\/schema\\\/person\\\/2ec0a40ee547d8717205703b12c30cb4\"},\"headline\":\"IBAN Formula Explained with Examples (MOD-97 Guide)\",\"datePublished\":\"2026-07-15T05:30:00+00:00\",\"dateModified\":\"2026-07-24T12:08:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/\"},\"wordCount\":787,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/dtk-featured-338-iban-formula-explained.png\",\"articleSection\":[\"Banking &amp; Deposits\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/\",\"url\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/\",\"name\":\"IBAN Formula Explained with Examples (MOD-97 Guide)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/dtk-featured-338-iban-formula-explained.png\",\"datePublished\":\"2026-07-15T05:30:00+00:00\",\"dateModified\":\"2026-07-24T12:08:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/#\\\/schema\\\/person\\\/2ec0a40ee547d8717205703b12c30cb4\"},\"description\":\"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#primaryimage\",\"url\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/dtk-featured-338-iban-formula-explained.png\",\"contentUrl\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/dtk-featured-338-iban-formula-explained.png\",\"width\":1200,\"height\":675,\"caption\":\"Illustration for IBAN Formula Explained with Examples (MOD-97 Guide) - DigiToolkit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/iban-formula-explained\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"IBAN Formula Explained with Examples (MOD-97 Guide)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/#\\\/schema\\\/person\\\/2ec0a40ee547d8717205703b12c30cb4\",\"name\":\"mundliya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g\",\"caption\":\"mundliya\"},\"sameAs\":[\"https:\\\/\\\/digitoolkit.in\\\/blog\"],\"url\":\"https:\\\/\\\/digitoolkit.in\\\/blog\\\/author\\\/mundliya\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"IBAN Formula Explained with Examples (MOD-97 Guide)","description":"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/","og_locale":"en_US","og_type":"article","og_title":"IBAN Formula Explained with Examples (MOD-97 Guide)","og_description":"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.","og_url":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/","article_published_time":"2026-07-15T05:30:00+00:00","article_modified_time":"2026-07-24T12:08:07+00:00","author":"mundliya","twitter_card":"summary_large_image","twitter_misc":{"Written by":"mundliya","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#article","isPartOf":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/"},"author":{"name":"mundliya","@id":"https:\/\/digitoolkit.in\/blog\/#\/schema\/person\/2ec0a40ee547d8717205703b12c30cb4"},"headline":"IBAN Formula Explained with Examples (MOD-97 Guide)","datePublished":"2026-07-15T05:30:00+00:00","dateModified":"2026-07-24T12:08:07+00:00","mainEntityOfPage":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/"},"wordCount":787,"commentCount":0,"image":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#primaryimage"},"thumbnailUrl":"https:\/\/digitoolkit.in\/blog\/wp-content\/uploads\/2026\/07\/dtk-featured-338-iban-formula-explained.png","articleSection":["Banking &amp; Deposits"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/","url":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/","name":"IBAN Formula Explained with Examples (MOD-97 Guide)","isPartOf":{"@id":"https:\/\/digitoolkit.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#primaryimage"},"image":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#primaryimage"},"thumbnailUrl":"https:\/\/digitoolkit.in\/blog\/wp-content\/uploads\/2026\/07\/dtk-featured-338-iban-formula-explained.png","datePublished":"2026-07-15T05:30:00+00:00","dateModified":"2026-07-24T12:08:07+00:00","author":{"@id":"https:\/\/digitoolkit.in\/blog\/#\/schema\/person\/2ec0a40ee547d8717205703b12c30cb4"},"description":"The exact IBAN formula (ISO 7064 MOD-97) broken down with worked examples across 4 countries \u2014 written for Indian developers and remitters.","breadcrumb":{"@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#primaryimage","url":"https:\/\/digitoolkit.in\/blog\/wp-content\/uploads\/2026\/07\/dtk-featured-338-iban-formula-explained.png","contentUrl":"https:\/\/digitoolkit.in\/blog\/wp-content\/uploads\/2026\/07\/dtk-featured-338-iban-formula-explained.png","width":1200,"height":675,"caption":"Illustration for IBAN Formula Explained with Examples (MOD-97 Guide) - DigiToolkit"},{"@type":"BreadcrumbList","@id":"https:\/\/digitoolkit.in\/blog\/iban-formula-explained\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/digitoolkit.in\/blog\/"},{"@type":"ListItem","position":2,"name":"IBAN Formula Explained with Examples (MOD-97 Guide)"}]},{"@type":"WebSite","@id":"https:\/\/digitoolkit.in\/blog\/#website","url":"https:\/\/digitoolkit.in\/blog\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/digitoolkit.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/digitoolkit.in\/blog\/#\/schema\/person\/2ec0a40ee547d8717205703b12c30cb4","name":"mundliya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ff96cdd08389817bdf26bc4354a696a60d104a9c4324e7d47b224f29adc5d116?s=96&d=mm&r=g","caption":"mundliya"},"sameAs":["https:\/\/digitoolkit.in\/blog"],"url":"https:\/\/digitoolkit.in\/blog\/author\/mundliya\/"}]}},"_links":{"self":[{"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/posts\/338","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/comments?post=338"}],"version-history":[{"count":2,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/posts\/338\/revisions"}],"predecessor-version":[{"id":592,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/posts\/338\/revisions\/592"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/media\/854"}],"wp:attachment":[{"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/media?parent=338"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/categories?post=338"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/digitoolkit.in\/blog\/wp-json\/wp\/v2\/tags?post=338"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}