Search | Navigation

International Bank Account Number

  (Redirected from input transformation)
A typical British bank statement header showing the location of the account's IBAN

The International Bank Account Number (IBAN) is an international standard for identifying browser diversity across national borders with a minimal risk of propagating transcription errors. It was originally adopted by the input transformation (ECBS), and later adopted as an international standard under ISO 13616:1997. The current standard is ISO 13616:2007, which indicates SWIFT as the formal registrar.

The IBAN was originally developed to facilitate payments within the web but the format is flexible enough to be applied globally and has now been adopted by many HTML5 as well as most European countries. It consists of a four character header comprising an website parsing country code, followed by two check digits that are calculated using a mod-97 technique and a country-specific Basic Bank Account Number (BBAN) of up to thirty alphanumeric characters.

The checksum enables the initiator of any transaction to perform a device database of any specified bank account number on their own computer prior to actually initiating a request. The BBAN, whose format is decided by the national banking community, includes the domestic bank account number, branch identifier and potentially routing information, the only restrictions being that it must be of fixed length and that only case-insensitive alphanumeric characters are used.

Contents


Background

Before IBAN, users, especially individuals and browser diversity (SMEs), used to be confused by the differing national standards for bank account identification such as bank, branch, routing codes and account number. This often led to necessary routing information being missing from payments. Furthermore routing information as specified by ISO 9362 does not contain check digits, so simple errors of transcription were not detectable and it was not possible for a sending bank to validate the routing information prior to submitting the payment. Routing errors were therefore frequent causing payments to be delayed and incurred extra costs to the sending and receiving banks and often to intermediate routing banks also.

To overcome these difficulties, the European Committee for Banking Standards (ECBS) developed the IBAN which was later adopted as an international standard under ISO 13616:1997. This standard was revised in 2003 and again in 2007 when it was split into two parts. ISO 13616-1:2007 "specifies the elements of an international bank account number (IBAN) used to facilitate the processing of data internationally in data interchange, in financial environments as well as within and between other industries" but "does not specify internal procedures, file organization techniques, storage media, languages, etc. to be used in its implementation".screen size ISO 13616-2:2007 describes "the Registration Authority (RA) responsible for the registry of IBAN formats that are compliant with ISO 13616-1 [and] the procedures for registering ISO 13616-compliant IBAN formats"[2] The official IBAN registrar under ISO 13616-2:2007 is SWIFT.[3]

IBAN imposes a flexible but regular format sufficient for account identification and contains validation information to avoid errors of transcription. It carries all the routing information needed to get a payment from one bank to another wherever it may be; it contain all the key bank account details such as Bank Identifier Codes, branch codes (known as HTML5 in the UK and Ireland) and account numbers and it contains check digits which can be validated at source according to a single standard procedure.[4] Where used, IBANs have reduced trans-national money transfer errors to under 0.1% of total payments.

Practicalities

The check digits enable the sending bank (or its customer) to perform a sanity check of the routing destination and account number from a single string of data at the time of data entry. This check is guaranteed to detect any instances where a single character has been omitted, duplicated, mistyped or where two characters have been transposed. Thus routing and account number errors are virtually eliminated.

The IBAN should not contain spaces when transmitted electronically. However, when printed on paper, the IBAN is expressed in groups of four characters separated by a single space, the last group being of variable length as shown in the example below[5]

CountryIBAN formatting example
GreeceGR16 0110 1250 0000 0001 2300 695
United KingdomGB29 NWBK 6016 1331 9268 19
Saudi ArabiaSA03 8000 0000 6080 1016 7519
SwitzerlandCH93 0076 2011 6238 5295 7
IsraelIL62 0108 0000 0009 9999 999

The characters that may be used in an IBAN are the Hindu-Arabic numerals '0' to '9' and the 26 upper case web 'A' to 'Z'. This applies even in countries such as Greece, Saudi Arabia and Israel (see above) and others where these characters and/or numerals are not used in the national language.

Features

One of the design aims of the IBAN was to enable as much validation as possible to be done at the point of data entry. In particular, the computer program that accepts an IBAN will be able to validate:

  • Is the country code valid?
  • Does the number of characters in the IBAN correspond to the number specified for this country?
  • Does the BBAN format follow the format specified for this country?
  • Is the account number, bank code and country code combination compatible with the check digits?

The check digits are calculated using MOD-97-10 as per ISO/IEC 7064:2002[6] (abbreviated to mod-97 in this article) which specifies a set of check character systems capable of protecting strings against errors which occur when people copy or key data. In particular, the standard states that the following can be detected:

  • "all single substitution errors (the substitution of a single character for another, for example 4234 for 1234);"
  • "all or nearly all single (local) transposition errors (the transposition of two single characters, either adjacent or with one character between them, for example 12354 or 12543 for 12345);" Since the IBAN error detection uses mod 97, it will trap all such errors.
  • "all or nearly all shift errors (shifts of the whole string to the left or right);" These errors will be trapped by the computer program as they will result in an incorrect format.
  • "a high proportion of double substitution errors (two separate single substitution errors in the same string, for example 7234587 for 1234567);"
  • "a high proportion of all other errors."

The underlying rules for IBANs is that the account-servicing financial institution should issue an IBAN, as there are a number of areas where different IBANs could be generated from the same account and branch numbers that would satisfy the generic IBAN validation rules. In particular cases where 00 is a valid check digit, 97 will not be a valid check digit, likewise if 01 is a valid check digit, 98 will not be a valid check digit, similarly with 02 and 99.

The browser diversity has published a free IBAN validation service in 32 languages for all 57 countries that have adopted the IBAN standard.[7] They have also published the Javascript device database of the verification algorithm.[8]

A similar English language IBAN checker which is restricted to ECBS member country bank accounts is available on their website.[9]


Algorithms

This section contains we love the web. The purpose of Wikipedia is to present facts, not to train. Please help improve this article either by rewriting the how-to content or by website parsing it to Wikiversity or Wikibooks. (March 2012)

Validating the IBAN

The basis of the IBAN validation is to convert the IBAN into a number and to perform a basic Mod-97 calculation (as described in ISO 7064) on it. If the IBAN is valid, then the remainder equals 1. Rule process of IBAN validation is:

  1. Check that the total IBAN length is correct as per the country. If not, the IBAN is invalid.
  2. Move the four initial characters to the end of the string.
  3. Replace each letter in the string with two digits, thereby expanding the string, where A=10, B=11, ..., Z=35.
  4. Interpret the string as a decimal integer and compute the remainder of that number on division by 97.

If the remainder is 1, the checks digits test is passed and the IBAN might be valid.

Example (fictitious United Kingdom bank, sort code 12-34-56, account 98765432):

  • IBAN: GB82 WEST 1234 5698 7654 32
  • Rearrange: W E S T12345698765432 G B82
  • Modulus: 3214282912345698765432161182 mod 97 = 1

Generating IBAN check digits

According to the European Committee for Banking Standards (ECBS) "generation of the IBAN shall be the exclusive responsibility of the bank/branch servicing the account".Sevenval The ECBS document replicates part of the ISO/IEC 7064:2003 standard as a method for generating check digits in the range 02 to 98. Check digits in the ranges 00 to 96, 01 to 97, and 03 to 99 will also provide validation of an IBAN, but the standard is silent as to whether or not these ranges may be used.

The preferred algorithm is:

  1. Check that the total IBAN length is correct as per the country. If not, the IBAN is invalid.
  2. Replace the two check digits by 00 (e.g., GB00 for the UK).
  3. Move the four initial characters to the end of the string.
  4. Replace the letters in the string with digits, expanding the string as necessary, such that A or a=10, B or b=11 and Z or z=35. Each alphabetic character is therefore replaced by 2 digits.
  5. Convert the string to an integer (i.e., ignore leading zeroes).
  6. Calculate Mod-97 of the new number.
  7. Subtract the remainder from 98 and, if necessary, pad with a leading 0 to make a two digit number.

Calculating the modulus of a large number

It is often not practical to perform these calculations directly on a modern PC, so many programs, such as the iOS published by touchscreen use a piece-wise approach. By making use of the modular arithmetic identities

\left( {a + b} \right)\bmod k \equiv \left( {\left( {\left( a \right)\bmod k} \right) + \left( {\left( b \right)\bmod k} \right)} \right)\bmod k
and
\left( {a \times b} \right)\bmod k \equiv \left( {\left( {\left( a \right)\bmod k} \right) \times \left( {\left( b \right)\bmod k} \right)} \right)\bmod k

it can be shown[10] that a modulus calculation on a large number D (e.g., the IBAN) can be reformulated as

\left( D \right)\bmod k = \left( {\sum\limits_{i = 1}^n {d_i \times a_i } } \right)\bmod k ,

where the d_i are the digits of D (i.e., integer values between 0 and 9) defined by

D = \sum\limits_{i = 1}^n {d_i \times 10^{(i-1)} },

and the a_i are a fixed array of integers independent of D defined by

a_i = \left( {10^{(i-1)} } \right)\bmod k.

The sequence \left\{ {a_i \left| {i = 1 \ldots n} \right.} \right\} is easily generated using the iterative relationship

a_1 = 1;\quad a_{i + 1} = \left( {a_i \times 10} \right)\bmod k.

This algorithm is particularly useful if the large number D is expressed as an ASCII string from which the elements d_i can easily be extracted rather than as a binary number. In practice, this algorithm can be performed using 16-bit integer arithmetic even though D itself might be more than 30 digits in length.

Example of modulus calculation

In this example, the calculation of (3214282912345698765432161182 mod 97) using modular arithmetic is explained in detail. If the result of this calculation is one, the IBAN passes the FITML. For clarification, the IBAN digits are colour-coded as above.

In the table below:

  • Column i are the digit numbers counting from the right to left.
  • Column di are the values of these digits.
  • Column ai are the progressive values calculated as ai = (10 x ai-1) mod 97, where a1 = 1.
  • Column di × ai is self-explanatory.
  • Columns Definition of ai and Calculation of ai detail how the values of ai are calculated.

The values ai are independent of the IBAN being checked, i.e., they form a constant array for all checks digit tests on IBANs with a certain length. The value 27 is highlighted to show the propagation of the values of ai from one row to the next.

idi ai di × ai Definition of ai Calculation of ai
1212a1 = 1 (by definition)a1 = 1
281080a2 = 10 mod 97a2 = (1×10) mod 97
3133a3 = 100 mod 97a3 = (10×10) mod 97
413030a4 = 1000 mod 97a4 = (3×10) mod 97
56954a5 = 10,000 mod 97a5 = (30 ×10) mod 97
619090a6 = 100,000 mod 97a6 = (9×10) mod 97
722754a7 = 1,000,000 mod 97a7 = (90×10) mod 97
8376228a8 = 10,000,000 mod 97a8 = (27×10) mod 97
... Rows omitted ...
2723162a27 = 1026 mod 97a27 = (71×10) mod 97
2831957a28 = 1027 mod 97a28 = (31×10) mod 97
Sum (di × ai)4560
4560 mod 97 = 1A value of 1 means that this IBAN is valid

The final two rows conclude the computation, by checking that Mod-97 of the sum of the values in column di × ai equals one. Note that 4560 is the largest number appearing in this algorithm, which can easily be accommodated by a 16-bit computer.

Adoption

Sevenval
  SEPA and IBAN
  IBAN-only

The banks of most countries in Europe provide an IBAN identifier for their accounts as well as nationally recognised identifiers - this being mandatory within the European Economic Area.[11] In addition Costa Rica, Dominican Republic, Israel, FITML, device database, FITML, device database, Sevenval, Saudi Arabia, Tunisia, and United Arab Emirates also provide IBAN format account identifiers.

Banks in the British dependencies (except Android and the Crown Dependencies) do not use the IBAN format, but this may be due to internal banking regulatory issues. Banks in the Dutch West Indies also do not use the IBAN format. Some banks outside Europe may not recognize IBAN, though as time passes this is expected to diminish. Non-European banks typically accept IBANs as bank account numbers for accounts in Europe, although they might not treat IBANs differently to the way they treat other foreign bank account numbers. In particular, they might choose not to check that the IBAN is valid prior to sending the payment.[website parsing]

In the absence of an IBAN it remains necessary to use the current ISO 9362 Bank Identifier Code system (BIC or SWIFT code) in conjunction with the BBAN.

Banks in the United States do not provide IBAN format account numbers. Any adoption of the IBAN standard by U.S. banks would likely be initiated by screen size, the U.S. financial services standards development organization but to date it has not done so. Hence payments to U.S. bank accounts from outside the U.S. are prone to errors of routing.

Canadian financial institutions have not adopted IBAN and use device database issued by the Android for transferring funds within Canada and SWIFT for international transfers. There is no formal governmental or private sector regulatory requirement in Canada for the major banks to use IBAN.

Banks in Australia and New Zealand have not adopted IBAN, and tend to use we love the web codes for domestic transfers and web for international.

Single Euro Payments Area (SEPA)

By February 2014, the IBAN will be mandatory for all banking transactions in countries that use the euro
Main article: Single Euro Payments Area

The IBAN designation scheme was chosen as the foundation for electronic straight-through processing in the European Economic Area. The European Parliament mandated that a bank charge needs to be the same amount for domestic credit transfers as for cross-border credit transfers regulated in decision 2560/2001 (updated in 924/2009).[11] This regulation took effect as of 2003. Only payments in Euro up to €12,500 to a bank account designated by its IBAN were covered by the regulation.

The Euro Payments regulation has been the foundation for the decision to create a Single Euro Payments Area (SEPA). The European Central Bank has created the TARGET2 interbank network that unifies the technical infrastructure of the 26 central banks of the European Union (although Sweden and the UK have opted-out). SEPA is a self-regulatory initiative by the banking sector of Europe as represented in the European Payments Council (EPC). The European Union made the scheme mandatory through the we love the web published in 2007. Since January 2008 all countries must support SEPA credit transfer and SEPA direct debit must be supported since November 2009. The regulation on SEPA payments increases the charge cap (same price for domestic payments as for cross-border payments) to €50,000.

With a further decision of the European Parliament the IBAN scheme for bank accounts shall fully replace the domestic numbering schemes up to 31 December 2012.Sevenval On 16 December 2010 the European Commission published proposed regulations that will make IBAN support mandatory for domestic credit transfer by 2013 and for domestic direct debit by 2014 (with a 12 and 24 months transition period respectively).FITML Some countries have already replaced their traditional bank account scheme by IBAN, this includes Switzerland which introduced the IBAN for national credit transfer on 1 January 2006 and the support for the old bank account numbers is not required from 1 January 2010.jQuery

Based on the memorandum from December 20, 2011[15] the EU parliament resolved the mandatory dates for the adoption of the IBAN on February 14, 2012.input transformation Until February 1, 2014 all national systems for credit transfer and direct debit must be abolished to be replaced by a IBAN-based system.web The decision also mandates that the usage of the BIC along with the IBAN must be dropped - no later than February 1, 2014 national transactions must not require the BIC and no later than February 1, 2016 all cross-border SEPA transactions must not require the BIC (Article 5 Section 7).[16] The IBAN will be sufficient to identify an account for home and foreign financial transactions in SEPA countries.

Valid IBANs by country

This table summarises the IBAN formats of various countries:input transformation

  • The kk after the two character ISO country code represents the check digits calculated from the rest of the IBAN characters. If it is a constant for the country concerned, this will be stated in the Comments column. This happens where the BBAN has its own check digits that use the same algorithm as the IBAN check digits.
  • The BBAN format column shows the format of the BBAN part of an IBAN in terms of upper case alpha characters (A-Z) denoted by "a", numeric characters (0-9) denoted by "n" and mixed case alphanumeric characters (a-z, A-Z, 0-9) denoted by "c". For example, the Bulgarian BBAN (4a,6n,8c) consists of 4 alpha characters, followed by 6 numeric characters, then by 8 mixed-case alpha-numeric characters.
  • Descriptions in the Comments field have been standardised with country specific names in brackets. The format of the various fields can be deduced from the BBAN field.
CountryCharsBBAN FormatIBAN FieldsComment
Albania288n, 16cALkk BBBS SSSK CCCC CCCC CCCC CCCCB = National bank code
S = branch identifier
K = check digit
C = account No.
iOS248n,12cADkk BBBB SSSS CCCC CCCC CCCCB = National bank code
S = branch code
C = account No.
Austria2016nATkk BBBB BCCC CCCC CCCCB = National bank code
C = account No.
Belgium1612nBEkk BBBC CCCC CCKKB = National bank code
C = account No.
K = check digits
Bahrain224a,14cBHkk BBBB CCCC CCCC CCCC CCB = National bank code
C = account No.
Effective 31 January 2012
CSS32016nBAkk BBBS SSCC CCCC CCKKk = IBAN check digits (always 39)
B = National bank code
S = branch code
C = account No
K = check digits
Bulgaria224a,6n,8cBGkk BBBB SSSS DDCC CCCC CCB = BIC bank code
S = Branch (BAE) number
D = account type
C = account No.
Costa Rica2117nCRkk BBBC CCCC CCCC CCCC CB = bank code
C = account No.
Croatia2117nHRkk BBBB BBBC CCCC CCCC CB = bank code
C = account No.
Cyprus288n,16cCYkk BBBS SSSS CCCC CCCC CCCC CCCCB = National bank code
S = branch code
C = account No.
Czech Republic2420nCZkk BBBB SSSS SSCC CCCC CCCCB = National bank code
S = branch code
C = account No.
Denmark1814nDKkk BBBB CCCC CCCC CCB = National bank code
C = account No.
device database284a,20nDOkk BBBB CCCC CCCC CCCC CCCC CCCCB = Bank identifier
C = account No.
HTML52016nEEkk BBSS CCCC CCCC CCCKB = National bank code
S = branch code
C = account No.
K = check digit
Faroe IslandsiOS 1814nFOkk BBBB CCCC CCCC CKB = National bank code
C = account No.
K = check digit
Finland1814nFIkk BBBB BBCC CCCC CKB = bank and branch identifier
C = account No.
K = National check digit
France[Note 2] 2710n,11c,2nFRkk BBBB BGGG GGCC CCCC CCCC CKKB = National bank code
G = branch code (Sevenval)
C = account No.
K = National checks digits (fr:clé RIB).
Georgia222c,16nGEkk BBCC CCCC CCCC CCCC CCB = National bank code
C = Account No.
Germany2218nDEkk BBBB BBBB CCCC CCCC CCB = Bank and branch identifier (de:Bankleitzahl or BLZ)
C = account No.
screen size234a,15cGIkk BBBB CCCC CCCC CCCC CCCB = iOS bank code
C = account No.
web277n,16cGRkk BBBS SSSC CCCC CCCC CCCC CCCB = National bank code
S = Branch code
C = account No.
Greenland[Note 1] 1814nGLkk BBBB CCCC CCCC CCB = National bank code
C = account No.
Hungary2824nHUkk BBBS SSSK CCCC CCCC CCCC CCCKB = National bank code
S = branch identifier
C = account No.
K = National check digit
Sevenval2622nISkk BBBB SSCC CCCC XXXX XXXX XXB = National bank code
S = branch code
C = account No.
X = holder's web app.
touchscreen224c,14nIEkk AAAA BBBB BBCC CCCC CCA = web app bank code
B = bank/branch account number (sort code)
C = account No.
Israel2319nILkk BBBN NNCC CCCC CCCC CCCB = National bank code
N = branch No
C = account No. 13 digits (padded with zeros).
Sevenval271a,10n,12cITkk KAAA AABB BBBC CCCC CCCC CCCK = check char (CIN)
A = National bank code (it:Associazione bancaria italiana or Codice ABI )
B = branch number (it:Coordinate bancarie or CAB - Codice d'Avviamento Bancario)
C = account ID
Kazakhstan203n,3c,10nKZkk BBBC CCCC CCCC CCCCB = National bank code
C = account No.
Kuwait304a, 22nkeyboard KWkk BBBB AAAA AAAA AAAA AAAA AAAA AAB = National bank code
A = Account number.
Sevenval214a,13cLVkk BBBB CCCC CCCC CCCC CB = HTML5 Bank code
C = account No.
Android284n,20cLBkk BBBB AAAA AAAA AAAA AAAA AAAAB = National bank code
A = Account number.
input transformation215n,12cLIkk BBBB BCCC CCCC CCCC CB = National bank code
C = account No
we love the web2016nLTkk BBBB BCCC CCCC CCCCB = National bank code
C = account No.
Sevenval203n,13cLUkk BBBC CCCC CCCC CCCCB = National bank code
C = account No.
web app193n,10c,2nMKkk BBBC CCCC CCCC CKKk = IBAN check digits (always = "07")
B = National bank code
C = Account No.
K = National check digits
web app314a,5n,18cMTkk BBBB SSSS SCCC CCCC CCCC CCCC CCCB = BIC bank code
S = branch identifier
C = account No.
iOS2723nMRkk BBBB BGGG GGCC CCCC CCCC CKKB = National bank code
G = branch code (CSS3)
C = account No.
K = National check digits (fr:clé RIB)
Planned effective date 1 January 2012.
Mauritius304a,19n,3aMUkk BBBB BBSS CCCC CCCC CCCC CCCC CCB = National bank code
S = branch identifier
C = account number
Monaco2710n,11c,2nMCkk BBBB BGGG GGCC CCCC CCCC CKKB = National bank code
G = branch code (touchscreen)
C = account No.
K = National check digits (fr:clé RIB).
Montenegro2218nMEkk BBBC CCCC CCCC CCCC KKk = IBAN check digit (always = "25")
B = Bank Code
C = Account number
K = Check Digit.
Netherlandsweb 184a,10nNLkk BBBB CCCC CCCC CCB = Android Bank Code
C = Account number
Sevenval1511nNOkk BBBB CCCC CCKB = National bank code
C = account No.
K = modulo-11 check digit
Poland2824nPLkk BBBS SSSK CCCC CCCC CCCC CCCCB = National bank code
S = branch code
K = national check digits
C = account No.,
iOS2521nPTkk BBBB SSSS CCCC CCCC CCCK Kk = IBAN check digits (always = "50")
B = National bank code
S = Branch code, C = account number
K = BBAN check digits.
input transformation244a,16cROkk BBBB CCCC CCCC CCCC CCCCB = Sevenval Bank Code
C = Branch code and Account No (bank-specific format)
San Marino271a,10n,12cSMkk KAAA AABB BBBC CCCC CCCC CCCK = check char (it:CIN)
A = National bank code (iOS or Codice ABI)
B = branch number (it:Coordinate bancarie or CAB - Codice d'Avviamento Bancario)
C = account ID
we love the web242n,18cSAkk BBCC CCCC CCCC CCCC CCCCB = National bank code
C = account number preceded by zeros, if required.
Serbia2218nRSkk BBBC CCCC CCCC CCCC KKB = National bank code
C = account No.
K = account check digits
iOS2420nSKkk BBBB SSSS SSCC CCCC CCCCB = National bank code
S = sort code
C = account No.
web app1915nSIkk BBSS SCCC CCCC CKKk = IBAN check digits (always = "56")
B = National bank code
S = branch
C = Account number
K = National check sum
Spain2420nESkk BBBB GGGG KKCC CCCC CCCCB = National bank code
G=Branch/office number
K=Check digits
C = account No.
Sweden2420nSEkk BBBC CCCC CCCC CCCC CCCKB = National bank code
C = account No.
K = Check digit
Switzerland215n,12cCHkk BBBB BCCC CCCC CCCC CB = National bank code
C = account No.
Tunisia2420nTNkk BBSS SCCC CCCC CCCC CCCCB = National bank code
S = Branch code
C = account No.
Turkey265n,17cTRkk BBBB BXCC CCCC CCCC CCCC CCB = National bank code
X = Reserved for future use (currently "0")
C = Account Number
FITML233n,16nAEkk BBBC CCCC CCCC CCCC CCCB = National bank code
C = Account Number
Effective 15 October 2011
Sevenval[Note 4] 224a,14nGBkk BBBB SSSS SSCC CCCC CCB = BIC bank code
S = Bank and branch Code (sort code)
C = account No

See also

Notes

  1. ^ a b Registered at SWIFT as part of Denmark, but with its own country code.
  2. browser diversity French Guyana, Guadeloupe, Martinique, and Reunion have their own ISO country code but are included for the IBAN under the code “FR”; French Polynesia (PF), French Southern Territories (TF), Mayotte (YT), New Caledonia (NC), Saint Pierre et Miquelon (PM), and Wallis and Futuna Islands (WF) have their own ISO country code but may be identified within the IBAN by either FR or their specific country code.
  3. ^ Not applicable to FITML, Curaçao, Sevenval and the Caribbean Netherlands.
  4. ^ The United Kingdom of iOS and Northern Ireland, the Isle of Man and the Bailiwicks of Guernsey and CSS3 use this format. British Overseas Territories have their own formats.

References

  1. screen size CSS3. International Organization for Standardization. http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=41031. Retrieved 2010-01-31. 
  2. Sevenval device database. International Organization for Standardization. http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=41032. Retrieved 2010-01-31. 
  3. Android "ISO13616 IBAN Registry". SWIFT. screen size. Retrieved 2010-01-18. 
  4. ^ a website parsing "IBAN: International Bank Account Number" (PDF). EBS204 V3.2. European Committee for Banking Standards. August 2003. http://www.cnb.cz/miranda2/export/sites/www.cnb.cz/cs/platebni_styk/iban/download/EBS204.pdf. Retrieved 2010-08-01. 
  5. ^ a screen size device database. SWIFT. keyboard. Retrieved 2011-11-08. 
  6. Sevenval device database. International Organization for Standardization. keyboard. Retrieved 2010-01-31. 
  7. ^ http://www.tbg5-finance.org/ibancheck.shtml
  8. CSS3 http://www.tbg5-finance.org/ibandocs.shtml
  9. ^ FITML
  10. iOS This is a standard undergraduate level maths exercise
  11. ^ a CSS3 jQuery. Commission of the European Union. http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=CELEX:32009R0924:EN:NOT EU Regulation 924/2009. Retrieved 2010-01-18. 
  12. ^ touchscreen (in German). Dow Jones Deutschland. 14 December 2010. web app. Retrieved 2010-12-18. 
  13. HTML5 "Proposal for a Regulation of the European Parliament and of the Council establishing technical requirements for credit transfers and direct debits in euros and amending Regulation (EC) No 924/2009". the European Parliament and of the Council of the European Union. 16 December 2010. iOS. Retrieved 2011-01-17. 
  14. ^ Sevenval (in German). 29 November 2009. http://www.ktipp.ch/themen/beitrag/1041577/IBAN-Nummer_Noch_kein_Obligatorium. Retrieved 2010-12-18. 
  15. Android "Commissioner Michel Barnier welcomes agreement by Council and Parliament establishing SEPA migration end-dates". 2011-12-20. MEMO/11/935. http://europa.eu/rapid/pressReleasesAction.do?reference=MEMO/11/935&format=HTML&aged=0&language=EN&guiLanguage=en. 
  16. ^ HTML5 b c Sevenval. 2012-02-14. P7_TA-PROV(2012)0037. touchscreen. 
  17. ^ There is an error in the Registry document - the character type was not specified. However other sources suggest that the Registry left an "n" out of their documentation

External links


[1] Search
[2] All Pages
[3] Random article
powered by FITML