HTML Entity for Left Tack Below (̘)

What You'll Learn
How to insert the combining Left Tack Below (U+0318) 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. o̘, a̘).
It is U+0318 (COMBINING LEFT TACK BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̘, ̘, or CSS \0318. There is no named HTML entity. Always place the code after the base character. Do not confuse it with U+22A3 (⊣, spaced left tack / ⊣).
⚡ Quick Reference — Left Tack Below
U+0318Combining Diacritical Marks
̘Hexadecimal reference
̘Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0318
Hex code ̘
HTML code ̘
Named entity (none)
CSS code \0318
Meaning Combining left tack below
Position Below base letter
IPA example o̘
Related U+22A3 = left tack (⊣ / ⊣)
U+031C = combining left tack above (̜)Complete HTML Example
A simple example showing the Left Tack Below (U+0318) 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: "\0318";
}
</style>
</head>
<body>
<p>Left Tack Below (hex): o̘ a̘</p>
<p>Left Tack Below (decimal): o̘ e̘</p>
<p id="point">Left Tack Below (CSS): o</p>
</body>
</html>🌐 Browser Support
The Left Tack Below (U+0318) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Left Tack Below (U+0318) combined with base letters:
🧠 How It Works
Hexadecimal Code
̘ uses the Unicode hexadecimal value 0318 for the combining left tack below. Place it after the base character.
Decimal HTML Code
̘ uses the decimal Unicode value 792 to display the same combining character.
CSS Entity
\0318 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+0318 below a base character (e.g. o̘). There is no named HTML entity. Previous: Left Tack (U+22A3, spaced symbol).
Use Cases
The Left Tack Below (U+0318) 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.
o̘) - Use fonts that support Combining Diacritical Marks (U+0318)
- 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+0318 alone without a base character—it won’t display meaningfully
- Confuse combining U+0318 with spaced U+22A3 (⊣ /
⊣) - Put the combining mark before the base letter
- Assume a named HTML entity exists—there is none
- Use CSS
\0318inside HTML text nodes
Key Takeaways
Two HTML references plus CSS attach U+0318 below a base letter
̘ ̘For CSS, use \0318 in the content property after base text
Unicode U+0318 — COMBINING LEFT TACK BELOW
No named HTML entity—always pair with a base character
Previous: Left Tack Next: Left Triple Arrow
❓ Frequently Asked Questions
̘ (hex) or ̘ (decimal) after a base character, or \0318 in CSS content. Example: o̘. There is no named HTML entity.U+0318 (COMBINING LEFT TACK BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0318, decimal 792. A non-spacing combining character that attaches below a base character.̘ or ̘) go in markup after the base character. The CSS escape \0318 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
