HTML Entity for Left Angle Above (̚)

What You'll Learn
How to insert the combining Left Angle Above (U+031A) in HTML using hexadecimal, decimal, and CSS escape methods. This mark appears above a base letter and is used in the International Phonetic Alphabet (IPA) and linguistic notation to modify base characters (e.g. e̚, a̚).
It is U+031A (COMBINING LEFT ANGLE ABOVE) in the Combining Diacritical Marks block (U+0300–U+036F). Use ̚, ̚, or CSS \031A. There is no named HTML entity. Related: U+0349 (͉, left angle below).
⚡ Quick Reference — Left Angle Above
U+031ACombining Diacritical Marks
̚Hexadecimal reference
̚Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+031A
Hex code ̚
HTML code ̚
Named entity (none)
CSS code \031A
Meaning Combining left angle above
Position Above base letter
IPA example e̚
Related U+0349 = left angle below (͉)Complete HTML Example
A simple example showing the Left Angle Above (U+031A) 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: "\031A";
}
</style>
</head>
<body>
<p>Left Angle Above using Hexadecimal: e̚ a̚</p>
<p>Left Angle Above using HTML Code: e̚ o̚</p>
<p id="point">Left Angle Above using CSS Entity: e</p>
</body>
</html>🌐 Browser Support
The Left Angle Above (U+031A) renders when fonts support Combining Diacritical Marks with correct above-base positioning:
👀 Live Preview
See the Left Angle Above (U+031A) combined with base letters:
🧠 How It Works
Hexadecimal Code
̚ uses the Unicode hexadecimal value 031A to display the combining mark. Place it immediately after the base character.
Decimal HTML Code
̚ uses the decimal Unicode value 794 for the same combining character.
CSS Entity
\031A 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+031A stacks above the preceding base character (e.g. e̚). Unicode U+031A is in Combining Diacritical Marks. Next: Left Angle Below (͉).
Use Cases
The Left Angle Above (U+031A) 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.
💡 Best Practices
Do
- Place
̚or̚immediately after the base character (e.g.e̚) - Use fonts that support Combining Diacritical Marks (U+031A)
- 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+031A
- Use CSS
\031Ainside HTML text nodes - Rely on the standalone mark alone when a diacritic above a letter is intended
- Confuse U+031A (above) with U+0349 (below)
Key Takeaways
Two HTML numeric references plus CSS for U+031A
̚ ̚For CSS, use \031A in the content property
Unicode U+031A — COMBINING LEFT ANGLE ABOVE
Combining Diacritical Marks block (U+0300–U+036F)
Previous: Lb Bar Symbol (℔) Next: Left Angle Below (͉)
❓ Frequently Asked Questions
̚ (hex), ̚ (decimal), or \031A in CSS content. There is no named entity. It is a combining character—place it after the base letter (e.g. e̚).U+031A (COMBINING LEFT ANGLE ABOVE). Combining Diacritical Marks block (U+0300–U+036F). Hex 031A, decimal 794. Used as a combining mark in phonetic and linguistic notation.̚ or ̚) go in markup after the base character. The CSS escape \031A is used in stylesheets, typically on ::after. Both render the combining mark above 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
