Germany IBAN Format
22-character IBAN · EUR Euro · SEPA zone
A Germany IBAN is 22 characters long and always begins with the country code DE, followed by two check digits. The next 8 characters are the Bank Code (Bankleitzahl). The remaining 10 characters identify the individual account number. The Germany IBAN uses the EUR (Euro) and is a <strong>SEPA member</strong>, meaning euro transfers from other SEPA countries are fast and low-cost.
Example IBAN
IBAN Structure
| Position | Length | Field | Type |
|---|---|---|---|
| 1–2 | 2 | Country Code | a |
| 3–4 | 2 | Check Digits | n |
| 5–12 | 8 | Bank Code (Bankleitzahl) | n |
| 13–22 | 10 | Account Number (Kontonummer) | n |
The bank code (Bankleitzahl/BLZ) is an 8-digit routing number. Germany has thousands of banks.
Major Banks in Germany
| Bank Name | Bank Code | BIC / SWIFT |
|---|---|---|
| BHF-BANK | 10020000 | BHFBDEFF |
| BerlinHyp | 10020200 | HYBEDEMM |
| Berliner Volksbank | 10090000 | BEVODEBB |
| Commerzbank | 20040000 | COBADEFFXXX |
| Commerzbank Köln | 37040044 | COBADEFF370 |
| Commerzbank München | 70080000 | DRESDEFF700 |
| Deutsche Bank | 10070000 | DEUTDEDB |
| Deutsche Bank Düsseldorf | 30070010 | DEUTDEDK |
| Deutsche Bank Frankfurt | 50070010 | DEUTDEFF |
| Deutsche Bank München | 70070010 | DEUTDEMM |
| Deutsche Bundesbank | 10000000 | MARKDEFF |
| Dresdner Bank (Commerzbank) | 50080000 | DRESDEFF500 |
| Frankfurter Sparkasse | 50050201 | HELADEF1822 |
| GLS Bank | 43060967 | GENODEM1GLS |
| Hamburger Sparkasse (Haspa) | 20010020 | HASPDEHHXXX |
| ING Germany | 50010517 | INGDDEFF |
| Landesbank Berlin (Berlin Sparkasse) | 10050000 | BELADEBE |
| N26 | 30010700 | NTSBDEB1XXX |
| Postbank | 10010010 | PBNKDEFF |
| UniCredit Bank (HypoVereinsbank) | 30020900 | HYVEDEMM |
| Wise (formerly TransferWise) | 10110400 | TRWIBEB1XXX |
Validate a Germany IBAN
Paste a Germany IBAN below to check it.
^DE\d{2}\d{8}\d{10}$
Pattern validates length, country code, check digit positions, and field character types. Does not verify the MOD-97 checksum (use the validator above for full validation).
$iban = strtoupper(str_replace(' ', '', $input));
if (!preg_match('/^DE\\d{2}\\d{8}\\d{10}$/', $iban)) {
// Invalid Germany IBAN format
}
const iban = input.replace(/\s+/g, '').toUpperCase();
const pattern = /^DE\d{2}\d{8}\d{10}$/;
if (!pattern.test(iban)) {
// Invalid Germany IBAN format
}
import re
iban = input_str.replace(' ', '').upper()
pattern = r'^DE\d{2}\d{8}\d{10}$'
if not re.fullmatch(pattern, iban):
# Invalid Germany IBAN format
These snippets check format only. For full IBAN validation including MOD-97 checksum, use a dedicated IBAN library or the validator on this page.
How to Find Your Germany IBAN
Germany accounts are traditionally identified using: Bankleitzahl / BLZ (8n) + Kontonummer (10n, zero-padded left). Your IBAN encodes these same components in the standardised international format.
-
1
Mobile banking app — Open your bank's app, navigate to account details or "Account Info." Your IBAN is usually displayed alongside your account number. Look for a field labelled "IBAN" or "International Account Number."
-
2
Bank statement — Your Germany IBAN appears in the account header of your printed or PDF bank statement, typically near the top of the first page.
-
3
Online banking — Log in to your bank's website and go to "Account Details," "Account Summary," or "Profile." Most Germany banks display the IBAN prominently in account settings.
-
4
Bank branch or helpline — Call your bank's customer service or visit a branch with your ID. They can provide your full IBAN instantly.
Once you have your IBAN, use the validator above to confirm it is correctly formatted before sharing it.
Sending Money to Germany
- Recipient's full name
- IBAN (22 characters, starts with DE)
Germany is a SEPA member. IBAN alone is sufficient for all euro transfers within SEPA. Germany fully migrated to IBAN in February 2014 — domestic transfers no longer accept BLZ/Kontonummer. The BLZ is an 8-digit bank routing code that identifies bank and branch together. Kontonummer is padded to 10 digits.
Specialist services typically charge significantly less than high-street banks for international transfers.
Quick Facts
- IBAN Length
- 22 chars
- Country Code
- DE
- Currency
- EUR
- SEPA
- Yes
- BBAN Format
- 18n
- IBAN Required
- mandatory
- Adopted
- 2001