HTML Entity for Uppercase D Strike (Ð)

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
U+00D0Latin-1 Supplement
ÐHexadecimal reference
ÐDecimal reference
ÐMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00D0";
}
</style>
</head>
<body>
<p>Symbol (hex): Ð</p>
<p>Symbol (decimal): Ð</p>
<p>Symbol (named): Ð</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase D strike (Ð) and the named entity Ð are supported in all modern browsers:
👀 Live Preview
See the uppercase D strike (Ð) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ð uses the Unicode hexadecimal value D0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ð uses the decimal Unicode value 208 to display the same character. A common method for Latin-1 Supplement characters.
Named Entity
Рis the standard named entity for Зreadable in source HTML and part of the HTML5 entity set.
CSS Entity
\00D0 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ð. Unicode U+00D0 sits in Latin-1 Supplement. Lowercase equivalent: U+00F0 (ð). Do not confuse Ð (eth) with Đ (D stroke) or plain D (U+0044).
Use Cases
The uppercase D strike (Ð) is commonly used in:
Icelandic-language websites, documents, and content requiring the eth character in the Latin alphabet.
Faroese language content, proper names, and localized text using Ð.
International websites and localization projects supporting Nordic and European languages.
Personal names, place names, and brands that include Ð.
Old English texts, phonetic notation, and language learning materials.
Scholarly papers, research documents, and academic publications on Nordic languages.
Historical documents, transcriptions, and archival content requiring proper eth representation.
💡 Best Practices
Do
- Use
Ðin HTML when possible for readability - Serve pages as UTF-8; you can also type Ð directly in UTF-8 source
- Set
langattributes (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
Dwhen Ð is required for correct spelling - Confuse Ð (eth) with Đ (D stroke) or other D variants
- Put CSS escape
\00D0in HTML text nodes - Assume all fonts render Latin-1 glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ð; named entity is most readable
Ð Ð ÐFor CSS stylesheets, use the escape in the content property
\00D0Unicode U+00D0 — LATIN CAPITAL LETTER ETH
Essential for Icelandic, Faroese, and i18n content
Previous: Uppercase D Hook (Ɗ) Next: Uppercase D Stroke (Đ)
❓ Frequently Asked Questions
Ð (named), Ð (hex), Ð (decimal), or \00D0 in CSS content. The named entity Ð 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.Ð or Ð) or the named entity Ð 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.Ð. It is part of the HTML5 entity set and is well supported. You can also use Ð or Ð for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
