HTML Entity for Lowercase T Curl (ȶ)

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

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

Unicode U+0236

Latin Extended-B

Hex Code ȶ

Hexadecimal reference

HTML Code ȶ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the lowercase t curl (ȶ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\236";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0236;</p>
<p>Symbol (decimal): &#566;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase t curl (ȶ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

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

👀 Live Preview

See the lowercase t curl (ȶ) in phonetic and linguistic contexts:

Large glyphȶ
PhoneticsExtended notation where t-with-curl marks a palatalized or similar alveolar sound
LinguisticsAcademic papers and language documentation using Latin Extended-B
Not the same ast (plain)  |  ƫ (t palatal hook)  |  t hook
Numeric refs&#x0236; &#566; \236

🧠 How It Works

1

Hexadecimal Code

&#x0236; uses the Unicode hexadecimal value 0236 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#566; uses the decimal Unicode value 566 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

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:

🎤 Phonetic transcription

Extended phonetic notation where t-with-curl represents a palatalized or similar alveolar sound.

🔤 Linguistics

Academic papers, language documentation, and phonological descriptions using Latin Extended-B.

📖 Dictionaries

Pronunciation guides and reference works that include phonetic symbols such as ȶ.

🌐 Orthography

Writing systems that use the t-with-curl as a distinct letter or symbol.

🎨 Typography

Fonts and typographic systems supporting Latin Extended-B for phonetic use.

♿ Accessibility

Using U+0236 ensures screen readers interpret ȶ as one character, not t plus a mark.

⚙ Programmatic HTML

When generating phonetic markup, using &#566; or &#x0236; 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 t when ȶ 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+00236 or CSS \00236—the correct code is U+0236 and \236
  • Put CSS escape \236 in HTML text nodes

Key Takeaways

1

Three references render ȶ; no named entity exists

&#x0236; &#566;
2

For CSS stylesheets, use the escape in the content property

\236
3

Unicode U+0236 — LATIN SMALL LETTER T WITH CURL

4

Used in phonetic notation and some orthographies on the web

❓ Frequently Asked Questions

Use &#x0236; (hex), &#566; (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.
When writing phonetic transcriptions, linguistic content, extended phonetic notation, language documentation, and any text requiring the correct t-with-curl symbol for meaning and accessibility.
No. Use numeric codes &#x0236; or &#566;, or the CSS entity \236. In UTF-8 pages you can type ȶ directly.
ȶ (U+0236) is t with a curl in Latin Extended-B, used in extended phonetic notation. ƫ (U+01AB) is t with palatal hook, a distinct character in the same block. They are different Unicode code points used in different phonetic contexts.

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