HTML Entity for Right Tack Below (̙)

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

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. , ).

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

Unicode U+0319

Combining Diacritical Marks

Hex Code ̙

Hexadecimal reference

HTML Code ̙

Decimal reference

Named Entity

Use numeric codes only

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

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0319";
  }
 </style>
</head>
<body>
<p>Right Tack Below (hex): a&#x0319; o&#x0319;</p>
<p>Right Tack Below (decimal): a&#793; e&#793;</p>
<p id="point">Right Tack Below (CSS): a</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Tack Below (U+0319) renders when fonts support Combining Diacritical Marks with correct below-base positioning:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Right Tack Below (U+0319) combined with base letters:

With base a
With base o
With base e
Phonetic example [a̙]
Numeric refs &#x0319; &#793; \0319
vs spaced tack a̙ vs ⊢

🧠 How It Works

1

Hexadecimal Code

&#x0319; uses the Unicode hexadecimal value 0319 for the combining right tack below. Place it after the base character.

HTML markup
2

Decimal HTML Code

&#793; uses the decimal Unicode value 793 to display the same combining character.

HTML markup
3

CSS Entity

\0319 is used in CSS stylesheets in the content property of pseudo-elements like ::after, appended to base text.

CSS stylesheet
=

Combines with base letter

All three methods attach U+0319 below a base character (e.g. ). 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:

🔤 Phonetic Transcription

IPA notation to represent specific phonetic features below a letter.

∑ Mathematical Notation

Logical or type-theoretic symbols when combined with a base character.

📐 Type Theory

Formal semantics and type system notation in academic or technical docs.

📚 Linguistics Research

Document phonological or morphological analysis with combining diacritics.

📄 Academic Papers

Show specialized notation in linguistics, mathematics, or logic publications.

📖 Dictionary Sites

Display pronunciation guides and phonetic transcriptions correctly.

💡 Best Practices

Do

  • Place the combining mark after the base character (e.g. a&#x0319;)
  • 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 (⊢ / &vdash;)
  • 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 \0319 inside HTML text nodes

Key Takeaways

1

Two HTML references plus CSS attach U+0319 below a base letter

&#x0319; &#793;
2

For CSS, use \0319 in the content property after base text

3

Unicode U+0319 — COMBINING RIGHT TACK BELOW

4

No named HTML entity—always pair with a base character

5

Previous: Right Tack   Next: Right Triangle

❓ Frequently Asked Questions

Use &#x0319; (hex) or &#793; (decimal) after a base character, or \0319 in CSS content. Example: a&#x0319;. 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.
In phonetic transcription and IPA notation, mathematical and logical notation, type theory, linguistics research, academic papers, and any content requiring a right tack diacritic below base characters.
HTML references (&#793; or &#x0319;) 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.
Named HTML entities are reserved for commonly used characters. Combining diacritical marks like U+0319 use numeric hex or decimal codes or CSS escapes—standard practice for diacritics in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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