HTML Entity for Lowercase Thorn (þ)

What You'll Learn
How to display the lowercase 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+00FE in the Latin-1 Supplement block.
Render it with þ, þ, þ, or CSS escape \00FE. The named entity þ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase Thorn Entity
U+00FELatin-1 Supplement
þHexadecimal reference
þDecimal reference
þMost readable option
Name Value
──────────── ──────────
Unicode U+00FE
Hex code þ
HTML code þ
Named entity þ
CSS code \00FE
Meaning Latin small letter thorn
Also known as Lowercase thorn
Related U+00DE = Þ (Þ)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase thorn (þ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00FE";
}
</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 thorn (þ) and the named entity þ are supported in all modern browsers:
👀 Live Preview
See the lowercase thorn (þ) in linguistic and language contexts:
p🧠 How It Works
Hexadecimal Code
þ uses the Unicode hexadecimal value FE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
þ uses the decimal Unicode value 254 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
\00FE 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+00FE sits in Latin-1 Supplement. Do not confuse þ (thorn, voiceless th) with ð (eth, voiced th) or plain p (U+0070). Uppercase equivalent: U+00DE (Þ, Þ).
Use Cases
The lowercase thorn (þ) is commonly used in:
Essential for correct Icelandic spelling (e.g. þú, þetta, það). 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 Faroese names, place names, and content.
Using U+00FE with proper lang attributes (e.g. lang="is") helps assistive technologies pronounce content correctly.
Using \00FE 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"orlang="fo"on Icelandic/Faroese content for correct pronunciation hints - Use
\00FEin CSScontentwhen generating the symbol via pseudo-elements - Distinguish þ (thorn, voiceless th) from ð (eth, voiced th)
Don’t
- Substitute
thor plainpwhen þ is required in Icelandic or Old English text - Confuse þ (thorn) with ð (eth)—they represent different sounds
- Use the old incorrect CSS escape
\000FE—the correct value is\00FE - Put CSS escape
\00FEin 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+00FE — LATIN SMALL LETTER THORN
Voiceless th in Icelandic and Old English; uppercase is Þ (Þ)
Previous: Lowercase T Stroke (ŧ) Next: Lowercase U (u)
❓ Frequently Asked Questions
þ (named), þ (hex), þ (decimal), or \00FE in CSS content. In UTF-8 you can also type þ directly.U+00FE (LATIN SMALL LETTER THORN). Latin-1 Supplement block. Hex FE, decimal 254. Used in Icelandic, Faroese, and Old English. Uppercase form is U+00DE (Þ).þ is readable in HTML source. Numeric codes (þ or þ) achieve the same result and are useful when generating markup programmatically. Both produce þ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
