HTML Entity for Lowercase T Comma Below (ț)

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
U+021BLatin Extended-B
țHexadecimal reference
țDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\021B";
}
</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 lowercase t comma below (ț) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase t comma below (ț) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ț uses the Unicode hexadecimal value 021B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ț uses the decimal Unicode value 539 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 Romanian letter.
CSS Entity
\021B 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+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:
Essential for correct modern Romanian spelling (e.g. țară, stație, acțiune). Use U+021B, not the legacy t-cedilla (U+0163).
Support proper rendering of Romanian place names, personal names, and content on international websites.
Teach correct Romanian spelling and distinguish comma below from cedilla and caron variants of t.
Ensure correct character display in digital publications, dictionaries, and government or legal documents in Romanian.
When building HTML from databases or CMS content, using ț or ț guarantees correct output.
Using the correct character (U+021B) with lang="ro" ensures assistive technologies pronounce Romanian content correctly.
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 (
țorț) when escaping is required - Set
lang="ro"on Romanian content for correct pronunciation hints - Use
\021Bin CSScontentwhen 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+0021Bor CSS\0021B—the correct code isU+021Band\021B - Put CSS escape
\021Bin HTML text nodes - Confuse ț (comma below) with ť (caron) or plain t (U+0074)
Key Takeaways
Type ț directly, or use hex/decimal references
ț țFor CSS stylesheets, use the escape in the content property
\021BUnicode U+021B — LATIN SMALL LETTER T WITH COMMA BELOW
Essential for modern Romanian; uppercase is Ț (U+021A)
Previous: Lowercase T Cedilla (ţ) Next: Lowercase T Curl
❓ Frequently Asked Questions
ț (hex), ț (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 (Ț).ț or ț, or the CSS entity \021B. In UTF-8 pages you can type ț directly.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.
8 people found this page helpful
