SEDOL vs ISIN: Differences, Conversion & When to Use Each

Last updated: March 2026 ยท 12 min read

If you work with UK or international securities, you've encountered both SEDOL and ISIN codes. While both identify financial instruments, they serve different markets and have distinct structures. This guide breaks down every difference, shows you how to convert between them, and explains which one to use in different situations.

๐Ÿ’ก Quick answer: SEDOL is a 7-character UK/Ireland identifier. ISIN is a 12-character global identifier that contains the SEDOL for GB-listed securities. Use our SEDOL to ISIN converter for instant conversion.

1. Side-by-Side Comparison

FeatureSEDOLISIN
Full NameStock Exchange Daily Official ListInternational Securities Identification Number
Length7 characters12 characters
Format6 alphanumeric + 1 check digit2 letters + 9 alphanumeric + 1 check digit
Geographic ScopeUK and Ireland (primary); also used globally by LSE GroupGlobal (used in 100+ countries)
Assigned ByLondon Stock Exchange Group (LSEG)National Numbering Agencies (NNAs) under ISO 6166
IdentifiesIndividual securities on specific exchangesSecurities globally, regardless of exchange
Country CodeNo (implicitly UK/IE)Yes (first 2 characters, e.g. GB, US, DE)
Contains Other IDsNoYes โ€” contains SEDOL (for GB securities), CUSIP (for US), etc.
Check Digit AlgorithmWeighted sum modulo 10 (weights: 1,3,1,7,3,9)Luhn algorithm (letters โ†’ numbers first)
Cost to AccessLicensed from LSEGVaries by country; some free, some licensed
Introduced19791981 (ISO 6166 standard)
Example (Vodafone)BH4HKS3GB00BH4HKS39
Example (Apple, US)2046251US0378331005

2. What Is a SEDOL?

SEDOL stands for Stock Exchange Daily Official List. It's a 7-character identifier created and maintained by the London Stock Exchange Group (LSEG). Originally designed for securities traded on the LSE, SEDOL has expanded to cover instruments globally โ€” though it remains most commonly associated with UK and Irish markets.

SEDOL Structure

SEDOL:  B H 4 H K S 3
        ^ ^ ^ ^ ^ ^ ^
        โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค โ”‚
        6 chars     Check digit
        (alphanumeric, no vowels)

Key rules for SEDOL codes:

  • No vowels allowed โ€” SEDOL codes never contain A, E, I, O, or U to avoid forming words
  • Old SEDOLs (pre-2004) are purely numeric and start with 0โ€“9
  • New SEDOLs (post-2004) start with a letter (B, C, D, etc.) to expand the namespace
  • The check digit uses a weighted sum with weights 1, 3, 1, 7, 3, 9, followed by modulo 10

Who Uses SEDOL?

  • Fund managers tracking UK and European equity positions
  • Custodian banks for settlement of LSE trades
  • Data vendors โ€” Bloomberg, Refinitiv, and FactSet all support SEDOL as a key identifier
  • SWIFT messages โ€” SEDOL is a recognized identifier in MT54x settlement messages
  • Index providers โ€” FTSE Russell uses SEDOL extensively for index construction

3. What Is an ISIN?

ISIN stands for International Securities Identification Number. Defined by ISO 6166, it's the global standard for identifying securities. Every country has a National Numbering Agency (NNA) responsible for assigning ISINs โ€” in the UK, this is the London Stock Exchange itself.

ISIN Structure

ISIN:   G B 0 0 B H 4 H K S 3 9
        ^ ^   ^ ^ ^ ^ ^ ^ ^ ^ ^
        โ”‚ โ”‚   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
        โ”‚ โ”‚    9-char NSIN    Check digit (Luhn)
        โ””โ”€โ”˜
        Country code (ISO 3166-1 alpha-2)

The 9-character National Securities Identifying Number (NSIN) in the middle is country-specific. For GB securities, the NSIN is built from the SEDOL code padded with leading zeros.

4. How SEDOL and ISIN Are Related

This is the most important thing to understand: for UK securities, the ISIN literally contains the SEDOL. The relationship is:

GB-ISIN = "GB" + "00" + [SEDOL] + [Check Digit]

Example (Vodafone):
  SEDOL:  BH4HKS3
  ISIN:   GB  00  BH4HKS3  9
          โ”€โ”€  โ”€โ”€  โ”€โ”€โ”€โ”€โ”€โ”€โ”€  โ”€
          Country Pad SEDOL  Check

Example (HSBC):
  SEDOL:  0540528
  ISIN:   GB  00  0540528  5
          โ”€โ”€  โ”€โ”€  โ”€โ”€โ”€โ”€โ”€โ”€โ”€  โ”€
          Country Pad SEDOL  Check

โš ๏ธ Important: This embedding only works for GB-listed securities. An Apple share traded in London may have a UK SEDOL, but Apple's primary ISIN is US0378331005 (based on CUSIP, not SEDOL). The same security can have both a SEDOL and a US-based ISIN.

What About Irish Securities?

Irish securities use the country code "IE" in their ISIN. The SEDOL is still used in the NSIN portion, but the prefix changes:

CRH plc (Irish building materials):
  SEDOL:  0182704
  ISIN:   IE  00  0182704  0

5. How to Convert Between SEDOL and ISIN

SEDOL โ†’ ISIN (Algorithmic for GB Securities)

For GB-listed securities, you can derive the ISIN from a SEDOL in three steps:

  1. Prepend "GB00" โ€” the ISO country code for the United Kingdom plus two padding zeros
  2. Append the SEDOL โ€” all 7 characters including the SEDOL check digit
  3. Calculate the ISIN check digit โ€” using the Luhn algorithm (convert letters to numbers: A=10, B=11, ..., Z=35, then apply double-alternate-sum mod 10)
Step-by-step: SEDOL BH4HKS3 โ†’ ISIN

1. Construct: GB00BH4HKS3?
2. Convert letters: G=16, B=11, B=11, H=17, H=17, K=20, S=28
   โ†’ 16 11 0 0 11 17 4 17 20 28 3 ?
3. Apply Luhn algorithm โ†’ check digit = 9
4. Result: GB00BH4HKS39

ISIN โ†’ SEDOL (Simple Extraction for GB Securities)

If you have a GB-ISIN, extracting the SEDOL is trivial:

ISIN:   GB00BH4HKS39
             โ”€โ”€โ”€โ”€โ”€โ”€โ”€
             Characters 5-11 = SEDOL
             
Result: BH4HKS3

โš ๏ธ For non-GB ISINs, you cannot extract a SEDOL algorithmically. A US ISIN like US0378331005 contains a CUSIP, not a SEDOL. To find the SEDOL for a US security, you need a database lookup. Use our ISIN to SEDOL converter for this.

Automated Conversion Tool

For bulk conversions or non-GB securities, use our free tools:

6. When to Use SEDOL vs ISIN

ScenarioUse SEDOLUse ISIN
Trading on LSE / Euronext Dublinโœ… Primary identifierโœ… Also accepted
Cross-border settlement (e.g. Euroclear)โŒ Not sufficientโœ… Required
UK regulatory reporting (FCA)โœ… Acceptedโœ… Preferred since MiFID II
EU regulatory reporting (ESMA)โŒ Not acceptedโœ… Required
US broker/dealer systemsโŒ Rarely usedโœ… Accepted (CUSIP preferred)
Bloomberg Terminal queriesโœ… Supportedโœ… Supported
FTSE index constructionโœ… Primary keyAlso used
SWIFT settlement messagesโœ… MT54x field :35Bโœ… MT54x field :35B
Internal portfolio systemsโœ… If UK-focusedโœ… If global

Rule of Thumb

Use SEDOL when:

  • โ€ข Working within UK/IE markets only
  • โ€ข Interfacing with LSE systems
  • โ€ข Using FTSE Russell data
  • โ€ข Legacy systems that predate ISIN adoption

Use ISIN when:

  • โ€ข Cross-border trading or settlement
  • โ€ข Regulatory reporting (MiFID II, EMIR)
  • โ€ข Building global portfolios
  • โ€ข Communicating with non-UK counterparts

7. Real-World Examples

Here are SEDOL and ISIN pairs for well-known securities:

CompanySEDOLISINNotes
Vodafone GroupBH4HKS3GB00BH4HKS39SEDOL embedded in ISIN
HSBC Holdings0540528GB0005405286Old-style numeric SEDOL
AstraZeneca0989529GB0009895292SEDOL visible in chars 5-11
Unilever (LSE)B10RZP7GB00B10RZP78New-style letter-prefix SEDOL
Shell plcB03MLX2GB00B03MLX29Redomiciled from NL to GB in 2022
Apple (US listing)2046251US0378331005SEDOL NOT in ISIN โ€” ISIN uses CUSIP
CRH plc (IE)0182704IE0001827041Irish ISIN, SEDOL still embedded

Notice the Apple row: Apple has a SEDOL (assigned by LSEG for cross-listing purposes), but its ISIN is US-based and contains the CUSIP 037833100, not the SEDOL. This is the key distinction โ€” SEDOL-to-ISIN mapping is only algorithmic for GB/IE-domiciled securities.

8. How They Compare to CUSIP, WKN & Other Identifiers

SEDOL and ISIN are part of a larger ecosystem of financial identifiers. Here's how they all fit together:

IdentifierRegionLengthEmbedded in ISIN?Example (Apple)
SEDOLUK/Ireland7Yes (GB/IE ISINs)2046251
CUSIPUS/Canada9Yes (US/CA ISINs)037833100
WKNGermany6No (different NSIN scheme)865985
VALORSwitzerland6-9Partially (CH ISINs)908440
FIGIGlobal12No (independent system)BBG000B9XRY4
ISINGlobal12โ€” (is the wrapper)US0378331005

Think of ISIN as the universal wrapper โ€” it takes the local identifier (SEDOL in the UK, CUSIP in the US, etc.), adds a country code, and appends a check digit to create a globally unique code.

For detailed comparisons with other identifiers, see:

9. Frequently Asked Questions

Can I always extract a SEDOL from an ISIN?

Only if the ISIN starts with "GB" or "IE". For these, characters 5โ€“11 are the SEDOL. For other country ISINs (US, DE, CH, etc.), there's no algorithmic relationship โ€” you need a database lookup.

Does every security have both a SEDOL and an ISIN?

Every SEDOL-assigned security will have a corresponding ISIN (since the NNA creates both). However, not every ISIN has a SEDOL โ€” US-only stocks, for instance, may not have a SEDOL unless LSEG has assigned one for cross-reference purposes.

Is SEDOL being phased out in favor of ISIN?

Not exactly. MiFID II (2018) made ISIN the required identifier for EU regulatory reporting, which increased ISIN's prominence. However, SEDOL remains widely used in UK domestic markets, by FTSE Russell for index composition, and in many custodian systems. Both will coexist for the foreseeable future.

Why doesn't SEDOL use vowels?

To prevent codes from accidentally forming offensive words. The consonant-only rule (B, C, D, F, G, H, J, K, L, M, N, P, Q, R, S, T, V, W, X, Y, Z plus digits) ensures all SEDOLs are clearly non-words.

How many SEDOLs exist?

LSEG has assigned millions of SEDOL codes covering securities across 170+ exchanges worldwide. The new letter-prefix format (introduced 2004) massively expanded the namespace from ~10 million to over 1 billion possible codes.

Is SEDOL free to use?

No โ€” SEDOL codes are proprietary to LSEG (London Stock Exchange Group). Using SEDOL data commercially requires a license from LSEG. However, individual lookups are widely available through financial data platforms and tools like our free converter.