HTML Entity for Combining Double Low Line (̳)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0333

What You'll Learn

How to display the Combining Double Low Line (̳) in HTML and CSS. This character is U+0333 (COMBINING DOUBLE LOW LINE) in the Combining Diacritical Marks block (U+2000–U+206F)—a double horizontal line at the baseline, similar in appearance to a double underscore.

There is no named HTML entity for U+0333. Use ̳, ̳, or \0333 in CSS content. Do not confuse with U+0333 (combining combining double low line under a letter) or two ASCII underscores (__).

⚡ Quick Reference — Combining Double Low Line

Unicode U+0333

Combining Diacritical Marks (U+2000–U+206F)

Hex Code ̳

Hexadecimal reference

HTML Code ̳

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0333
Hex code       ̳
HTML code      ̳
Named entity   —
CSS code       \0333
Related        U+0333 = Combining combining double low line; __ = two U+005F
1

Complete HTML Example

This example shows U+0333 using hexadecimal and decimal references, inline decoration, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0333";
  }
 </style>
</head>
<body>
<p>Combining Double Low Line using Hexadecimal: &#x0333;</p>
<p>Combining Double Low Line using HTML Code: &#819;</p>
<p id="point">Combining Double Low Line using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0333 is widely supported in modern browsers; Combining Diacritical Marks glyphs render in virtually all fonts:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Combining Double Low Line (̳) in typography and decoration:

Inline use Section̳Title   Chapter̳1
Large glyph ̳
vs double underscore ̳ U+0333 (one char)   __ two U+005F
Combining variant U+0333 combining combining double low line under n̳
Monospace refs &#x0333; &#819; \0333

🧠 How It Works

1

Hexadecimal Code

&#x0333; references code point U+0333 using hex digits 0333. Use it inline in HTML text (e.g. Section&#x0333;Title).

HTML markup
2

Decimal HTML Code

&#819; uses the decimal Unicode value 819 for the same character.

HTML markup
3

CSS Entity

\0333 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: ̳. Unicode U+0333. Not __ (two ASCII underscores) or U+0333 (combining under a letter).

Use Cases

The Combining Double Low Line (̳) commonly appears in:

✍️ Typography

Double horizontal line at the baseline for visual separation or underlining-style decoration.

📝 Legacy notation

Contexts requiring U+0333 (paragraphos-style marks, older publishing or indexing).

🔤 Single character

Prefer ̳ over two ASCII underscores (__) for consistency or encoding.

🎨 CSS content

Use \0333 in content on pseudo-elements for generated decoration.

📖 Unicode docs

Entity reference pages for Combining Diacritical Marks (U+2000–U+206F).

♿ Accessibility

When ̳ is decorative, use clear markup and alternative text for assistive technologies.

💡 Best Practices

Do

  • Use &#x0333; or &#819; for the combining double low line character
  • Use <meta charset="utf-8"> on all pages
  • Pick hex or decimal consistently within one document
  • For underlining under a letter, use U+0333 (&#x0333;) instead
  • Use CSS \0333 only in stylesheets, not in HTML text

Don’t

  • Confuse U+0333 (̳) with __ (two U+005F underscores)
  • Confuse with U+0333 (combining combining double low line under text)
  • Put CSS escape \0333 inside HTML text nodes
  • Expect a named HTML entity (none exists for U+0333)
  • Use ̳ for semantic emphasis without accessible alternatives

Key Takeaways

1

Two HTML references for the combining double low line

&#x0333; &#819;
2

For CSS stylesheets, use the escape in the content property

\0333
3

U+0333 — double horizontal line at baseline

4

Not the same as __ (two ASCII underscores)

5

No named entity — use numeric references

❓ Frequently Asked Questions

Use &#x0333; (hex), &#819; (decimal), or \0333 in CSS content. All produce ̳. There is no named HTML entity for U+0333.
U+0333 (COMBINING DOUBLE LOW LINE). Combining Diacritical Marks block (U+2000–U+206F). Hex 0333, decimal 819. Double horizontal line at the baseline.
When you need the combining double low line in typography, legacy notation, decoration, or Unicode documentation. For a combining line under a base character, use U+0333.
HTML numeric references (&#819; or &#x0333;) go in markup. The CSS escape \0333 is used in stylesheets, typically in the content property of pseudo-elements.
U+0333 (̳) is one Unicode character. __ is two ASCII underscore characters (U+005F). They can look similar; use U+0333 when you need a single code point. For combining underline under text, use U+0333.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful