HTML Entity for Low Line (̲)

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

What You'll Learn

How to display the Low Line (̲) in HTML using various entity methods. The Low Line is a combining diacritical mark that draws an underline beneath the preceding character and is useful for underlining text, linguistic notation, and emphasis without relying solely on CSS.

This character is part of the Combining Diacritical Marks Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this combining mark.

⚡ Quick Reference — Low Line Entity

Unicode U+0332

Combining Diacritical Marks

Hex Code ̲

Hexadecimal reference

HTML Code ̲

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0332
Hex code       ̲
HTML code      ̲
Named entity   (none)
CSS code       \0332
Meaning        Combining low line (underline)
Related        U+005F = _ (standalone underscore)
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing the Low Line (̲) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0332";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0332;</p>
<p>Symbol (decimal): &#818;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Low Line (̲) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Low Line (̲) used for underlining and emphasis:

Combining mark̲ (overlay alone)
Underlined wordu̲n̲d̲e̲r̲l̲i̲n̲e̲d
Single characterEmphasis on A̲
Large glyph
Numeric refs&#x0332; &#818; \0332

🧠 How It Works

1

Hexadecimal Code

&#x0332; uses the Unicode hexadecimal value 0332 to display the Low Line. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#818; uses the decimal Unicode value 818 to display the same combining mark. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combining character

U+0332 is a nonspacing combining mark—place it immediately after each base character to underline (e.g. u&#x0332;n&#x0332;d&#x0332;e&#x0332;r&#x0332;). Unlike the standalone underscore U+005F (_), the underline connects across characters. There is no named HTML entity.

Use Cases

The Low Line (̲) is commonly used in:

📝 Underlining text

Add underlines to specific characters or words without using CSS text-decoration.

🔤 Linguistic notation

Use in phonetic transcription, dictionary entries, and linguistic symbols where underline is meaningful.

✨ Emphasis & highlighting

Emphasize key terms or phrases with a combining underline in headings or body text.

📋 Forms & placeholders

Create underlined blanks in forms, fill-in-the-blank content, or template placeholders.

📖 Educational content

Mark vocabulary, definitions, or important terms in educational and tutorial content.

📄 Editorial & publishing

Use in editorial markup, corrections, or published text where character-level underlining is required.

🎨 Typography & design

Achieve specific underline effects in typography where CSS alone is not sufficient.

💡 Best Practices

Do

  • Place ̲ immediately after each character you want underlined
  • Use numeric references (&#x0332; or &#818;) consistently in HTML
  • Verify font support for combining diacritical marks across devices
  • Use text-decoration: underline for simple whole-word underlining when that suffices
  • Add semantic markup or aria-label when underline conveys meaning beyond decoration

Don’t

  • Put the combining mark before the base character—order matters
  • Confuse ̲ (combining underline) with _ (standalone underscore U+005F)
  • Put CSS escape \0332 in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ̲
  • Use underlining for links without clear visual distinction from emphasis

Key Takeaways

1

Three references render ̲ (no named entity)

&#x0332; &#818;
2

For CSS stylesheets, use the escape in the content property

\0332
3

Unicode U+0332 — COMBINING LOW LINE

4

A combining mark—follow each base character to underline text

❓ Frequently Asked Questions

Use &#x0332; (hex), &#818; (decimal), or \0332 in CSS content. All produce the combining underline mark. There is no named HTML entity.
U+0332 (COMBINING LOW LINE). Combining Diacritical Marks block. Hex 0332, decimal 818. It is a nonspacing combining character that draws an underline under the preceding character.
For underlining text without CSS, linguistic and phonetic notation, emphasis or highlighting, form labels and placeholders, educational and editorial markup, and any context where a combining underline under specific characters is needed.
HTML code (&#818; or &#x0332;) is used in HTML content. The CSS entity (\0332) is used in CSS, e.g. in the content property of ::before or ::after. Both produce the same combining mark but in different contexts.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Combining characters like ̲ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, punctuation, 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