HTML Entity for Combining Double Overline (̿)

What You'll Learn
How to display the Combining Double Overline (̿) in HTML and CSS. This character is U+033F (COMBINING DOUBLE OVERLINE) in the Combining Diacritical Marks block (U+0300–U+036F). It appears as a double horizontal line above the preceding base character—for example x̿ for x̿ in math or linguistics notation.
There is no named HTML entity for U+033F. Use ̿, ̿, or \033F in CSS content. Place the entity immediately after the base letter or symbol with no space. Single combining overline is U+0305; standalone overline is U+203E (‾).
⚡ Quick Reference — Double Overline
U+033FCombining Diacritical Marks (U+0300–U+036F)
̿Hexadecimal reference
̿Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+033F
Hex code ̿
HTML code ̿
Named entity —
CSS code \033F
Related U+0305 = Combining overline; U+203E = Overline characterComplete HTML Example
This example shows U+033F using hexadecimal and decimal references, a variable with the double overline above, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\033F";
}
</style>
</head>
<body>
<p>Double Overline using Hexadecimal: ̿</p>
<p>Double Overline using HTML Code: ̿</p>
<p id="point">Double Overline using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+033F 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 overline above a base character (math or linguistic font recommended):
🧠 How It Works
Hexadecimal Code
̿ references code point U+033F using hex digits 033F. Place it immediately after the base character (e.g. x̿).
Decimal HTML Code
̿ uses the decimal Unicode value 831 for the same combining double overline.
CSS Entity
\033F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Double overline above base character
Place U+033F right after the base character: x̿. Single combining overline is U+0305; standalone overline is U+203E.
Use Cases
The Combining Double Overline (̿) commonly appears in:
Mean (average), complement, or other quantities denoted with a double bar above a variable (e.g. x̿).
Phonetic or phonological notation where a double overline above a symbol indicates a specific feature.
Online math or linguistics content that displays symbols with a double overline for correct notation.
Formulas, specifications, or academic papers that use double-overline notation in HTML.
Reference pages for Combining Diacritical Marks (U+0300–U+036F).
Use fonts that support combining marks so base + U+033F renders correctly (e.g. x̿) for all users.
💡 Best Practices
Do
- Place
̿immediately after the base character (e.g.x̿) - Use
<meta charset="utf-8">on pages with combining marks - Choose fonts that support Combining Diacritical Marks (Times, Cambria Math, Noto)
- Use hex or decimal consistently within one document
- Prefer MathML for complex formulas when layout matters
Don’t
- Confuse U+033F (double overline) with U+0305 (single combining overline) or U+203E (standalone)
- Put a space between the base character and the combining entity
- Expect a named HTML entity—use numeric references only
- Put CSS escape
\033Finside HTML text nodes - Assume every font aligns combining double overlines correctly
Key Takeaways
Two HTML references for the combining mark
̿ ̿For CSS stylesheets, use the escape in the content property
\033FU+033F combining double overline—place after base character
Example: x̿ with x̿
No named entity for U+033F — use numeric references
❓ Frequently Asked Questions
̿ (hex), ̿ (decimal), or \033F in CSS content. Place the entity immediately after the base character (e.g. x̿ for x̿). There is no named HTML entity for U+033F.U+033F (COMBINING DOUBLE OVERLINE). Combining Diacritical Marks block (U+0300–U+036F). Hex 033F, decimal 831. Double horizontal line above the preceding base character.̿ or ̿) go in markup after a base character. The CSS escape \033F is used in stylesheets, typically in the content property of pseudo-elements.x̿ or x̿ in HTML with no space between the character and the entity.Explore More HTML Entities!
Discover 1500+ HTML character references — diacritics, punctuation, symbols, and more.
8 people found this page helpful
