HTML Entity for Uppercase T Diagonal Stroke (Ⱦ)

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
U+023ELatin Extended-B
ȾHexadecimal reference
ȾDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\023E";
}
</style>
</head>
<body>
<p>Symbol (hex): Ⱦ</p>
<p>Symbol (decimal): Ⱦ</p>
<p>Symbol (direct): Ⱦ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase T diagonal stroke (Ⱦ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase T diagonal stroke (Ⱦ) in typographic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ⱦ uses the Unicode hexadecimal value 023E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ⱦ uses the decimal Unicode value 574 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type Ⱦ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this specialized Latin letter.
CSS Entity
\023E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Used in Skolt Sámi orthography and related Sámi language content where Ⱦ represents a distinct letter form.
Appears in archival texts from the Shona orthography used between 1931 and 1955, as noted in the Unicode standard.
Used in academic papers, language documentation, and dictionaries describing extended Latin orthographies.
Support proper rendering of indigenous and minority-language content on international websites.
Ensure correct character display in digital publications, orthography guides, and linguistic resources.
Using the correct character (U+023E) with proper lang attributes helps assistive technologies handle specialized text appropriately.
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 (
ȾorȾ) when escaping is required - Use fonts that support Latin Extended-B characters
- Use
\023Ein CSScontentwhen 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
Twhen Ⱦ is required in orthographic text - Put CSS escape
\023Ein HTML text nodes - Use
U+0023Eor CSS\0023E—the correct code isU+023Eand\023E
Key Takeaways
Type Ⱦ directly, or use hex/decimal references
Ⱦ ȾFor CSS stylesheets, use the escape in the content property
\023EUnicode U+023E — LATIN CAPITAL LETTER T WITH DIAGONAL STROKE
Skolt Sámi & historical Shona; lowercase is ⱦ (U+2C66)
Previous: Uppercase T Comma Below (Ț) Next: Uppercase T Hook
❓ Frequently Asked Questions
Ⱦ (hex), Ⱦ (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 (ⱦ).Ⱦ or Ⱦ, or the CSS entity \023E. In UTF-8 pages you can type Ⱦ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
