{"id":8156,"date":"2024-09-18T09:00:18","date_gmt":"2024-09-18T02:00:18","guid":{"rendered":"https:\/\/easylink.id\/?page_id=8156"},"modified":"2025-08-01T16:05:35","modified_gmt":"2025-08-01T09:05:35","slug":"swift-code","status":"publish","type":"page","link":"https:\/\/easylink.id\/en\/swift-code\/","title":{"rendered":"Check Swift\/BIC Codes for the Most Complete List of Banks in Indonesia"},"content":{"rendered":"<p><img fetchpriority=\"high\" decoding=\"async\" class=\"size-full wp-image-8169 aligncenter\" src=\"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg\" alt=\"swift code\" width=\"907\" height=\"510\" srcset=\"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg 907w, https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code-300x169.jpg 300w, https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code-768x432.jpg 768w, https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code-18x10.jpg 18w\" sizes=\"(max-width: 907px) 100vw, 907px\" \/><\/p>\n    <style>\r\n        .swift-container {\r\n            max-width: 960px;\r\n            margin: 0 auto;\r\n            padding: 20px 16px;\r\n        }\r\n        .swift-wrapper {\r\n            display: flex;\r\n            flex-wrap: wrap;\r\n            gap: 20px;\r\n            justify-content: center;\r\n        }\r\n        .swift-box {\r\n            flex: 1 1 400px;\r\n            min-width: 320px;\r\n            background: #FFFFFF;\r\n            border: 1px solid #E3EAF3;\r\n            border-radius: 24px;\r\n            padding: 24px;\r\n            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);\r\n            display: flex;\r\n            flex-direction: column;\r\n            gap: 8px;\r\n        }\r\n        .swift-box h3 {\r\n            text-align: center;\r\n            margin-bottom: 8px;\r\n            color: #0E0B3D;\r\n        }\r\n        .swift-box label,\r\n        .swift-box p {\r\n            margin: 0;\r\n            color: #0E0B3D;\r\n        }\r\n        .swift-box select,\r\n        .swift-box input,\r\n        .swift-box button {\r\n            width: 100%;\r\n            padding: 10px;\r\n            margin-top: 4px;\r\n            border-radius: 5px;\r\n            border: 1px solid #ccc;\r\n            background: #fff;\r\n            color: #292753;\r\n        }\r\n        .swift-box button {\r\n            background-color: #0C66E4;\r\n            color: #fff;\r\n            border: none;\r\n            cursor: pointer;\r\n        }\r\n        .swift-box button:hover {\r\n            background-color: #1F2D53;\r\n        }\r\n        .result-box {\r\n            display: none;\r\n            margin-top: 10px;\r\n            background: #fff;\r\n            border: 1px solid #ccc;\r\n            border-radius: 8px;\r\n            padding: 10px;\r\n            text-align: center;\r\n        }\r\n        .error-message {\r\n            color: red;\r\n            margin-top: 10px;\r\n            display: none;\r\n            text-align: center;\r\n        }\r\n        .info-text {\r\n            text-align: center;\r\n            color: #555;\r\n            font-size: 16px;\r\n        }\r\n    <\/style>\r\n\r\n    <div class=\"swift-container\">\r\n        <div class=\"swift-wrapper\">\r\n            <!-- Cari SWIFT Code -->\r\n            <div class=\"swift-box\">\r\n                <h3>Cari SWIFT Code<\/h3>\r\n                <p class=\"info-text\">Temukan Kode SWIFT Bank<\/p>\r\n\r\n                <label for=\"country\">Negara:<\/label>\r\n                <select id=\"country\"><option value=\"\">Pilih Negara<\/option><\/select>\r\n\r\n                <label for=\"city\">Kota:<\/label>\r\n                <select id=\"city\" disabled><option value=\"\">Pilih Kota<\/option><\/select>\r\n\r\n                <label for=\"bank\">Bank:<\/label>\r\n                <select id=\"bank\" disabled><option value=\"\">Pilih Bank<\/option><\/select>\r\n\r\n                <button id=\"search-button\" disabled>Cari SWIFT Code<\/button>\r\n\r\n                <div id=\"swift-code-container\" class=\"result-box\">\r\n                    <p>SWIFT Code: <strong id=\"swift-code\" style=\"font-size: 18px;\"><\/strong><\/p>\r\n                    <button id=\"copy-button\">Copy<\/button>\r\n                    <button id=\"search-again-button\">Search Lagi<\/button>\r\n                <\/div>\r\n\r\n                <div id=\"error-message\" class=\"error-message\"><\/div>\r\n            <\/div>\r\n\r\n            <!-- Manual Check -->\r\n            <div class=\"swift-box\">\r\n                <h3>Cek SWIFT Code Manual<\/h3>\r\n                <p class=\"info-text\">Temukan Cek Kode Swift dengan Mudah<\/p>\r\n\r\n                <input type=\"text\" id=\"manual-input\" placeholder=\"Masukkan SWIFT Code (contoh: STANALTR)\">\r\n                <button id=\"manual-search-button\">Cari Data Bank<\/button>\r\n\r\n                <div id=\"manual-result\" class=\"result-box\">\r\n                    <p>Negara: <strong id=\"result-country\"><\/strong><\/p>\r\n                    <p>Bank: <strong id=\"result-bank\"><\/strong><\/p>\r\n                    <p>Kota: <strong id=\"result-city\"><\/strong><\/p>\r\n                    <p>SWIFT: <strong id=\"result-swift\"><\/strong><\/p>\r\n                <\/div>\r\n\r\n                <div id=\"manual-error-message\" class=\"error-message\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n    document.addEventListener('DOMContentLoaded', function () {\r\n        let data = [];\r\n        const countrySelect = document.getElementById('country');\r\n        const bankSelect = document.getElementById('bank');\r\n        const citySelect = document.getElementById('city');\r\n        const searchButton = document.getElementById('search-button');\r\n        const swiftCodeContainer = document.getElementById('swift-code-container');\r\n        const swiftCodeSpan = document.getElementById('swift-code');\r\n        const copyButton = document.getElementById('copy-button');\r\n        const searchAgainButton = document.getElementById('search-again-button');\r\n        const errorMessage = document.getElementById('error-message');\r\n\r\n        const manualInput = document.getElementById('manual-input');\r\n        const manualSearchButton = document.getElementById('manual-search-button');\r\n        const manualResult = document.getElementById('manual-result');\r\n        const resultCountry = document.getElementById('result-country');\r\n        const resultBank = document.getElementById('result-bank');\r\n        const resultCity = document.getElementById('result-city');\r\n        const resultSwift = document.getElementById('result-swift');\r\n        const manualError = document.getElementById('manual-error-message');\r\n\r\n        fetch('\/wp-content\/uploads\/2025\/05\/swift-codes.json')\r\n            .then(res => res.json())\r\n            .then(json => {\r\n                data = json;\r\n                const countries = [...new Set(data.map(i => i.country))];\r\n                countries.forEach(country => {\r\n                    const opt = document.createElement('option');\r\n                    opt.value = country;\r\n                    opt.textContent = country;\r\n                    countrySelect.appendChild(opt);\r\n                });\r\n            });\r\n\r\n        function showError(el, msg) {\r\n            el.textContent = msg;\r\n            el.style.display = 'block';\r\n        }\r\n\r\n        function clearError(el) {\r\n            el.style.display = 'none';\r\n        }\r\n\r\n        countrySelect.addEventListener('change', function () {\r\n            clearError(errorMessage);\r\n            citySelect.innerHTML = '<option value=\"\">Pilih Kota<\/option>';\r\n            bankSelect.innerHTML = '<option value=\"\">Pilih Bank<\/option>';\r\n            citySelect.disabled = true;\r\n            bankSelect.disabled = true;\r\n            searchButton.disabled = true;\r\n            swiftCodeContainer.style.display = 'none';\r\n\r\n            if (this.value) {\r\n                const cities = [...new Set(data.filter(i => i.country === this.value).map(i => i.city))];\r\n                cities.forEach(city => {\r\n                    const opt = document.createElement('option');\r\n                    opt.value = city;\r\n                    opt.textContent = city;\r\n                    citySelect.appendChild(opt);\r\n                });\r\n                citySelect.disabled = false;\r\n            }\r\n        });\r\n\r\n        citySelect.addEventListener('change', function () {\r\n            clearError(errorMessage);\r\n            bankSelect.innerHTML = '<option value=\"\">Pilih Bank<\/option>';\r\n            bankSelect.disabled = true;\r\n            searchButton.disabled = true;\r\n            swiftCodeContainer.style.display = 'none';\r\n\r\n            if (this.value) {\r\n                const banks = [...new Set(data.filter(i => i.country === countrySelect.value && i.city === this.value).map(i => i.bank))];\r\n                banks.forEach(bank => {\r\n                    const opt = document.createElement('option');\r\n                    opt.value = bank;\r\n                    opt.textContent = bank;\r\n                    bankSelect.appendChild(opt);\r\n                });\r\n                bankSelect.disabled = false;\r\n            }\r\n        });\r\n\r\n        bankSelect.addEventListener('change', function () {\r\n            swiftCodeContainer.style.display = 'none';\r\n            searchButton.disabled = !this.value;\r\n        });\r\n\r\n        searchButton.addEventListener('click', function () {\r\n            clearError(errorMessage);\r\n            swiftCodeContainer.style.display = 'none';\r\n            const result = data.find(i =>\r\n                i.country === countrySelect.value &&\r\n                i.city === citySelect.value &&\r\n                i.bank === bankSelect.value\r\n            );\r\n            if (result) {\r\n                const swiftCode = result.swift.toLowerCase(); \/\/ tidak uppercase\r\n                window.location.href = `https:\/\/easylink.id\/swift-code\/${swiftCode}`;\r\n            } else {\r\n                showError(errorMessage, 'SWIFT code tidak ditemukan.');\r\n            }\r\n        });\r\n\r\n        copyButton.addEventListener('click', function () {\r\n            navigator.clipboard.writeText(swiftCodeSpan.textContent).then(() => {\r\n                showError(errorMessage, '\u2705 SWIFT code berhasil disalin!');\r\n                setTimeout(() => clearError(errorMessage), 2000);\r\n            });\r\n        });\r\n\r\n        searchAgainButton.addEventListener('click', function () {\r\n            clearError(errorMessage);\r\n            countrySelect.value = '';\r\n            citySelect.innerHTML = '<option value=\"\">Pilih Kota<\/option>';\r\n            bankSelect.innerHTML = '<option value=\"\">Pilih Bank<\/option>';\r\n            citySelect.disabled = true;\r\n            bankSelect.disabled = true;\r\n            searchButton.disabled = true;\r\n            swiftCodeContainer.style.display = 'none';\r\n        });\r\n\r\n        manualSearchButton.addEventListener('click', function () {\r\n            clearError(manualError);\r\n            manualResult.style.display = 'none';\r\n            const code = manualInput.value.trim().toUpperCase();\r\n\r\n            if (code.length !== 8 && code.length !== 11) {\r\n                showError(manualError, 'SWIFT code harus 8 atau 11 karakter.');\r\n                return;\r\n            }\r\n\r\n            const result = data.find(item => item.swift.toUpperCase() === code);\r\n            if (result) {\r\n                const swiftCode = result.swift; \/\/ tetap original case\r\n                window.location.href = `https:\/\/easylink.id\/swift-code\/${swiftCode}`;\r\n            } else {\r\n                showError(manualError, 'SWIFT code tidak ditemukan.');\r\n            }\r\n        });\r\n    });\r\n    <\/script>\r\n    \n<p><span style=\"font-weight: 400;\">In an era of rapid technological development, financial transactions are becoming easier, not only at the national level but also on an international scale. Technology plays a key role in this convenience, especially through the use of <\/span><b>Swift code <\/b><span style=\"font-weight: 400;\">which facilitates the smooth process of sending money between countries.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For many people, especially those who are not familiar with this term, understanding its usefulness is difficult. <\/span><b>Swift code <\/b><span style=\"font-weight: 400;\">still somewhat unclear. Along with the development of technology, the banking sector also continues to advance, offering various facilities and products that make it easier for its users.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Transferring money between banks, both domestically and internationally, has become simpler, faster, and safer. This article will explain more about the importance of <\/span><b>Swift code<\/b><span style=\"font-weight: 400;\"> in facilitating international financial transactions.<\/span><\/p>\n<h2><b>What is Swift Code<\/b><\/h2>\n<p><b>Swift code <\/b><span style=\"font-weight: 400;\">is an abbreviation of <\/span><i><span style=\"font-weight: 400;\">Society for Worldwide Interbank Financial Telecommunications<\/span><\/i><span style=\"font-weight: 400;\">, which is used to facilitate the identification of banking or securities institutions in various countries or special branches. Generally, Swift codes consist of 8 or 11 characters, a combination of numbers and letters, although they can also consist of only letters.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For example, the Swift code for BRI Bank is <\/span><b>BRINIDJA<\/b><span style=\"font-weight: 400;\">, where the first four letters reflect the identity of Bank BRI, the next two letters indicate the country code of origin, and the last two letters describe the location or branch code.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Interestingly, Bank BRI Indonesia's Swift code is unique, unlike other banks in Indonesia that only have one Swift code for their head office and branches. Bank BRI's Swift code for the head office is different from the Swift code for the branch offices.<\/span><\/p>\n<h2><b>When Do You Need Swift Code?<\/b><\/h2>\n<p><b>Swift code<\/b><span style=\"font-weight: 400;\"> or <\/span><b>BIC<\/b> <i><span style=\"font-weight: 400;\">(Bank Identifier Code)<\/span><\/i><span style=\"font-weight: 400;\"> becomes important in some international financial situations. When you are involved in an international interbank money transfer, either as a sender or recipient, the Swift code of the bank involved is required to ensure that the transaction can be carried out successfully.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In addition, when you make foreign exchange purchases or engage in global business transactions, Swift code is also an important component. In the use of international financial services or payment of bills or debts at the global level, having the correct Swift code information is a must.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Therefore, understanding when you need a Swift code is essential to ensure the smoothness and security of your overseas money transfer activities. Before engaging in an international financial transaction, make sure you have an accurate Swift code that matches the bank involved in the process.<\/span><\/p>\n<h2><b>Swift Code Functions<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Swift Code created by SWIFT organization, aims to facilitate the exchange of information related to the financial industry between countries globally. Currently, more than 200 countries and more than 9 thousand securities and banking companies have joined the SWIFT association.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Apart from being known as Swift code, this code is also often referred to as <\/span><i><span style=\"font-weight: 400;\">Bank Identifier Code <\/span><\/i><span style=\"font-weight: 400;\">or <\/span><b>BIC<\/b><span style=\"font-weight: 400;\">, referring to its main function in identifying financial institutions of a country so that it can make it easier for you to carry out international financial transactions.<\/span><\/p>\n<h2><b>Swift Code Example<\/b><\/h2>\n<p><b>Swift code<\/b><span style=\"font-weight: 400;\"> or <\/span><b>BIC<\/b> <i><span style=\"font-weight: 400;\">(Bank Identifier Code)<\/span><\/i><span style=\"font-weight: 400;\"> consists of eight or eleven alphanumeric characters. Here is one example of a Swift code, namely BCA (Bank Central Asia) with Swift Code, namely <\/span><b>CENAIDJA.<\/b><\/p>\n<blockquote><p><strong>Read Also: <a class=\"sc-cBIjbw bLUVIX\" href=\"https:\/\/easylink.id\/en\/iban-code\/\" target=\"_blank\" rel=\"noopener\">IBAN Code: Definition, How to Check and Differences<\/a><\/strong><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">Please note that each bank has a unique Swift code, and the Swift code is used to identify the bank involved in the international financial transaction. Before making a money transfer, make sure you have the correct Swift code from the bank concerned.<\/span><\/p>\n<h2><b>Swift Number\/BIC Code Format<\/b><\/h2>\n<table>\n<tbody>\n<tr>\n<td colspan=\"4\">\n<p style=\"text-align: center;\"><b>Swift Code Example<\/b><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td><b>AAAA<\/b><\/td>\n<td><b>BB<\/b><\/td>\n<td><b>CC<\/b><\/td>\n<td><b>123<\/b><\/td>\n<\/tr>\n<tr>\n<td rowspan=\"2\"><span style=\"font-weight: 400;\">Bank Code<\/span><\/td>\n<td rowspan=\"2\"><span style=\"font-weight: 400;\">Country code<\/span><\/td>\n<td rowspan=\"2\"><span style=\"font-weight: 400;\">Location Code<\/span><\/td>\n<td rowspan=\"2\"><span style=\"font-weight: 400;\">Branch Office Code<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"font-weight: 400;\">SWIFT code or BIC is a code with a length of 8-11 characters that provides information about the country, city, bank name and bank branch office.\u00a0<\/span><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bank codes A-Z consist of four letters that reflect the abbreviation of the bank name.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Country codes A-Z consist of two letters that indicate the country location of the bank.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The location code 0-9 A-Z consists of two characters, letters and numbers, providing information about the location of the bank's head office.\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The branch code 0-9 A-Z consisting of three digits or letters, is used to identify a particular branch office, with \u2018XXX\u2019 indicating the bank\u2019s main office.<\/span><\/li>\n<\/ol>\n<h2><b>How Swift Code Works<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The way Swift code works is very simple. For example, if you as a customer of Bank A in Japan want to send money to your parent's BRI Bank account in Jakarta, the first step you need to do is visit the Bank A office in Japan with detailed information such as your parent's account number and the BRI Bank Swift code, namely <\/span><b>BRINIDJA<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Then, Bank A will send transfer instructions to Bank BRI Jakarta via the SWIFT system. After receiving a message from Bank A, Bank BRI Jakarta will continue the settlement process and transfer the money directly to the parent's account. It is important to remember that the swift code is a network of communication codes that only function as an intermediary in money transfer transactions between banks at the international level.<\/span><\/p>\n<blockquote><p><strong>Read Also: <a class=\"sc-cBIjbw bLUVIX\" href=\"https:\/\/easylink.id\/en\/branch-code\/\" target=\"_blank\" rel=\"noopener\">What are Branch Codes? How to Find and Complete List<\/a><\/strong><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">In other words, SWIFT codes do not have money or securities and are not responsible for managing customer account numbers. They are simply a communication tool that facilitates the process of transfers between banks globally.<\/span><\/p>\n<h2><b>How to Find Swift Code<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">To find the Bank Swift code, there are several methods that can be used, including the following:<\/span><b><\/b><\/p>\n<h3><b>1. Proof of Account Number Activity Report<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Some banks often include Swift codes on monthly statements of customer account numbers. Checks can be made on documents, and if not found, the service <\/span><i><span style=\"font-weight: 400;\">mobile banking<\/span><\/i><span style=\"font-weight: 400;\"> dapat menjadi alternatif.<\/span><\/p>\n<h3><b>2. Official Website of Banking Company<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Swift codes are often listed on the front page of a banking company's official website. Although not all banks provide this information, users can search for Swift codes on the bank's official website or continue searching online.<\/span><\/p>\n<h3><b>3. Search Engine<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Users can use the search engine with appropriate keywords, such as \"Swift code Bank BRI\" or \"Swift code Bank BRI Syariah\". The search results will display sites that provide information about Swift codes Bank BRI and Bank BRI Syariah.<\/span><\/p>\n<h2><b>List of Swift Codes for All Banks in Indonesia<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Each bank has a different Swift Code, therefore you must ensure that the Swift Code you entered is correct. Here is a list of Swift Codes for all banks in Indonesia:<\/span><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BCA Swift Code: <\/span><b>CENAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BRI Swift Code: <\/span><b>BRINIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Mandiri: <\/span><b>BMRIIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BNI Swift Code: <\/span><b>BNINIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CIMB Niaga Swift Code: <\/span><b>BNIAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BSI Swift Code: <\/span><b>BSMDIDJA<\/b><span style=\"font-weight: 400;\">\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Mega: <\/span><b>MEGAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Danamon Swift Code: <\/span><b>BDINIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code of Niaga Bank: <\/span><b>BNIAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">NISP Bank Swift Code: <\/span><b>NISPIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Artha Graha: <\/span><b>ARTGIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Panin Bank: <\/span><b>PINBIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BTPN Swift Code: <\/span><b>SUNIIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Indonesian Syariah Bank Swift Code: <\/span><b>BSMDIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Permata Bank Swift Code: <\/span><b>BBBAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Maybank Indonesia: <\/span><b>MBBEIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code UOB Indonesia: <\/span><b>UOBBIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code DBS Indonesia: <\/span><b>DBSBIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code for BRI Simpedes Bank: <\/span><b>BRINIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Citibank Swift Code: <\/span><b>CITIIDJX<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Muamalat: <\/span><b>MUABIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Jago: <\/span><b>JAGBIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Sinarmas: <\/span><b>SBJKIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hana Bank Swift Code: <\/span><b>HNBNIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bank Jatim Swift Code: <\/span><b>BJTMIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Seabank Swift Code: <\/span><b>SSPIIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Commerzbank Swift Code: <\/span><b>COBADEFF<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank DKI: <\/span><b>BDKIIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code BTPN Jenius: <\/span><b>SUNIIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code bank btn: <\/span><b>BTANIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code cimb niaga syariah: <\/span><b>BNIAIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Neo Bank: <\/span><b>YUDBIDJ1<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code vietcombank: <\/span><b>BFTVVNVX<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Dana: <\/span><b>DANAUS33<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank RHB Malaysia: <\/span><b>RHBBMYKL<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank OCBC NISP: <\/span><b>NISPIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code BSI Syariah: <\/span><b>BSMDIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Bukopin: <\/span><b>BBUKIDJA<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code Bank Artos Indonesia: <\/span><b>ATOSIDJ1<\/b><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Swift Code kasikornbank: <\/span><b>KASITHBK<\/b><\/li>\n<\/ol>\n<h2><b>Conclusion<\/b><\/h2>\n<p><b>Swift code<\/b><span style=\"font-weight: 400;\"> is one of the important roles for you when you want to make transactions abroad. However, it should also be remembered that each bank has a different Swift code. Therefore, you need to pay attention and recheck whether the Swift code you entered is correct according to the bank or not.<\/span><\/p>","protected":false},"excerpt":{"rendered":"<p>Dalam era perkembangan teknologi yang pesat, transaksi finansial menjadi semakin mudah, tidak hanya di tingkat nasional tetapi juga dalam skala [&hellip;]<\/p>","protected":false},"author":5,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"default","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-8156","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia<\/title>\n<meta name=\"description\" content=\"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/easylink.id\/en\/swift-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia\" \/>\n<meta property=\"og:description\" content=\"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/easylink.id\/en\/swift-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Easylink\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/EasylinkID\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-01T09:05:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"907\" \/>\n\t<meta property=\"og:image:height\" content=\"510\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:description\" content=\"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.\" \/>\n<meta name=\"twitter:site\" content=\"@easylink_id\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/\",\"url\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/\",\"name\":\"Cek Kode Swift\\\/BIC Daftar Bank Terlengkap di Indonesia\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/easylink.id\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/swift-code.jpg\",\"datePublished\":\"2024-09-18T02:00:18+00:00\",\"dateModified\":\"2025-08-01T09:05:35+00:00\",\"description\":\"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/easylink.id\\\/swift-code\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/#primaryimage\",\"url\":\"https:\\\/\\\/easylink.id\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/swift-code.jpg\",\"contentUrl\":\"https:\\\/\\\/easylink.id\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/swift-code.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/easylink.id\\\/swift-code\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/easylink.id\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cek Kode Swift\\\/BIC Daftar Bank Terlengkap di Indonesia\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/easylink.id\\\/#website\",\"url\":\"https:\\\/\\\/easylink.id\\\/\",\"name\":\"Easylink\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/#organization\"},\"alternateName\":\"PT Sahabat Kirim Digital\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/easylink.id\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/easylink.id\\\/#organization\",\"name\":\"Easylink\",\"alternateName\":\"Easylink\",\"url\":\"https:\\\/\\\/easylink.id\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/easylink.id\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/easylink.id\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/cropped-crop_logo-easylink.png\",\"contentUrl\":\"https:\\\/\\\/easylink.id\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/cropped-crop_logo-easylink.png\",\"width\":356,\"height\":118,\"caption\":\"Easylink\"},\"image\":{\"@id\":\"https:\\\/\\\/easylink.id\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/EasylinkID\",\"https:\\\/\\\/x.com\\\/easylink_id\",\"https:\\\/\\\/www.instagram.com\\\/easylink.id\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/easylink-indonesia\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@easylink_id\",\"https:\\\/\\\/www.youtube.com\\\/@Easylink_ID\",\"https:\\\/\\\/www.facebook.com\\\/EasylinkID\\\/\"],\"description\":\"Easylink adalah start-up penyedia layanan transfer uang ke luar negeri. Didirikan oleh Yoga Chandra Sudewo pada tahun 2021.\",\"email\":\"customer.support@easylink.id\",\"telephone\":\"+6281188813889\",\"legalName\":\"PT Sahabat Kirim Digital\",\"foundingDate\":\"2021-05-24\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"publishingPrinciples\":\"https:\\\/\\\/easylink.id\\\/privacy-policy\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia","description":"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.","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:\/\/easylink.id\/en\/swift-code\/","og_locale":"en_US","og_type":"article","og_title":"Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia","og_description":"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.","og_url":"https:\/\/easylink.id\/en\/swift-code\/","og_site_name":"Easylink","article_publisher":"https:\/\/www.facebook.com\/EasylinkID","article_modified_time":"2025-08-01T09:05:35+00:00","og_image":[{"width":907,"height":510,"url":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_description":"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.","twitter_site":"@easylink_id","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/easylink.id\/swift-code\/","url":"https:\/\/easylink.id\/swift-code\/","name":"Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia","isPartOf":{"@id":"https:\/\/easylink.id\/#website"},"primaryImageOfPage":{"@id":"https:\/\/easylink.id\/swift-code\/#primaryimage"},"image":{"@id":"https:\/\/easylink.id\/swift-code\/#primaryimage"},"thumbnailUrl":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg","datePublished":"2024-09-18T02:00:18+00:00","dateModified":"2025-08-01T09:05:35+00:00","description":"Artikel ini akan menjelaskan lebih lanjut tentang pentingnya Swift code dalam memfasilitasi transaksi keuangan internasional.","breadcrumb":{"@id":"https:\/\/easylink.id\/swift-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/easylink.id\/swift-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/easylink.id\/swift-code\/#primaryimage","url":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg","contentUrl":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/09\/swift-code.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/easylink.id\/swift-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/easylink.id\/"},{"@type":"ListItem","position":2,"name":"Cek Kode Swift\/BIC Daftar Bank Terlengkap di Indonesia"}]},{"@type":"WebSite","@id":"https:\/\/easylink.id\/#website","url":"https:\/\/easylink.id\/","name":"Easylink","description":"","publisher":{"@id":"https:\/\/easylink.id\/#organization"},"alternateName":"PT Sahabat Kirim Digital","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/easylink.id\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/easylink.id\/#organization","name":"Easylink","alternateName":"Easylink","url":"https:\/\/easylink.id\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/easylink.id\/#\/schema\/logo\/image\/","url":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/06\/cropped-crop_logo-easylink.png","contentUrl":"https:\/\/easylink.id\/wp-content\/uploads\/2024\/06\/cropped-crop_logo-easylink.png","width":356,"height":118,"caption":"Easylink"},"image":{"@id":"https:\/\/easylink.id\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/EasylinkID","https:\/\/x.com\/easylink_id","https:\/\/www.instagram.com\/easylink.id\/","https:\/\/www.linkedin.com\/company\/easylink-indonesia\/","https:\/\/www.tiktok.com\/@easylink_id","https:\/\/www.youtube.com\/@Easylink_ID","https:\/\/www.facebook.com\/EasylinkID\/"],"description":"Easylink adalah start-up penyedia layanan transfer uang ke luar negeri. Didirikan oleh Yoga Chandra Sudewo pada tahun 2021.","email":"customer.support@easylink.id","telephone":"+6281188813889","legalName":"PT Sahabat Kirim Digital","foundingDate":"2021-05-24","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"publishingPrinciples":"https:\/\/easylink.id\/privacy-policy\/"}]}},"_links":{"self":[{"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/pages\/8156","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/comments?post=8156"}],"version-history":[{"count":3,"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/pages\/8156\/revisions"}],"predecessor-version":[{"id":13788,"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/pages\/8156\/revisions\/13788"}],"wp:attachment":[{"href":"https:\/\/easylink.id\/en\/wp-json\/wp\/v2\/media?parent=8156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}