HTML Entity for Long Solidus Overlay (̸)

What You'll Learn
How to display the Long Solidus Overlay (̸) in HTML using various entity methods. The Long Solidus Overlay is a combining diacritical mark that overlays a long diagonal slash across another character and is essential for mathematical notation, logical symbols, and academic content.
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 — Long Solidus Overlay Entity
U+0338Combining Diacritical Marks
̸Hexadecimal reference
̸Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0338
Hex code ̸
HTML code ̸
Named entity (none)
CSS code \0338
Meaning Combining long solidus overlay
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the Long Solidus Overlay (̸) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0338";
}
</style>
</head>
<body>
<p>Symbol (hex): ̸</p>
<p>Symbol (decimal): ̸</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Long Solidus Overlay (̸) is supported in modern browsers when the font includes Combining Diacritical Marks glyphs:
👀 Live Preview
See the Long Solidus Overlay (̸) combined with base characters in mathematical and logical contexts:
🧠 How It Works
Hexadecimal Code
̸ uses the Unicode hexadecimal value 0338 to display the Long Solidus Overlay. The x prefix indicates hexadecimal format.
Decimal HTML Code
̸ uses the decimal Unicode value 824 to display the same combining mark. This is one of the most commonly used methods.
CSS Entity
\0338 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combining character
U+0338 is a nonspacing combining mark—place it immediately after a base character (e.g. ↛) to create negated symbols. Unicode U+0338 sits in the Combining Diacritical Marks block. There is no named HTML entity.
Use Cases
The Long Solidus Overlay (̸) is commonly used in:
Create negated variants of symbols (e.g. negated arrows, not less-than-or-equal).
Represent negation in logical expressions and set theory (e.g. not element of).
Display mathematical or logical formulas in papers, textbooks, and research content.
Use in phonetic or linguistic transcription and notation.
Document specifications, APIs, or technical content that include negated operators.
Teach mathematics, logic, or set theory with proper symbol rendering.
Ensure correct rendering of negated symbols in scientific and technical publications.
💡 Best Practices
Do
- Place ̸ immediately after the base character it overlays
- Use numeric references (
̸or̸) consistently in HTML - Verify font support for combining diacritical marks across devices
- Use
\0338in CSScontentwhen inserting via pseudo-elements - Add
aria-labelor surrounding text for accessibility when symbols stand alone
Don’t
- Put the combining mark before the base character—order matters
- Put CSS escape
\0338in HTML text nodes - Expect a named HTML entity—only numeric codes work for ̸
- Assume screen readers interpret combining marks without context
- Mix entity styles randomly in one file
Key Takeaways
Three references render ̸ (no named entity)
̸ ̸For CSS stylesheets, use the escape in the content property
\0338Unicode U+0338 — COMBINING LONG SOLIDUS OVERLAY
A combining mark—follow a base character to form negated symbols
Previous: Long S (ſ) Next: Long Stroke Overlay
❓ Frequently Asked Questions
̸ (hex), ̸ (decimal), or \0338 in CSS content. All produce the combining mark. There is no named HTML entity.U+0338 (COMBINING LONG SOLIDUS OVERLAY). Combining Diacritical Marks block. Hex 0338, decimal 824. It is a nonspacing combining character used to create negated symbols in mathematical and logical notation.̸ or ̸) is used in HTML content. The CSS entity (\0338) 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, math operators, symbols, and more.
8 people found this page helpful
