HTML Entity for Short Stroke Overlay (̵)

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

What You'll Learn

How to display the Short Stroke Overlay (̵) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0335 (COMBINING SHORT STROKE OVERLAY) in the Combining Diacritical Marks block (U+0300–U+036F)—a nonspacing mark that overlays a short horizontal stroke on the preceding character.

Render it with ̵, ̵, or CSS \0335. There is no named HTML entity. Always place the combining mark after the base character (e.g. A̵). Do not confuse ̵ with Long Stroke Overlay U+0336 (̶).

⚡ Quick Reference — Short Stroke Overlay

Unicode U+0335

Combining Diacritical Marks

Hex Code ̵

Hexadecimal reference

HTML Code ̵

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0335
Hex code       ̵
HTML code      ̵
Named entity   (none)
CSS code       \0335
Official name  Combining short stroke overlay
Related        U+0336 = long stroke overlay (̶)
               U+0337 = short solidus 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: "\0335";
  }
 </style>
</head>
<body>
<p>Mark (hex): &#x0335;</p>
<p>Mark (decimal): &#821;</p>
<p>Combined: A&#x0335;</p>
<p id="point">Mark (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Short Stroke 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 Stroke Overlay combined with base characters:

Combining mark ̵ (overlay alone)
With letter A
With letter x
Not the same as Long stroke ̶  |  Short solidus ̷
Numeric refs &#x0335; &#821; \0335

🧠 How It Works

1

Hexadecimal Code

&#x0335; uses Unicode hexadecimal 0335 to display the short stroke overlay mark.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combining character

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

Use Cases

The Short Stroke Overlay (̵) commonly appears in:

🎨 Typography

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

🔤 Linguistic notation

Phonetic transcriptions, language studies, and academic linguistic documents.

📄 Text formatting

Document editors and content systems supporting combining diacritical marks.

📖 Academic writing

Research papers and scholarly publications with precise character representation.

🌐 Internationalization

Multilingual content and cross-cultural communication materials.

🛠 CSS markers

Custom pseudo-element content via ::before content.

💡 Best Practices

Do

  • Place ̵ immediately after the base character it modifies
  • Use &#x0335; or &#821; 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 stroke ̶ and short solidus ̷

Don’t

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

Key Takeaways

1

Three references render ̵ (no named entity)

&#x0335; &#821;
2

For CSS stylesheets, use \0335 in the content property

3

Unicode U+0335 — COMBINING SHORT STROKE OVERLAY

4

Nonspacing mark—always place after the base character

❓ Frequently Asked Questions

Use &#x0335; (hex), &#821; (decimal), or \0335 in CSS content. Place the mark after the base character. There is no named HTML entity.
U+0335 (COMBINING SHORT STROKE OVERLAY). Combining Diacritical Marks (U+0300–U+036F). Hex 0335, decimal 821.
No. ̵ (U+0335) is a short horizontal stroke overlay. ̶ (U+0336) is a long stroke overlay, commonly used for strikethrough-style effects across a character.
For typography, linguistic notation, phonetic transcriptions, text formatting, academic writing, and any content requiring a short stroke overlay on a character.
Combining Diacritical Marks characters like U+0335 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