HTML Entity for Lowercase T Comma Below (ț)

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

What You'll Learn

How to display the lowercase t with comma below (ț) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+021B in the Latin Extended-B block. It is the standard letter for modern Romanian (e.g. țară — country, stație — station, acțiune — action), representing a palatalized or affricate t sound.

Render it with ț, ț, or CSS escape \021B. There is no named HTML entity for this character. In UTF-8 documents you can also type ț directly.

⚡ Quick Reference — Lowercase T Comma Below Entity

Unicode U+021B

Latin Extended-B

Hex Code ț

Hexadecimal reference

HTML Code ț

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+021B
Hex code       ț
HTML code      ț
Named entity   (none)
CSS code       \021B
Meaning        Latin small letter t with comma below
Related        U+021A = Ț (uppercase)
               U+0163 = ţ (t cedilla—legacy)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase t comma below (ț) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\021B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x021B;</p>
<p>Symbol (decimal): &#539;</p>
<p>Symbol (direct): ț</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase t comma below (ț) 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 lowercase t comma below (ț) in language and content contexts:

Large glyphț
Romanianțară (country)  |  stație (station)  |  acțiune (action)
UppercaseȚ (U+021A) — no named entity
Not the same ast (plain)  |  ţ (cedilla)  |  ť (caron)
Numeric refs&#x021B; &#539; \021B

🧠 How It Works

1

Hexadecimal Code

&#x021B; uses the Unicode hexadecimal value 021B to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#539; uses the decimal Unicode value 539 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 Romanian letter.

HTML markup
4

CSS Entity

\021B 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+021B sits in Latin Extended-B. Uppercase equivalent: U+021A (Ț). Do not confuse with ţ (t cedilla) or plain t (U+0074).

Use Cases

The lowercase t comma below (ț) is commonly used in:

🇷🇴 Romanian

Essential for correct modern Romanian spelling (e.g. țară, stație, acțiune). Use U+021B, not the legacy t-cedilla (U+0163).

🌐 Multilingual Sites

Support proper rendering of Romanian place names, personal names, and content on international websites.

📚 Language Learning

Teach correct Romanian spelling and distinguish comma below from cedilla and caron variants of t.

📄 Typography & Publishing

Ensure correct character display in digital publications, dictionaries, and government or legal documents in Romanian.

⚙ Programmatic HTML

When building HTML from databases or CMS content, using &#539; or &#x021B; guarantees correct output.

♿ Accessibility

Using the correct character (U+021B) with lang="ro" ensures assistive technologies pronounce Romanian content correctly.

🎨 CSS Generated Content

Using \021B 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 (&#x021B; or &#539;) when escaping is required
  • Set lang="ro" on Romanian content for correct pronunciation hints
  • Use \021B in CSS content when generating the symbol via pseudo-elements
  • Use U+021B for modern Romanian—not U+0163 (t cedilla)

Don’t

  • Expect a named HTML entity—none exists for ț
  • Use ţ (t cedilla) in modern Romanian text where ț is required
  • Use U+0021B or CSS \0021B—the correct code is U+021B and \021B
  • Put CSS escape \021B in HTML text nodes
  • Confuse ț (comma below) with ť (caron) or plain t (U+0074)

Key Takeaways

1

Type ț directly, or use hex/decimal references

&#x021B; &#539;
2

For CSS stylesheets, use the escape in the content property

\021B
3

Unicode U+021B — LATIN SMALL LETTER T WITH COMMA BELOW

4

Essential for modern Romanian; uppercase is Ț (U+021A)

❓ Frequently Asked Questions

Use &#x021B; (hex), &#539; (decimal), or \021B in CSS content. There is no named HTML entity for ț. In UTF-8 you can also type ț directly.
U+021B (LATIN SMALL LETTER T WITH COMMA BELOW). Latin Extended-B block. Hex 021B, decimal 539. Standard in modern Romanian. Uppercase form is U+021A (Ț).
When displaying modern Romanian text, multilingual sites, place names, language learning content, or official documents that require the correct ț character. In UTF-8 pages you can type ț directly.
No. There is no named HTML entity for the lowercase t comma below (ț). Use numeric codes &#539; or &#x021B;, or the CSS entity \021B. In UTF-8 pages you can type ț directly.
Romanian uses U+021B (ț, comma below). U+0163 (ţ, cedilla) appears in legacy Romanian text and older encodings. Modern Romanian standard requires the comma-below character.

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