Lowercase t with stroke (ŧ) is the Latin Extended-A character at Unicode U+0167 (LATIN SMALL LETTER T WITH STROKE). A bar crosses through the letter. It appears in Sámi orthographies. HTML5 defines the named entity ŧ.
Remember
Character ŧ
Unicode U+0167
Named entity ŧ
Hex entity ŧ
Decimal ŧ
CSS escape \0167
All of these produce the same glyph: ŧ. Prefer ŧ or a pasted ŧ in UTF-8 pages; use numeric or CSS forms when you need them.
Reference
Quick Reference
One table for every form you will actually use.
Form
Code
Where it goes
Direct character
ŧ
HTML text (UTF-8 default)
Named entity
ŧ
HTML markup (readable choice)
Hex entity
ŧ
HTML markup
Decimal entity
ŧ
HTML markup
CSS escape
\0167
Stylesheet content
When to Use Which
Situation
Use
Sámi / multilingual UTF-8 text
Type or paste ŧ
Readable entity in HTML source
ŧ
Numeric entity required
ŧ or ŧ
Generated text via ::before / ::after
content: "\0167"
Plain t or t with cedilla (ţ)
Different characters — see Related Topics
See it
Live Preview
Lowercase t with stroke rendered in common contexts.
Sámi sampleŧ
Large glyphŧ
Case pairŦ ŧ
With entitiesNamed: ŧ | Hex: ŧ | Decimal: ŧ
Not the samet (U+0074) · ţ (ţ)
Code
Complete HTML Example
One page that shows lowercase t with stroke with named, hex, decimal, and CSS forms. Use View Output or open the live editor.
Named + Hex + Decimal + CSS
Four ways to produce ŧ in a single document.
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lowercase T Stroke (ŧ) in HTML</title>
<style>
#point::after {
content: "\0167";
}
</style>
</head>
<body>
<p>T Stroke using Named Entity: ŧ</p>
<p>T Stroke using Hex Code: ŧ</p>
<p>T Stroke using HTML Code: ŧ</p>
<p id="point">T Stroke using CSS Entity: </p>
</body>
</html>
T Stroke using Named Entity: ŧ
T Stroke using Hex Code: ŧ
T Stroke using HTML Code: ŧ
T Stroke using CSS Entity: ŧ
How It Works
1. Named:ŧ is the HTML5 named entity for U+0167. Clearest form in HTML source.
2. Hex:U+0167 → ŧ in HTML. Same glyph as named.
3. Decimal: same code point as 359 → ŧ. Same result.
4. CSS: use \0167 in content (not an HTML entity). #point::after appends that ŧ after the paragraph text.
Pitfalls & Tips
Common mistakes when working with the t stroke entity.
Named
Prefer ŧ
HTML5 defines a named entity for this letter — use it for readable HTML.
CSS vs HTML
Do not mix escapes
\0167 belongs in CSS. ŧ / ŧ / ŧ belong in HTML.
Look-alikes
Not t or ţ
Plain t is U+0074; t cedilla ţ is U+0163. Stroke is a bar through the letter.
Case
ŧ vs Ŧ
Uppercase is U+0166 (Ŧ) — a different code point from U+0167.
Semicolon
End references
Always finish with ; — write ŧ, not &tstrok.
UTF-8
Declare charset
If you paste ŧ directly, serve the page as UTF-8 with <meta charset="UTF-8">.
Compatibility
Browser Support
Lowercase t with stroke (U+0167) and its entity forms (ŧ, ŧ, ŧ, CSS \\0167) are supported in all mainstream browsers.
✓ Universal support
Lowercase T Stroke (ŧ)
Use ŧ, paste ŧ, or encode with hex, decimal, or CSS escape — same glyph everywhere.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerAll versions
Yes
U+0167 / entitiesFull support
Bottom line: Prefer ŧ or a pasted ŧ in UTF-8 text. Use ŧ / ŧ when a numeric form is required, and \\0167 only inside CSS content.
Remember
Key Takeaways
Unicode: t with stroke is U+0167 (decimal 359), Latin Extended-A.
HTML: prefer ŧ, or use ŧ / ŧ.
CSS: use \0167 inside content for generated text.
Use: Sámi orthography — not the same as plain t or ţ.
One line:U+0167 → ŧ, or ŧ / ŧ / CSS \0167.
Frequently Asked Questions
Use ŧ (named), ŧ (hex), ŧ (decimal), or the CSS escape \0167 in the content property. All render ŧ. In UTF-8 files you can also type or paste ŧ directly.
U+0167 (LATIN SMALL LETTER T WITH STROKE). Hex 0167, decimal 359. It belongs to Latin Extended-A and appears in Sámi orthographies.
Yes. HTML5 defines ŧ for this character. You can also use numeric references ŧ or ŧ.
Use it for Sámi and other languages that need ŧ, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer ŧ when you want a readable named form in HTML source.
HTML entities (ŧ, ŧ, or ŧ) go in markup. The CSS escape \0167 is used in stylesheets (usually in the content property of ::before/::after). Both render ŧ.
Plain t is U+0074. T with cedilla ţ is U+0163 (ţ). T with stroke ŧ is U+0167 — a bar through the letter. Do not substitute one for another.
🤔
Did you know?
Lowercase t with stroke (ŧ) is Unicode U+0167 (decimal 359) in Latin Extended-A. HTML5 defines the named entity ŧ — also usable as ŧ or ŧ. Used in Sámi orthographies.