HTML Entity for Lowercase T Stroke (ŧ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+0167

What Is the Lowercase T Stroke Entity?

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.

Quick Reference

One table for every form you will actually use.

FormCodeWhere 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\0167Stylesheet content

When to Use Which

SituationUse
Sámi / multilingual UTF-8 textType or paste ŧ
Readable entity in HTML sourceŧ
Numeric entity requiredŧ or ŧ
Generated text via ::before / ::aftercontent: "\0167"
Plain t or t with cedilla (ţ)Different characters — see Related Topics

Live Preview

Lowercase t with stroke rendered in common contexts.

Sámi sample ŧ
Large glyph ŧ
Case pair Ŧ ŧ
With entities Named: ŧ | Hex: ŧ | Decimal: ŧ
Not the same t (U+0074) · ţ (ţ)

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: &tstrok;</p>
  <p>T Stroke using Hex Code: &#x0167;</p>
  <p>T Stroke using HTML Code: &#359;</p>
  <p id="point">T Stroke using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &tstrok; is the HTML5 named entity for U+0167. Clearest form in HTML source.

2. Hex: U+0167 → &#x0167; in HTML. Same glyph as named.

3. Decimal: same code point as 359 → &#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 &tstrok;

HTML5 defines a named entity for this letter — use it for readable HTML.

CSS vs HTML

Do not mix escapes

\0167 belongs in CSS. &tstrok; / &#x0167; / &#359; 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 (&Tstrok;) — a different code point from U+0167.

Semicolon

End references

Always finish with ; — write &tstrok;, not &tstrok.

UTF-8

Declare charset

If you paste ŧ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase t with stroke (U+0167) and its entity forms (&tstrok;, &#x0167;, &#359;, CSS \\0167) are supported in all mainstream browsers.

✓ Universal support

Lowercase T Stroke (&#x0167;)

Use &tstrok;, paste ŧ, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0167 / entities Full support

Bottom line: Prefer &tstrok; or a pasted ŧ in UTF-8 text. Use &#x0167; / &#359; when a numeric form is required, and \\0167 only inside CSS content.

Key Takeaways

  • Unicode: t with stroke is U+0167 (decimal 359), Latin Extended-A.
  • HTML: prefer &tstrok;, or use &#x0167; / &#359;.
  • CSS: use \0167 inside content for generated text.
  • Use: Sámi orthography — not the same as plain t or ţ.

One line: U+0167 → &tstrok;, or &#x0167; / &#359; / CSS \0167.

Frequently Asked Questions

Use &tstrok; (named), &#x0167; (hex), &#359; (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 &tstrok; for this character. You can also use numeric references &#359; or &#x0167;.
Use it for Sámi and other languages that need ŧ, linguistic examples, CSS-generated content, or when encoding must be explicit. Prefer &tstrok; when you want a readable named form in HTML source.
HTML entities (&tstrok;, &#359;, or &#x0167;) 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 (&tcedil;). 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 &tstrok; — also usable as &#x0167; or &#359;. Used in Sámi orthographies.

Next: Lowercase Thorn

Learn the HTML entity for lowercase thorn (þ) — the next letter in this entity sequence.

Lowercase Thorn tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful