HTML Entity for Uppercase D Strike (Ð)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00D0

What You'll Learn

How to display the uppercase D strike (Ð), also called eth, in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER ETH, this character is used in Icelandic, Faroese, Old English, and linguistic contexts. It is U+00D0 in the Latin-1 Supplement block.

Render it with Ð, Ð, Ð, or CSS escape \00D0. The named entity Ð is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase D Strike Entity

Unicode U+00D0

Latin-1 Supplement

Hex Code Ð

Hexadecimal reference

HTML Code Ð

Decimal reference

Named Entity Ð

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00D0
Hex code       Ð
HTML code      Ð
Named entity   Ð
CSS code       \00D0
Meaning        Latin capital letter eth
Related        U+00F0 = ð (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase D strike (Ð) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00D0";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xD0;</p>
<p>Symbol (decimal): &#208;</p>
<p>Symbol (named): &ETH;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase D strike (Ð) and the named entity &ETH; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase D strike (Ð) in language and content contexts:

Large glyphÐ
Character typeLatin capital letter eth
Case pairÐ (U+00D0) / ð (U+00F0)
Named entity&ETH; renders as Ð
Not the same asĐ (D stroke) or plain D (U+0044)
Numeric refs&#xD0; &#208; &ETH; \00D0

🧠 How It Works

1

Hexadecimal Code

&#xD0; uses the Unicode hexadecimal value D0 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#208; uses the decimal Unicode value 208 to display the same character. A common method for Latin-1 Supplement characters.

HTML markup
3

Named Entity

&ETH; is the standard named entity for Зreadable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\00D0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ð. Unicode U+00D0 sits in Latin-1 Supplement. Lowercase equivalent: U+00F0 (&eth;). Do not confuse Ð (eth) with Đ (D stroke) or plain D (U+0044).

Use Cases

The uppercase D strike (Ð) is commonly used in:

🇮🇸 Icelandic

Icelandic-language websites, documents, and content requiring the eth character in the Latin alphabet.

🇳🇴 Faroese

Faroese language content, proper names, and localized text using Ð.

🌐 Multilingual sites

International websites and localization projects supporting Nordic and European languages.

📝 Proper names

Personal names, place names, and brands that include Ð.

🔤 Linguistics

Old English texts, phonetic notation, and language learning materials.

📄 Academic publishing

Scholarly papers, research documents, and academic publications on Nordic languages.

📖 Historical content

Historical documents, transcriptions, and archival content requiring proper eth representation.

💡 Best Practices

Do

  • Use &ETH; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ð directly in UTF-8 source
  • Set lang attributes (e.g. lang="is", lang="fo") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Ð (eth, U+00D0) from Đ (D stroke) and plain D (U+0044)

Don’t

  • Substitute plain D when Ð is required for correct spelling
  • Confuse Ð (eth) with Đ (D stroke) or other D variants
  • Put CSS escape \00D0 in HTML text nodes
  • Assume all fonts render Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ð; named entity is most readable

&#xD0; &#208; &ETH;
2

For CSS stylesheets, use the escape in the content property

\00D0
3

Unicode U+00D0 — LATIN CAPITAL LETTER ETH

4

Essential for Icelandic, Faroese, and i18n content

❓ Frequently Asked Questions

Use &ETH; (named), &#xD0; (hex), &#208; (decimal), or \00D0 in CSS content. The named entity &ETH; is the most readable for HTML content.
U+00D0 (LATIN CAPITAL LETTER ETH). Latin-1 Supplement block. Hex D0, decimal 208. Used in Icelandic, Faroese, Old English, and other languages.
When writing Icelandic, Faroese, or Old English content, proper names, multilingual websites, academic papers, and any text requiring the uppercase eth character.
HTML code (&#208; or &#xD0;) or the named entity &ETH; is used in HTML content. The CSS entity (\00D0) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ð but in different contexts.
Yes. The named HTML entity is &ETH;. It is part of the HTML5 entity set and is well supported. You can also use &#208; or &#xD0; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful