HTML Entity for Lowercase T Curl (ȶ)

What You'll Learn
How to display the lowercase t with curl (ȶ) in HTML using hexadecimal, decimal, and CSS escape methods. The curl is a hook-shaped diacritic on the letter t, used in phonetic notation and some orthographies to represent a palatalized or similar alveolar sound. This character is U+0236 in the Latin Extended-B block.
Render it with ȶ, ȶ, or CSS escape \236. There is no named HTML entity for this character, so numeric codes or CSS must be used. In UTF-8 documents you can also type ȶ directly.
⚡ Quick Reference — Lowercase T Curl Entity
U+0236Latin Extended-B
ȶHexadecimal reference
ȶDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0236
Hex code ȶ
HTML code ȶ
Named entity (none)
CSS code \236
Meaning Latin small letter t with curl
Related U+0074 = t (plain lowercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase t curl (ȶ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\236";
}
</style>
</head>
<body>
<p>Symbol (hex): ȶ</p>
<p>Symbol (decimal): ȶ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase t curl (ȶ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the lowercase t curl (ȶ) in phonetic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ȶ uses the Unicode hexadecimal value 0236 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȶ uses the decimal Unicode value 566 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\236 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ȶ. Unicode U+0236 sits in Latin Extended-B. Do not confuse with plain t (U+0074), ƫ (t palatal hook), or t hook variants. Use the precomposed character for correct semantics in phonetic text.
Use Cases
The lowercase t curl (ȶ) is commonly used in:
Extended phonetic notation where t-with-curl represents a palatalized or similar alveolar sound.
Academic papers, language documentation, and phonological descriptions using Latin Extended-B.
Pronunciation guides and reference works that include phonetic symbols such as ȶ.
Writing systems that use the t-with-curl as a distinct letter or symbol.
Fonts and typographic systems supporting Latin Extended-B for phonetic use.
Using U+0236 ensures screen readers interpret ȶ as one character, not t plus a mark.
When generating phonetic markup, using ȶ or ȶ ensures correct output.
💡 Best Practices
Do
- Use U+0236 (ȶ) for t with curl; use U+0074 for plain t when semantics matter
- Serve pages as UTF-8; you can also type ȶ directly in UTF-8 source
- Use fonts that support Latin Extended-B for phonetic and linguistic text
- Prefer the precomposed character U+0236 over combining forms
- Pick one entity style (hex or decimal) per project for consistency
Don’t
- Substitute plain
twhen ȶ is required for correct phonetic notation - Confuse ȶ (t with curl) with ƫ (t palatal hook) or t hook variants
- Expect a named HTML entity—none exists for this character
- Use
U+00236or CSS\00236—the correct code isU+0236and\236 - Put CSS escape
\236in HTML text nodes
Key Takeaways
Three references render ȶ; no named entity exists
ȶ ȶFor CSS stylesheets, use the escape in the content property
\236Unicode U+0236 — LATIN SMALL LETTER T WITH CURL
Used in phonetic notation and some orthographies on the web
Previous: Lowercase T Comma Below (ț) Next: Lowercase T Hook
❓ Frequently Asked Questions
ȶ (hex), ȶ (decimal), or \236 in CSS content. There is no named HTML entity for ȶ. In UTF-8 you can also type the character directly.U+0236 (LATIN SMALL LETTER T WITH CURL). Latin Extended-B block. Hex 0236, decimal 566. Used in phonetic notation and some orthographies.ȶ or ȶ, or the CSS entity \236. 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
