HTML Entity for Uppercase Thorn (Þ)

What You'll Learn
How to display the uppercase thorn (Þ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Used in Icelandic, Faroese, and Old English, thorn represents the voiceless “th” sound (as in “thin” or “think”). It is U+00DE in the Latin-1 Supplement block and pairs with lowercase þ (U+00FE).
Render it with Þ, Þ, Þ, or CSS escape \00DE. The named entity Þ is often the most readable option in HTML source. Do not confuse Þ (thorn) with Ð (eth, voiced th).
⚡ Quick Reference — Uppercase Thorn Entity
U+00DELatin-1 Supplement
ÞHexadecimal reference
ÞDecimal reference
ÞMost readable option
Name Value
──────────── ──────────
Unicode U+00DE
Hex code Þ
HTML code Þ
Named entity Þ
CSS code \00DE
Meaning Latin capital letter thorn
Also known as Uppercase thorn
Related U+00FE = þ (þ)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase thorn (Þ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00DE";
}
</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 thorn (Þ) and the named entity Þ are supported in all modern browsers:
👀 Live Preview
See the uppercase thorn (Þ) in linguistic and language contexts:
🧠 How It Works
Hexadecimal Code
Þ uses the Unicode hexadecimal value DE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Þ uses the decimal Unicode value 222 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
\00DE 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+00DE sits in Latin-1 Supplement. Do not confuse Þ (thorn, voiceless th) with Ð (eth, voiced th) or plain P (U+0050). Lowercase equivalent: U+00FE (þ, þ).
Use Cases
The uppercase thorn (Þ) is commonly used in:
Essential for correct Icelandic spelling at word starts (e.g. Þú, Þetta). Thorn is a core letter of the Icelandic alphabet.
Used in Faroese orthography alongside eth for distinct th sounds.
Medieval and historical texts, academic resources, and digitized manuscripts using thorn.
Phonetic notation and language documentation for voiceless dental fricative sounds.
Support proper rendering of Icelandic and Nordic language content on international websites.
Using U+00DE with proper lang attributes (e.g. lang="is") helps assistive technologies pronounce content correctly.
Using \00DE in the CSS content property to insert Þ via pseudo-elements.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Þ directly in UTF-8 source
- Use
Þfor readable HTML when a named form is preferred - Set
lang="is"or appropriate language attributes on Icelandic content - Use
\00DEin CSScontentwhen generating the symbol via pseudo-elements - Distinguish Þ (thorn, voiceless th) from Ð (eth, voiced th)
Don’t
- Substitute plain
PorThwhen Þ is required in Icelandic text - Confuse thorn (Þ) with eth (Ð)—they represent different sounds; see lowercase eth
- Use the incorrect CSS escape
\0DE—the correct value is\00DE - Put CSS escape
\00DEin HTML text nodes - Double-encode entity references in dynamically generated HTML
Key Takeaways
The named entity is the most readable form
ÞNumeric alternatives: hex and decimal
Þ ÞUnicode U+00DE — LATIN CAPITAL LETTER THORN
Voiceless th in Icelandic; lowercase is þ (þ)
Previous: Uppercase T Stroke (Ŧ) Next: Uppercase U
❓ Frequently Asked Questions
Þ (named), Þ (hex), Þ (decimal), or \00DE in CSS content. In UTF-8 you can also type Þ directly.U+00DE (LATIN CAPITAL LETTER THORN). Latin-1 Supplement block. Hex DE, decimal 222. Used in Icelandic, Faroese, and Old English. Lowercase form is U+00FE (þ).Þ. You can also use Þ or Þ, or the CSS entity \00DE.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
