HTML Entity for Horn (a̛)

What You'll Learn
How to insert the combining Horn (U+031B) in HTML using hexadecimal, decimal, and CSS escape methods. This mark is U+031B (COMBINING HORN) in the Combining Diacritical Marks block (U+0300–U+036F). It attaches to a base character when placed after it in markup—common in Vietnamese (dấu móc) and other scripts that use this diacritic.
Place it after the base letter (e.g. a̛ for a with horn). Use ̛, ̛, or CSS \031B. There is no named HTML entity—numeric codes or CSS escapes are required for this combining character.
⚡ Quick Reference — Horn
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 Horn (combining diacritic)
Position Above base letter
Example a̛ (a + mark)Complete HTML Example
This example shows the Horn (U+031B) with the letter a using hexadecimal code, decimal HTML code, and a CSS content escape. Always place the combining mark after the base letter:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\031B";
}
</style>
</head>
<body>
<p>Horn using Hexadecimal: a̛ ơ</p>
<p>Horn using Decimal: a̛ ơ</p>
<p id="point">Horn using CSS Entity: a</p>
</body>
</html>🌐 Browser Support
The Horn (U+031B) renders when fonts support Combining Diacritical Marks stacking:
👀 Live Preview
Horn (U+031B) on letters—place the mark after the base character (common in Vietnamese):
🧠 How It Works
Hexadecimal Code
̛ uses Unicode hexadecimal 031B. Place it after the base letter (e.g. a̛) so the horn mark stacks correctly.
Decimal HTML Code
̛ uses decimal Unicode value 795 for the same combining character.
CSS Entity
\031B is used in CSS, typically in the content property of ::after on an element that already contains the base letter.
Combining above the base
U+031B is a single combining code point. Order in HTML: base letter, then combining mark. Next: Hot Springs.
Use Cases
The Horn (U+031B) is commonly used in:
Correct Vietnamese words that use the horn diacritic (dấu móc) in names, content, and localization.
Phonetic transcription and linguistic notation where the horn is required.
Romanization and transliteration systems that use the horn on letters.
Websites and apps that support Vietnamese or related scripts.
Materials and dictionaries for Vietnamese or related languages.
HTML entity lists and developer documentation for combining characters.
💡 Best Practices
Do
- Place U+031B after the base letter in markup (e.g.
a̛) - Use fonts with Vietnamese and Combining Diacritical Marks support
- Declare UTF-8 with
<meta charset="utf-8"> - Keep base + combining order correct for screen readers
- Test diacritic rendering on mobile and desktop browsers
Don’t
- Put the combining mark before the base letter
- Expect a named HTML entity for U+031B
- Use CSS
\031Bin HTML text nodes - Insert a space between the base letter and
̛(usea̛, nota ̛) - Confuse with Hook Above (U+0309) or other combining marks
- Assume every font positions combining marks identically
Key Takeaways
Two HTML numeric references plus CSS insert U+031B
̛ ̛For CSS, use \031B in content after the base letter in the element
Unicode U+031B — COMBINING HORN
Example sequence: a̛ (a with mark)
Next: Hot Springs
❓ Frequently Asked Questions
̛ (hex), ̛ (decimal), or \031B in CSS content. There is no named entity. Place the code after a base character (e.g. a̛) so the mark appears above it.U+031B (COMBINING HORN). Combining Diacritical Marks block (U+0300–U+036F). Hex 031B, decimal 795. A combining character placed above a base letter.̛ or ̛) go in markup after the base letter. The CSS escape \031B is used in stylesheets, typically on ::after when the base letter is already in the element.̛, decimal ̛, or CSS \031B in the content property. Place the code after a base character so it displays correctly as a̛.a̛, not a ̛. Ensure UTF-8 encoding and a font that supports Combining Diacritical Marks.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, math symbols, and more.
8 people found this page helpful
