HTML Entity for Short Solidus Overlay (̷)

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

What You'll Learn

How to display the Short Solidus Overlay (̷) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0337 (COMBINING SHORT SOLIDUS OVERLAY) in the Combining Diacritical Marks block (U+0300–U+036F)—a nonspacing mark that overlays a short diagonal slash on the preceding character.

Render it with ̷, ̷, or CSS \0337. There is no named HTML entity. Always place the combining mark after the base character (e.g. A̷). Do not confuse ̷ with Long Solidus Overlay U+0338 (̸).

⚡ Quick Reference — Short Solidus Overlay

Unicode U+0337

Combining Diacritical Marks

Hex Code ̷

Hexadecimal reference

HTML Code ̷

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0337
Hex code       ̷
HTML code      ̷
Named entity   (none)
CSS code       \0337
Official name  Combining short solidus overlay
Related        U+0338 = long solidus overlay (̸)
               U+0335 = short stroke overlay
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing ̷ using hexadecimal code, decimal HTML code, and a CSS content escape. The mark is placed after a base character:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\0337";
  }
 </style>
</head>
<body>
<p>Mark (hex): &#x0337;</p>
<p>Mark (decimal): &#823;</p>
<p>Combined: A&#x0337;</p>
<p id="point">Mark (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Short Solidus Overlay (̷) is supported in modern browsers when fonts include Combining Diacritical Marks glyphs:

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

👀 Live Preview

See the Short Solidus Overlay combined with base characters:

Combining mark ̷ (overlay alone)
With letter A
With digit 0
Not the same as Long solidus ̸  |  Short stroke ̵
Numeric refs &#x0337; &#823; \0337

🧠 How It Works

1

Hexadecimal Code

&#x0337; uses Unicode hexadecimal 0337 to display the short solidus overlay mark.

HTML markup
2

Decimal HTML Code

&#823; uses decimal Unicode value 823 for the same combining mark.

HTML markup
3

CSS Entity

\0337 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Combining character

U+0337 is a nonspacing combining mark—place it immediately after a base character (e.g. A&#x0337;). Unicode U+0337 in Combining Diacritical Marks. No named entity. Next: Short Stroke Overlay.

Use Cases

The Short Solidus Overlay (̷) commonly appears in:

🎨 Typography

Custom text styling, font rendering, and typographic design with slash overlays.

🔤 Linguistic notation

Phonetic transcriptions, language studies, and academic linguistic documents.

📈 Mathematical text

Specialized notation and formatted symbols in technical content.

📄 Text formatting

Document editors and content systems supporting combining diacritical marks.

📖 Academic writing

Research papers and scholarly publications with precise character representation.

🛠 CSS markers

Custom pseudo-element content via ::before content.

💡 Best Practices

Do

  • Place ̷ immediately after the base character it modifies
  • Use &#x0337; or &#823; consistently in HTML markup
  • Verify font support for combining diacritical marks across devices
  • Provide plain-text context for accessibility when the overlay carries meaning
  • Distinguish ̷ from long solidus ̸ and short stroke ̵

Don’t

  • Put the combining mark before the base character—order matters
  • Put CSS escape \0337 in HTML text nodes
  • Expect a named HTML entity for U+0337
  • Confuse short solidus ̷ with long solidus ̸
  • Rely on the overlay alone without context for screen readers

Key Takeaways

1

Three references render ̷ (no named entity)

&#x0337; &#823;
2

For CSS stylesheets, use \0337 in the content property

3

Unicode U+0337 — COMBINING SHORT SOLIDUS OVERLAY

4

Nonspacing mark—always place after the base character

❓ Frequently Asked Questions

Use &#x0337; (hex), &#823; (decimal), or \0337 in CSS content. Place the mark after the base character. There is no named HTML entity.
U+0337 (COMBINING SHORT SOLIDUS OVERLAY). Combining Diacritical Marks (U+0300–U+036F). Hex 0337, decimal 823.
No. ̷ (U+0337) is a short solidus overlay. ̸ (U+0338) is a long solidus overlay, commonly used for negated mathematical symbols like “not element of.”
For typography, linguistic notation, phonetic transcriptions, specialized text formatting, academic writing, and any content requiring a short slash overlay on a character.
Combining Diacritical Marks characters like U+0337 use numeric hex or decimal codes in HTML. Named entities cover common characters only; combining marks typically use numeric references.

Explore More HTML Entities!

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