HTML Entity for Left Angle Below (͉)

What You'll Learn
How to insert the combining Left Angle Below (U+0349) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears below a base letter and is used in the International Phonetic Alphabet (IPA) and linguistic notation to modify base characters (e.g. o͉, a͉).
It is U+0349 (COMBINING LEFT ANGLE BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). Use ͉, ͉, or CSS \0349. There is no named HTML entity. Related: U+031A (̚, left angle above).
⚡ Quick Reference — Left Angle Below
U+0349Combining Diacritical Marks
͉Hexadecimal reference
͉Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0349
Hex code ͉
HTML code ͉
Named entity (none)
CSS code \0349
Meaning Combining left angle below
Position Below base letter
IPA example o͉
Related U+031A = left angle above (̚)Complete HTML Example
A simple example showing the Left Angle Below (U+0349) 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: "\0349";
}
</style>
</head>
<body>
<p>Left Angle Below using Hexadecimal: o͉ a͉</p>
<p>Left Angle Below using HTML Code: o͉ e͉</p>
<p id="point">Left Angle Below using CSS Entity: o</p>
</body>
</html>🌐 Browser Support
The Left Angle Below (U+0349) renders when fonts support Combining Diacritical Marks with correct below-base positioning:
👀 Live Preview
See the Left Angle Below (U+0349) combined with base letters:
🧠 How It Works
Hexadecimal Code
͉ uses the Unicode hexadecimal value 0349 to display the combining mark. Place it immediately after the base character.
Decimal HTML Code
͉ uses the decimal Unicode value 841 for the same combining character.
CSS Entity
\0349 is used in CSS stylesheets in the content property of pseudo-elements like ::after following a base character in markup.
Combines with base letter
U+0349 stacks below the preceding base character (e.g. o͉). Unicode U+0349 is in Combining Diacritical Marks. Next: Left Arrow.
Use Cases
The Left Angle Below (U+0349) is commonly used in:
Phonetic symbols and pronunciation in linguistic and dictionary content.
Academic papers, language descriptions, and orthographic notation.
Pronunciation and phonetic spelling for words using this diacritic.
Teach pronunciation and display IPA in language learning interfaces.
Phonological and phonetic research with correct combining characters.
Full Unicode rendering for languages and notation using diacritical marks below letters.
💡 Best Practices
Do
- Place
͉or͉immediately after the base character (e.g.o͉) - Use fonts that support Combining Diacritical Marks (U+0349)
- Set
<meta charset="utf-8"> - Provide accessible phonetic context or explanatory text where needed
- Keep one numeric style per project
- Test combining mark stacking across browsers and fonts
Don’t
- Put the combining mark before the base character
- Expect a named HTML entity for U+0349
- Use CSS
\0349inside HTML text nodes - Rely on the standalone mark alone when a diacritic below a letter is intended
- Confuse U+0349 (below) with U+031A (above)
Key Takeaways
Two HTML numeric references plus CSS for U+0349
͉ ͉For CSS, use \0349 in the content property
Unicode U+0349 — COMBINING LEFT ANGLE BELOW
Combining Diacritical Marks block (U+0300–U+036F)
Previous: Left Angle Above (̚) Next: Left Arrow
❓ Frequently Asked Questions
͉ (hex), ͉ (decimal), or \0349 in CSS content. There is no named entity. It is a combining character—place it after the base letter (e.g. o͉).U+0349 (COMBINING LEFT ANGLE BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0349, decimal 841. Used as a combining mark in phonetic and linguistic notation, appearing below the base character.͉ or ͉) go in markup after the base character. The CSS escape \0349 is used in stylesheets, typically on ::after. Both render the combining mark below the letter.͉) or decimal (͉) codes. That is standard for diacritical characters in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, IPA, and more.
8 people found this page helpful
