HTML Entity for Combining Palatalized Hook Below (̡)

What You'll Learn
How to display the Combining Palatalized Hook Below (̡) in HTML and CSS. This character is U+0321 (COMBINING PALATALIZED HOOK BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It is a nonspacing mark that attaches below the preceding base character—for example t̡ for palatalization notation in IPA and linguistics.
There is no named HTML entity for U+0321. Use ̡, ̡, or \321 in CSS content. Place the mark immediately after the base letter with no space. Do not confuse with U+0322 (̢, retroflex hook below), U+0309 (̉, hook above), or precomposed letters like U+0288 (ʈ, t with palatal hook).
⚡ Quick Reference — Palatalized Hook Below
U+0321Combining Diacritical Marks (U+0300–U+036F)
̡Hexadecimal reference
̡Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0321
Hex code ̡
HTML code ̡
Named entity (none)
CSS code \321
Meaning Palatalized hook below (combining)
Position Below base letter
Example t̡ (t + mark)
Related U+0322 = retroflex hook below (̢)
U+0309 = hook above (̉)
U+0288 = t with palatal hook (ʈ)
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing U+0321 using hexadecimal and decimal references with base letters, plus a CSS content escape. Always place the combining mark after the base character:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\321";
}
</style>
</head>
<body>
<p>Palatalized hook (hex): t̡ d̡</p>
<p>Palatalized hook (decimal): t̡ d̡</p>
<p>Standalone mark (hex): ̡</p>
<p id="point">Palatalized hook (CSS): t</p>
</body>
</html>🌐 Browser Support
U+0321 is supported in modern browsers when placed after a base character and rendered with a font that supports Combining Diacritical Marks:
👀 Live Preview
See the palatalized hook below a base character (IPA/linguistics font recommended):
🧠 How It Works
Hexadecimal Code
̡ references code point U+0321 using hex digits 0321. Place it immediately after the base character (e.g. t̡).
Decimal HTML Code
̡ uses the decimal Unicode value 801 for the same combining mark.
CSS Entity
\321 is the CSS escape for U+0321, used in the content property of pseudo-elements after a base character in markup.
Hook below base character
Place U+0321 right after the base: t̡. Next: Paragraph Sign (¶).
Use Cases
The Combining Palatalized Hook Below (̡) commonly appears in:
International Phonetic Alphabet transcriptions marking palatalization.
Phonology, dialectology, and language documentation pages.
Pronunciation guides and comparative language resources.
Scholarly web articles with phonetic transcription.
Character pickers, entity documentation, and diacritic guides.
Use IPA-capable fonts (Charis SIL, Doulos SIL, Noto) for reliable rendering.
💡 Best Practices
Do
- Place
̡or̡immediately after the base character - Use
<meta charset="utf-8">on pages with combining marks - Choose fonts with IPA and combining mark support (Charis SIL, Doulos SIL, Noto)
- Use hex or decimal consistently within one document
- Prefer precomposed IPA letters (e.g. ʈ) when available for simpler markup
Don’t
- Confuse U+0321 (palatalized hook below) with U+0322 (retroflex hook below)
- Use padded Unicode notation like U+00321—the correct value is
U+0321 - Put a space between the base character and the combining entity
- Put the combining mark before the base character
- Expect a named HTML entity for U+0321—use numeric references only
Key Takeaways
Two HTML numeric references plus CSS for U+0321
̡ ̡For CSS stylesheets, use \321 in the content property
U+0321 — COMBINING PALATALIZED HOOK BELOW
Always place the mark after the base letter (e.g. t̡)
Previous: Overline (‾) Next: Paragraph Sign (¶)
❓ Frequently Asked Questions
̡ (hex), ̡ (decimal), or \321 in CSS content. Place the mark right after the base character (e.g. t̡). There is no named entity.U+0321 (COMBINING PALATALIZED HOOK BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0321, decimal 801. Attaches below the base character.t̡ with no space between the base and the entity.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
