HTML Entity for Uppercase T Diagonal Stroke (Ⱦ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+023E

What You'll Learn

How to display the uppercase T with diagonal stroke (Ⱦ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+023E in the Latin Extended-B block—a single precomposed glyph with a diagonal stroke through the letter T. Unicode associates it with Skolt Sámi and notes its use in a historical Shona orthography (1931–1955).

Render it with Ⱦ, Ⱦ, or CSS escape \023E. There is no named HTML entity for this character. In UTF-8 documents you can also type Ⱦ directly. Do not confuse Ⱦ with plain T (U+0054) or Ț (comma below).

⚡ Quick Reference — Uppercase T Diagonal Stroke Entity

Unicode U+023E

Latin Extended-B

Hex Code Ⱦ

Hexadecimal reference

HTML Code Ⱦ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+023E
Hex code       Ⱦ
HTML code      Ⱦ
Named entity   (none)
CSS code       \023E
Meaning        Latin capital letter t with diagonal stroke
Related        U+2C66 = ⱦ (lowercase)
               U+0054 = T (plain—not stroked)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase T diagonal stroke (Ⱦ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\023E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x023E;</p>
<p>Symbol (decimal): &#574;</p>
<p>Symbol (direct): Ⱦ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase T diagonal stroke (Ⱦ) is supported in all modern browsers as part of Latin Extended-B:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase T diagonal stroke (Ⱦ) in typographic and linguistic contexts:

Large glyphȾ
Unicode nameLatin capital letter t with diagonal stroke
Lowercaseⱦ (U+2C66) — Latin small letter t with diagonal stroke
Not the same asT (plain)  |  ŧ (horizontal stroke)  |  ȿ (s swash tail)
Numeric refs&#x023E; &#574; \023E

🧠 How It Works

1

Hexadecimal Code

&#x023E; uses the Unicode hexadecimal value 023E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#574; uses the decimal Unicode value 574 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type Ⱦ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this specialized Latin letter.

HTML markup
4

CSS Entity

\023E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ⱦ. Unicode U+023E sits in Latin Extended-B. Lowercase equivalent: U+2C66 (ⱦ). Do not confuse with ȿ (s swash tail), plain T (U+0054), or Ŧ (t with horizontal stroke).

Use Cases

The uppercase T diagonal stroke (Ⱦ) is commonly used in:

🇵 Skolt Sámi

Used in Skolt Sámi orthography and related Sámi language content where Ⱦ represents a distinct letter form.

🌎 Historical Shona

Appears in archival texts from the Shona orthography used between 1931 and 1955, as noted in the Unicode standard.

📚 Linguistic Documentation

Used in academic papers, language documentation, and dictionaries describing extended Latin orthographies.

🌐 Multilingual Sites

Support proper rendering of indigenous and minority-language content on international websites.

📄 Typography & Publishing

Ensure correct character display in digital publications, orthography guides, and linguistic resources.

♿ Accessibility

Using the correct character (U+023E) with proper lang attributes helps assistive technologies handle specialized text appropriately.

🎨 CSS Generated Content

Using \023E 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 numeric references (&#x023E; or &#574;) when escaping is required
  • Use fonts that support Latin Extended-B characters
  • Use \023E in CSS content when generating the symbol via pseudo-elements
  • Distinguish Ⱦ (diagonal stroke) from plain T (U+0054) and Ŧ (horizontal stroke)

Don’t

  • Describe Ⱦ as a standard IPA symbol—it is an extended Latin letter, not core IPA
  • Confuse Ⱦ with ȿ (s swash tail, U+023F)—a different character
  • Substitute plain T when Ⱦ is required in orthographic text
  • Put CSS escape \023E in HTML text nodes
  • Use U+0023E or CSS \0023E—the correct code is U+023E and \023E

Key Takeaways

1

Type Ⱦ directly, or use hex/decimal references

&#x023E; &#574;
2

For CSS stylesheets, use the escape in the content property

\023E
3

Unicode U+023E — LATIN CAPITAL LETTER T WITH DIAGONAL STROKE

4

Skolt Sámi & historical Shona; lowercase is ⱦ (U+2C66)

❓ Frequently Asked Questions

Use &#x023E; (hex), &#574; (decimal), or \023E in CSS content. There is no named HTML entity for Ⱦ. In UTF-8 you can also type Ⱦ directly.
U+023E (LATIN CAPITAL LETTER T WITH DIAGONAL STROKE). Latin Extended-B block. Hex 023E, decimal 574. Lowercase form is U+2C66 (ⱦ).
When displaying Skolt Sámi text, historical Shona orthography (1931–1955), linguistic documentation, multilingual sites, or extended Latin content that requires Ⱦ. In UTF-8 pages you can type Ⱦ directly.
No. There is no named HTML entity for the uppercase T diagonal stroke (Ⱦ). Use numeric codes &#574; or &#x023E;, or the CSS entity \023E. In UTF-8 pages you can type Ⱦ directly.
Ⱦ (U+023E) is Latin capital letter T with diagonal stroke, used in specialized orthographies such as Skolt Sámi. T (U+0054) is the standard Latin uppercase letter. They are different characters—do not substitute one for the other.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

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