HTML Entity for Commercial Minus Sign (⁒)

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

What You'll Learn

How to display the Commercial Minus Sign (⁒) in HTML and CSS. This character is U+2052 (COMMERCIAL MINUS SIGN) in the General Punctuation block (U+2000–U+206F). It appears in some commercial and financial contexts for subtraction or negative quantities, and in the Uralic Phonetic Alphabet (UPA).

There is no named HTML entity for U+2052. Use ⁒, ⁒, or \2052 in CSS content. Do not confuse ⁒ with the hyphen-minus - (U+002D), the minus sign U+2212 (−), or the en dash U+2013 (–).

⚡ Quick Reference — Commercial Minus Sign

Unicode U+2052

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

Hex Code ⁒

Hexadecimal reference

HTML Code ⁒

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2052
Hex code       ⁒
HTML code      ⁒
Named entity   —
CSS code       \2052
1

Complete HTML Example

This example shows U+2052 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2052";
  }
 </style>
</head>
<body>
<p>Commercial Minus using Hexa Decimal: &#x2052;</p>
<p>Commercial Minus using HTML Code: &#8274;</p>
<p id="point">Commercial Minus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2052 is supported in modern browsers; glyph appearance may vary by font:

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

👀 Live Preview

See the Commercial Minus Sign in context (serif font recommended):

Financial Balance €1⁒250
Standalone
vs hyphen-minus Commercial: ⁒   Hyphen: -   Minus: −
UPA / scholarly Phonetic notation with ⁒
Monospace refs &#x2052; &#8274; \2052

🧠 How It Works

1

Hexadecimal Code

&#x2052; references code point U+2052 using hex digits 2052.

HTML markup
2

Decimal HTML Code

&#8274; is the decimal equivalent (8274) for the same character.

HTML markup
3

CSS Entity

\2052 is the CSS escape for U+2052, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Commercial Minus glyph: . Unicode U+2052 is in General Punctuation. No named HTML entity exists.

Use Cases

The Commercial Minus Sign (⁒) commonly appears in:

💰 Commercial docs

Some European commercial and accounting notation for negative amounts.

📊 Financial text

Distinguish specialized minus typography from ordinary hyphens.

🔤 Linguistics

Uralic Phonetic Alphabet and scholarly phonetic material.

📐 Math notation

Specialized mathematical or typographic symbol references.

📖 Unicode docs

Character tables and entity glossaries for General Punctuation.

✍️ Typography

Historical or specialty fonts that include U+2052.

♿ Accessibility

Provide context in text so screen readers convey meaning, not just the glyph shape.

💡 Best Practices

Do

  • Use &#x2052; or &#8274; when you need this specific symbol
  • Choose fonts with General Punctuation support (Segoe UI, Noto Serif)
  • Explain the symbol in surrounding text for clarity
  • Use \2052 only inside CSS content
  • Keep numeric reference style consistent in one document

Don’t

  • Substitute ⁒ for ordinary hyphen-minus - without reason
  • Confuse U+2052 with minus sign U+2212 (−) or figure dash U+2012
  • Assume every font renders U+2052 distinctly
  • Put CSS escape \2052 in HTML text nodes
  • Expect a named entity—U+2052 has none

Key Takeaways

1

No named entity—use numeric references

&#x2052; &#8274;
2

For CSS stylesheets, use the escape in the content property

\2052
3

U+2052 COMMERCIAL MINUS SIGN

4

Commercial, financial, and phonetic notation

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2052; (hex), &#8274; (decimal), or \2052 in CSS content. There is no named HTML entity for U+2052.
U+2052 (COMMERCIAL MINUS SIGN). General Punctuation (U+2000–U+206F). Hex 2052, decimal 8274.
When you need the ⁒ symbol in commercial or financial documents, phonetic notation, or when you must distinguish it from the regular hyphen-minus or mathematical minus sign.
Numeric references (&#8274; or &#x2052;) go directly in HTML markup. The CSS escape \2052 is used in stylesheets, typically in the content property of pseudo-elements.
HTML5 named entities focus on commonly used characters. U+2052 is specialized, so numeric codes are standard. This is the same pattern as many General Punctuation symbols.

Explore More HTML Entities!

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