HTML Entity for Right Tack Below (̙)

What You'll Learn
How to insert the combining Right Tack Below (U+0319) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is used in phonetic transcription, IPA (International Phonetic Alphabet), mathematical notation, type theory, and linguistics (e.g. a̙, o̙).
It is U+0319 (COMBINING RIGHT TACK BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̙, ̙, or CSS \0319. There is no named HTML entity. Always place the code after the base character. Do not confuse it with U+22A2 (⊢, spaced right tack / ⊢).
⚡ Quick Reference — Right Tack Below
U+0319Combining Diacritical Marks
̙Hexadecimal reference
̙Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0319
Hex code ̙
HTML code ̙
Named entity (none)
CSS code \0319
Meaning Combining right tack below
Position Below base letter
IPA example a̙
Related U+22A2 = right tack (⊢ / ⊢)
U+031D = combining right tack above (̝)Complete HTML Example
A simple example showing the Right Tack Below (U+0319) with base letters using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base character:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0319";
}
</style>
</head>
<body>
<p>Right Tack Below (hex): a̙ o̙</p>
<p>Right Tack Below (decimal): a̙ e̙</p>
<p id="point">Right Tack Below (CSS): a</p>
</body>
</html>🌐 Browser Support
The Right Tack Below (U+0319) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Right Tack Below (U+0319) combined with base letters:
🧠 How It Works
Hexadecimal Code
̙ uses the Unicode hexadecimal value 0319 for the combining right tack below. Place it after the base character.
Decimal HTML Code
̙ uses the decimal Unicode value 793 to display the same combining character.
CSS Entity
\0319 is used in CSS stylesheets in the content property of pseudo-elements like ::after, appended to base text.
Combines with base letter
All three methods attach U+0319 below a base character (e.g. a̙). There is no named HTML entity. Previous: Right Tack (U+22A2, spaced symbol).
Use Cases
The Right Tack Below (U+0319) is commonly used in:
IPA notation to represent specific phonetic features below a letter.
Logical or type-theoretic symbols when combined with a base character.
Formal semantics and type system notation in academic or technical docs.
Document phonological or morphological analysis with combining diacritics.
Show specialized notation in linguistics, mathematics, or logic publications.
Display pronunciation guides and phonetic transcriptions correctly.
💡 Best Practices
Do
- Place the combining mark after the base character (e.g.
a̙) - Use fonts that support Combining Diacritical Marks (U+0319)
- Keep one entity style per project for consistency
- Test with assistive technologies for phonetic or technical content
- Be aware of Unicode normalization (NFC/NFD) when comparing text
Don’t
- Use U+0319 alone without a base character—it won’t display meaningfully
- Confuse combining U+0319 with spaced U+22A2 (⊢ /
⊢) - Confuse U+0319 with U+0318 (combining left tack below)
- Put the combining mark before the base letter
- Assume a named HTML entity exists—there is none
- Use CSS
\0319inside HTML text nodes
Key Takeaways
Two HTML references plus CSS attach U+0319 below a base letter
̙ ̙For CSS, use \0319 in the content property after base text
Unicode U+0319 — COMBINING RIGHT TACK BELOW
No named HTML entity—always pair with a base character
Previous: Right Tack Next: Right Triangle
❓ Frequently Asked Questions
̙ (hex) or ̙ (decimal) after a base character, or \0319 in CSS content. Example: a̙. There is no named HTML entity.U+0319 (COMBINING RIGHT TACK BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0319, decimal 793. A non-spacing combining character that attaches below a base character.̙ or ̙) go in markup after the base character. The CSS escape \0319 is used in stylesheets, typically on ::after following base text. Both render the combining mark below the letter.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
