HTML Entity for Macron Below (̱)

What You'll Learn
How to display the combining macron below (̱) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0331 (COMBINING MACRON BELOW) in the Combining Diacritical Marks block (U+0300–U+036F)—a non-spacing diacritic placed immediately after a base letter to draw a horizontal line beneath that character.
Render it with ̱, ̱, or CSS escape \0331. There is no named HTML entity for U+0331. Do not confuse it with a breve (˘) or with the macron above (U+0304, ̄).
⚡ Quick Reference — Macron Below
U+0331Combining Diacritical Marks
̱Hexadecimal reference
̱Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+0331
Hex code ̱
HTML code ̱
Named entity (none)
CSS code \0331
Related U+0304 = macron above (̄); U+0332 = combining low line (̲)Complete HTML Example
This example demonstrates the combining macron below (̱) using hexadecimal code, decimal HTML code, and a CSS content escape. Place the entity right after the base letter:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\0331";
}
</style>
</head>
<body>
<p>Macron Below using Hexadecimal: x̱</p>
<p>Macron Below using HTML Code: y̱</p>
<p>z<span id="point"></span> (CSS macron below on z)</p>
</body>
</html>🌐 Browser Support
U+0331 is supported in all modern browsers when rendered with a Unicode-capable font:
👀 Live Preview
See the combining macron below (̱) applied to letters in common contexts:
🧠 How It Works
Hexadecimal Code
̱ uses the Unicode hexadecimal value 0331. Place it immediately after the base letter—e.g. x̱ renders x with macron below.
Decimal HTML Code
̱ uses the decimal Unicode value 817 to display the same combining mark beneath a base character.
CSS Entity
\0331 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after to append the mark below adjacent text.
Same visual result
All three methods produce the combining macron below on a base letter: x̱. Unicode U+0331 sits in the Combining Diacritical Marks block (U+0300–U+036F). No named HTML entity—use numeric codes in markup.
Use Cases
The combining macron below (̱) is commonly used in:
Phonetic transcription and notation for underlined or specially marked segments.
Single-character underline marks in editorial and multilingual web content.
IPA and related systems that mark segments with a line below a letter.
Pronunciation guides and lexical entries with per-character underlines.
Language learning materials and linguistic textbooks.
Notation systems that require a Unicode underline diacritic on one glyph.
💡 Best Practices
Do
- Place
̱oṟimmediately after the base letter - Distinguish U+0331 (macron below) from U+0304 (macron above)
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Test rendering across browsers and fonts
- Use consistent numeric style (hex or decimal) per project
Don’t
- Confuse macron below (̱) with a breve (˘) or macron above (̄)
- Insert a space between the base letter and the combining entity
- Expect a named entity—none exists for U+0331
- Put CSS escape
\0331in HTML text nodes - Use padded Unicode notation like U+00331—the correct value is
U+0331
Key Takeaways
Two HTML numeric references render the combining macron below
̱ ̱For CSS stylesheets, use the escape in the content property
\0331Unicode U+0331 — COMBINING MACRON BELOW (non-spacing diacritic)
Combining Diacritical Marks block (U+0300–U+036F)
Always follow the base letter—e.g. x̱ not ̱x
❓ Frequently Asked Questions
̱ (hex) or ̱ (decimal) immediately after the base letter—e.g. x̱. For CSS, use \0331 in content. There is no named entity.U+0331 (COMBINING MACRON BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 0331, decimal 817. Attaches below the preceding character.text-decoration.̱ or ̱) go in markup after the base character. The CSS escape \0331 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritical marks, IPA symbols, math operators, and more.
8 people found this page helpful
