HTML Entity for Right Angle Above (̛)

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