HTML Entity for Combining Double Macron Below (͟)

What You'll Learn
How to display the Combining Double Macron Below (͟) in HTML and CSS. This character is U+035F (COMBINING DOUBLE MACRON BELOW) in the Combining Diacritical Marks block (U+0300–U+036F). It appears as a double horizontal line below the preceding base character—for example a͟ for a͟.
There is no named HTML entity for U+035F. Use ͟, ͟, or \035F in CSS content. Place the entity immediately after the base letter with no space. Double macron above is U+035E; single macron below is U+0331.
⚡ Quick Reference — Double Macron Below
U+035FCombining Diacritical Marks (U+0300–U+036F)
͟Hexadecimal reference
͟Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+035F
Hex code ͟
HTML code ͟
Named entity —
CSS code \035F
Related U+035E = Double macron above; U+0331 = Macron belowComplete HTML Example
This example shows U+035F using hexadecimal and decimal references, a base letter with the double macron below, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\035F";
}
</style>
</head>
<body>
<p>Double Macron Below using Hexadecimal: ͟</p>
<p>Double Macron Below using HTML Code: ͟</p>
<p id="point">Double Macron Below using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+035F is supported in modern browsers when placed after a base character and rendered with a font that supports Combining Diacritical Marks:
👀 Live Preview
See the double macron below a base letter (linguistic font recommended):
🧠 How It Works
Hexadecimal Code
͟ references code point U+035F using hex digits 035F. Place it immediately after the base letter (e.g. a͟).
Decimal HTML Code
͟ uses the decimal Unicode value 863 for the same combining double macron.
CSS Entity
\035F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Double macron below base character
Place U+035F right after the base letter: a͟. Double macron above is U+035E; single macron below is U+0331.
Use Cases
The Combining Double Macron Below (͟) commonly appears in:
Notation for consonants or vowels with a double macron below (specific phonetic or phonological values) in academic linguistics.
IPA and other phonetic systems where a double line below a symbol indicates a particular quality (e.g. syllabic consonant, retracted tongue root).
Pronunciation guides and lexical entries that use this diacritic for correct display.
Romanization and orthography that require a double macron below base characters.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use fonts that support combining marks so base + U+035F renders correctly for all users.
💡 Best Practices
Do
- Place
͟immediately after the base letter (e.g.a͟) - Use
<meta charset="utf-8">on pages with combining marks - Choose fonts that support Combining Diacritical Marks (Charis SIL, Times, Noto)
- Use hex or decimal consistently within one document
- Distinguish U+035E (double macron above) from U+035F (double macron below)
Don’t
- Confuse U+035F (below) with U+035E (double macron above) or U+0331 (macron below)
- Put a space between the base letter and the combining entity
- Expect a named HTML entity—use numeric references only
- Put CSS escape
\035Finside HTML text nodes - Assume every font aligns combining double macrons correctly
Key Takeaways
Two HTML references for the combining mark
͟ ͟For CSS stylesheets, use the escape in the content property
\035FU+035F combining double macron below—place after base letter
Example: a͟ with a͟
No named entity for U+035F — use numeric references
❓ Frequently Asked Questions
͟ (hex), ͟ (decimal), or \035F in CSS content. Place the entity immediately after the base letter (e.g. a͟ for a͟). There is no named HTML entity for U+035F.U+035F (COMBINING DOUBLE MACRON BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 035F, decimal 863. Double horizontal line below the preceding base character.͟ or ͟) go in markup after a base character. The CSS escape \035F is used in stylesheets, typically in the content property of pseudo-elements.a͟ or a͟ in HTML with no space between the letter and the entity.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, punctuation, symbols, and more.
8 people found this page helpful
