HTML Entity for Low Line (̲)

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
U+0332Combining Diacritical Marks
̲Hexadecimal reference
̲Decimal reference
—No named entity
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)Complete HTML Example
A simple example showing the Low Line (̲) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0332";
}
</style>
</head>
<body>
<p>Symbol (hex): ̲</p>
<p>Symbol (decimal): ̲</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Low Line (̲) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:
👀 Live Preview
See the Low Line (̲) used for underlining and emphasis:
🧠 How It Works
Hexadecimal Code
̲ uses the Unicode hexadecimal value 0332 to display the Low Line. The x prefix indicates hexadecimal format.
Decimal HTML Code
̲ uses the decimal Unicode value 818 to display the same combining mark. This is one of the most commonly used methods.
CSS Entity
\0332 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combining character
U+0332 is a nonspacing combining mark—place it immediately after each base character to underline (e.g. u̲n̲d̲e̲r̲). 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:
Add underlines to specific characters or words without using CSS text-decoration.
Use in phonetic transcription, dictionary entries, and linguistic symbols where underline is meaningful.
Emphasize key terms or phrases with a combining underline in headings or body text.
Create underlined blanks in forms, fill-in-the-blank content, or template placeholders.
Mark vocabulary, definitions, or important terms in educational and tutorial content.
Use in editorial markup, corrections, or published text where character-level underlining is required.
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 (
̲or̲) consistently in HTML - Verify font support for combining diacritical marks across devices
- Use
text-decoration: underlinefor simple whole-word underlining when that suffices - Add semantic markup or
aria-labelwhen 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
\0332in 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
Three references render ̲ (no named entity)
̲ ̲For CSS stylesheets, use the escape in the content property
\0332Unicode U+0332 — COMBINING LOW LINE
A combining mark—follow each base character to underline text
Previous: Low Asterisk (⁎) Next: Lower Blade Scissors
❓ Frequently Asked Questions
̲ (hex), ̲ (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.̲ or ̲) 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.Explore More HTML Entities!
Discover 1500+ HTML character references — combining marks, punctuation, and more.
8 people found this page helpful
