HTML Entity for Lowercase Eth (ð)

What You'll Learn
How to display the lowercase eth (ð) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Used in Icelandic, Faroese, and Old English, eth represents the voiced “th” sound (as in “this” or “then”). It is U+00F0 in the Latin-1 Supplement block.
Render it with ð, ð, ð, or CSS escape \00F0. The named entity ð is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase Eth Entity
U+00F0Latin-1 Supplement
ðHexadecimal reference
ðDecimal reference
ðMost readable option
Name Value
──────────── ──────────
Unicode U+00F0
Hex code ð
HTML code ð
Named entity ð
CSS code \00F0
Meaning Latin small letter eth
Also known as Lowercase eth
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase eth (ð) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00F0";
}
</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 lowercase eth (ð) and the named entity ð are supported in all modern browsers:
👀 Live Preview
See the lowercase eth (ð) in linguistic and language contexts:
d🧠 How It Works
Hexadecimal Code
ð uses the Unicode hexadecimal value F0 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ð uses the decimal Unicode value 240 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ð is the standard named entity for ð—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\00F0 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+00F0 sits in Latin-1 Supplement. Do not confuse ð (eth, voiced th) with þ (thorn, voiceless th) or plain d (U+0064).
Use Cases
The lowercase eth (ð) is commonly used in:
Correct spelling of Icelandic words (e.g. eða, faðir, við).
Faroese language websites and content requiring the eth letter.
Medieval texts, philology sites, and historical reproductions.
Phonetic notation and academic content on Germanic languages.
Websites and apps targeting Icelandic or Faroese audiences.
Correct encoding so Icelandic content is indexed and found accurately.
Font documentation and typographic projects using historical letters.
💡 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
lang="is"orlang="fo"on relevant content - Use fonts that support Latin-1 Supplement characters
- Distinguish ð (eth, voiced th) from þ (thorn, voiceless th)
Don’t
- Substitute
thor plaindwhen ð is required - Confuse ð (eth) with þ (thorn) or the Greek delta δ
- Put CSS escape
\00F0in HTML text nodes - Assume all fonts render eth and thorn identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ð; named entity is most readable
ð ð ðFor CSS stylesheets, use the escape in the content property
\00F0Unicode U+00F0 — LATIN SMALL LETTER ETH
Essential for Icelandic, Faroese, Old English, and linguistic content
Previous: Lowercase Esszed (ß) Next: Lowercase Ezh Caron
❓ Frequently Asked Questions
ð (named), ð (hex), ð (decimal), or \00F0 in CSS content. All four methods render ð correctly.U+00F0 (LATIN SMALL LETTER ETH). Latin-1 Supplement block. Hex F0, decimal 240. Used in Icelandic, Faroese, and Old English for the voiced th sound.ð is easier to read in hand-written HTML. Numeric codes (ð or ð) are useful when generating HTML programmatically. All produce the same character ð.U+00F0) represents the voiced th sound (as in “this”). Thorn (U+00FE) represents the voiceless th sound (as in “thin”). They are distinct letters in Icelandic and Old English.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
