HTML Entity for Dot Minus (∸)

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

What You'll Learn

How to display the Dot Minus symbol (∸) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2238 (DOT MINUS) in the Mathematical Operators block (U+2200–U+22FF) and represents the monus (saturating subtraction) operator in mathematics.

Render it with ∸ (or ∸), ∸, ∸, or CSS escape \2238. Do not confuse with hyphen-minus (U+002D), combining dot above (U+0307), or arithmetic division (÷, ÷).

⚡ Quick Reference — Dot Minus

Unicode U+2238

Mathematical Operators block

Hex Code ∸

Hexadecimal reference

HTML Code ∸

Decimal reference

Named Entity ∸

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2238
Hex code       ∸
HTML code      ∸
Named entity   ∸
CSS code       \2238
1

Complete HTML Example

This example demonstrates the Dot Minus symbol (∸) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2238";
  }
 </style>
</head>
<body>
<p>Dot Minus using Hexadecimal: &#x2238;</p>
<p>Dot Minus using HTML Code: &#8760;</p>
<p>Dot Minus using Named Entity: &minusd;</p>
<p id="point">Dot Minus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2238 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

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

👀 Live Preview

See the Dot Minus symbol (∸) rendered live in mathematical contexts:

Notation a ∸ b  •  x ∸ y ∸ z
Large glyph
vs related ops ∸ dot minus   ÷ divide   ∕ div slash   × times
Named entity &minusd; → ∸
Monospace refs &minusd; &#x2238; &#8760; \2238

🧠 How It Works

1

Named Entity

&minusd; is the HTML named entity for the Dot Minus symbol (&dotminus; is also valid) — easy to read in source code.

HTML markup
2

Hexadecimal Code

&#x2238; uses the Unicode hexadecimal value 2238 to display the Dot Minus symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2238 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Dot Minus glyph: . Unicode U+2238 (monus). Not hyphen-minus (U+002D) or combining dot above (U+0307).

Use Cases

The Dot Minus symbol (∸) commonly appears in the following scenarios:

📐 Monus notation

Saturating subtraction and CMM (commutative monoids with monus) in formal math.

📚 Education

Math tutorials and e-learning on monus and natural-number arithmetic.

📝 Technical docs

APIs and specs using dot-minus for saturating subtraction in algorithms.

📖 Research

Academic papers in mathematics or computer science with monus in formulas.

🔢 Symbol refs

Unicode and HTML entity tables for Mathematical Operators.

📑 Formula display

Web equation editors showing ∸ alongside other operators.

💡 Best Practices

Do

  • Use &minusd; for readable HTML source
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • Pair ∸ with text or ARIA (“dot minus”) where helpful
  • Pick one entity style per project for consistency
  • Distinguish ∸ from ÷ (divide) and × (times)

Don’t

  • Use ∸ when you mean arithmetic division (÷)
  • Confuse ∸ with × (multiplication sign) or ⋅ (dot operator)
  • Use CSS escape \2238 inside HTML markup
  • Mix hex, decimal, and named styles randomly in one file
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Three HTML references all render ∸

&#x2238; &#8760; &minusd;
2

For CSS stylesheets, use the escape in the content property

\2238
3

Unicode U+2238 — DOT MINUS (monus operator)

4

Prefer &minusd; or &dotminus; in HTML source

5

Next in sequence: Dot Operator

❓ Frequently Asked Questions

Use &minusd; (named), &#x2238; (hex), &#8760; (decimal), or \2238 in CSS content. All produce ∸.
U+2238 (DOT MINUS). Mathematical Operators block (U+2200–U+22FF). Hex 2238, decimal 8760. Monus (saturating subtraction) operator.
For mathematical content involving the monus operator, saturating subtraction, CMM, educational math sites, technical documentation, and any content that requires the ∸ symbol for correct notation.
Dot Minus (∸, U+2238, &minusd;) is a specialized math operator. Division sign (÷, U+00F7, &divide;) is the obelus for arithmetic (e.g. 12 ÷ 3 = 4).
Yes. &minusd; and &dotminus; are both valid named HTML entities for U+2238 (∸). They render the same character in modern browsers.

Explore More HTML Entities!

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