HTML Entity for Lowercase T Stroke (ŧ)

What You'll Learn
How to display the lowercase t with stroke (ŧ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0167 in the Latin Extended-A block. The stroke marks a distinct letter in Sámi orthographies (Northern Sami, Lule Sami, and Southern Sami) and appears in specialized linguistic and multilingual content.
Render it with ŧ, ŧ, ŧ, or CSS escape \0167. The named entity ŧ is the most readable option in HTML source.
⚡ Quick Reference — Lowercase T Stroke Entity
U+0167Latin Extended-A
ŧHexadecimal reference
ŧDecimal reference
ŧMost readable option
Name Value
──────────── ──────────
Unicode U+0167
Hex code ŧ
HTML code ŧ
Named entity ŧ
CSS code \0167
Meaning Latin small letter t with stroke
Related U+0166 = Ŧ (Ŧ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase t stroke (ŧ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0167";
}
</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 t stroke (ŧ) is widely supported in modern browsers when the font includes Latin Extended-A glyphs:
👀 Live Preview
See the lowercase t stroke (ŧ) in language and typography contexts:
🧠 How It Works
Hexadecimal Code
ŧ uses the Unicode hexadecimal value 0167 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŧ uses the decimal Unicode value 359 to display the same character. A common method when a numeric reference is needed.
Named Entity
ŧ is the named entity for t stroke—readable in source HTML and the preferred option for Sámi and multilingual content.
CSS Entity
\0167 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+0167 sits in Latin Extended-A. Uppercase equivalent: U+0166 (Ŧ, Ŧ). Do not confuse with plain t (U+0074), ť (caron), or ʇ (reverse).
Use Cases
The lowercase t stroke (ŧ) is commonly used in:
Essential for correct spelling in Northern Sami, Lule Sami, and Southern Sami orthographies where ŧ is a distinct letter.
Support proper rendering of Sámi names, place names, and content on international websites.
Teach correct spelling and pronunciation for Sámi and related Nordic language content.
Pronunciation keys and linguistic resources that include stroked t characters.
Ensure correct character display in digital publications and multilingual documents.
Using U+0167 with proper lang attributes (e.g. lang="se") helps assistive technologies pronounce content correctly.
Using \0167 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 appropriate
langattributes on Sámi content for correct pronunciation hints - Use
\0167in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ŧ (stroke) from ť (caron), ʇ (reverse), and plain t (U+0074)
Don’t
- Substitute plain
twhen ŧ is required in Sámi text - Confuse ŧ (stroke) with ť (caron) or ʇ (reverse)
- Use the old incorrect CSS escape
\00167—the correct value is\0167 - Put CSS escape
\0167in 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+0167 — LATIN SMALL LETTER T WITH STROKE
Essential for Sámi orthographies; uppercase is Ŧ (Ŧ)
Previous: Lowercase T Reverse (ʇ) Next: Lowercase Thorn
❓ Frequently Asked Questions
ŧ (named), ŧ (hex), ŧ (decimal), or \0167 in CSS content. In UTF-8 you can also type ŧ directly.U+0167 (LATIN SMALL LETTER T WITH STROKE). Latin Extended-A block. Hex 0167, decimal 359. Used in Sámi orthographies. Uppercase form is U+0166 (Ŧ).ŧ. You can also use ŧ or ŧ, or the CSS entity \0167.ŧ, ŧ, or ŧ) is used in HTML content; CSS entity \0167 is used in stylesheets in the content property of pseudo-elements. Both produce ŧ.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
