HTML Entity for Undertie (‿)

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

What You'll Learn

How to display the undertie (‿) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+203F (UNDERTIE) in the General Punctuation block (U+2000–U+206F)—a typographic symbol used in linguistic notation and phonetic transcription to connect characters below the baseline.

Render it with ‿, ‿, or CSS escape \203F. There is no named HTML entity for this symbol. Compare ‾ (overline, U+203E) or _ (underscore, U+005F) for related characters.

⚡ Quick Reference — Undertie

Unicode U+203F

General Punctuation block

Hex Code ‿

Hexadecimal reference

HTML Code ‿

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+203F
Hex code       ‿
HTML code      ‿
Named entity   (none)
CSS code       \203F
Related        U+203E = overline (‾); U+005F = underscore (_)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing ‿ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\203F";
  }
 </style>
</head>
<body>
<p>Undertie (hex): &#x203F;</p>
<p>Undertie (decimal): &#8255;</p>
<p id="point">Undertie (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+203F is supported in modern browsers when rendered with a font that includes General Punctuation characters:

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

👀 Live Preview

See the undertie (‿) in linguistic and typographic contexts:

Large glyph
Linguistic a‿b‿c (undertie notation)
Phonetic ‿ Phonetic transcription mark
Annotation ‿ Text annotation symbol
Numeric refs &#x203F; &#8255;

🧠 How It Works

1

Hexadecimal Code

&#x203F; uses the Unicode hexadecimal value 203F to display the undertie. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8255; uses the decimal Unicode value 8255 to display the same character.

HTML markup
3

CSS Entity

\203F 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+203F in the General Punctuation block (U+2000–U+206F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The undertie (‿) is commonly used in:

📝 Linguistic notation

Academic papers, language studies, and research documents.

📖 Phonetic transcription

IPA notation, linguistic analysis, and phonetics tutorials.

📄 Typography

Font design, editorial content, and professional typesetting.

📝 Text annotation

Annotated texts, scholarly works, and academic content.

🎓 Academic writing

Research documents and scholarly publications with notation.

📚 Education

Unicode and HTML entity reference guides for typographic symbols.

💡 Best Practices

Do

  • Use &#x203F; or &#8255; consistently in markup
  • Use fonts that support General Punctuation (system UI, Segoe UI, Cambria)
  • Add surrounding text or aria-label for linguistic context
  • Pair ‿ with explanatory text in phonetic and annotation content
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+203F
  • Confuse ‿ (undertie) with _ (underscore U+005F) or ‾ (overline U+203E)
  • Use U+0203F or CSS \0203F—the correct value is U+203F and \203F
  • Put CSS escape \203F in HTML text nodes
  • Assume all decorative fonts include General Punctuation characters

Key Takeaways

1

Two HTML numeric references render ‿

&#x203F; &#8255;
2

For CSS stylesheets, use the escape in the content property

\203F
3

Unicode U+203F — UNDERTIE

4

General Punctuation block (U+2000–U+206F)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x203F; (hex), &#8255; (decimal), or \203F in CSS content. There is no named entity. All produce ‿.
U+203F (UNDERTIE). General Punctuation block (U+2000–U+206F). Hex 203F, decimal 8255. A typographic character used in linguistic notation and phonetic transcription.
In linguistic notation, phonetic transcription, typography, text annotation, academic writing, and any content that requires linguistic or phonetic symbols.
HTML references (&#8255; or &#x203F;) go in markup. The CSS escape \203F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many General Punctuation characters including U+203F have no named entity—use &#x203F; or &#8255; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, linguistic symbols, math operators, 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