HTML Entity for Combining Double Macron (͞)

What You'll Learn
How to display the Combining Double Macron (͞) in HTML and CSS. This character is U+035E (COMBINING DOUBLE MACRON) in the Combining Diacritical Marks block (U+0300–U+036F). It appears as a double horizontal line above the preceding base character—for example a͞ for a͞.
There is no named HTML entity for U+035E. Use ͞, ͞, or \035E in CSS content. Place the entity immediately after the base letter with no space. Single macron above is U+0304; double macron below is U+035F.
⚡ Quick Reference — Double Macron
U+035ECombining Diacritical Marks (U+0300–U+036F)
͞Hexadecimal reference
͞Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+035E
Hex code ͞
HTML code ͞
Named entity —
CSS code \035E
Related U+0304 = Macron above; U+035F = Double macron belowComplete HTML Example
This example shows U+035E using hexadecimal and decimal references, a base letter with the double macron above, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\035E";
}
</style>
</head>
<body>
<p>Double Macron using Hexadecimal: ͞</p>
<p>Double Macron using HTML Code: ͞</p>
<p id="point">Double Macron using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+035E 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 above a base letter (linguistic font recommended):
🧠 How It Works
Hexadecimal Code
͞ references code point U+035E using hex digits 035E. Place it immediately after the base letter (e.g. a͞).
Decimal HTML Code
͞ uses the decimal Unicode value 862 for the same combining double macron.
CSS Entity
\035E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Double macron above base character
Place U+035E right after the base letter: a͞. Single macron above is U+0304; double macron below is U+035F.
Use Cases
The Combining Double Macron (͞) commonly appears in:
Notation for vowels or consonants with a double macron above (length, phonetic value) in academic linguistics.
IPA and other phonetic systems where a double macron above a symbol indicates a particular quality or length.
Pronunciation guides and lexical entries that use this diacritic for correct display.
Romanization and orthography that require a double macron above base characters.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use fonts that support combining marks so base + U+035E 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+0304 (single macron) from U+035E (double macron above)
Don’t
- Confuse U+035E (above) with U+035F (double macron below) or U+0304 (single macron)
- Put a space between the base letter and the combining entity
- Expect a named HTML entity—use numeric references only
- Put CSS escape
\035Einside 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
\035EU+035E combining double macron—place after base letter
Example: a͞ with a͞
No named entity for U+035E — use numeric references
❓ Frequently Asked Questions
͞ (hex), ͞ (decimal), or \035E in CSS content. Place the entity immediately after the base letter (e.g. a͞ for a͞). There is no named HTML entity for U+035E.U+035E (COMBINING DOUBLE MACRON). Combining Diacritical Marks block (U+0300–U+036F). Hex 035E, decimal 862. Double horizontal line above the preceding base character.͞ or ͞) go in markup after a base character. The CSS escape \035E 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
