HTML Entity for Commercial Minus Sign (⁒)

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
U+2052General Punctuation (U+2000–U+206F)
⁒Hexadecimal reference
⁒Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+2052
Hex code ⁒
HTML code ⁒
Named entity —
CSS code \2052Complete HTML Example
This example shows U+2052 using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2052";
}
</style>
</head>
<body>
<p>Commercial Minus using Hexa Decimal: ⁒</p>
<p>Commercial Minus using HTML Code: ⁒</p>
<p id="point">Commercial Minus using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2052 is supported in modern browsers; glyph appearance may vary by font:
👀 Live Preview
See the Commercial Minus Sign in context (serif font recommended):
🧠 How It Works
Hexadecimal Code
⁒ references code point U+2052 using hex digits 2052.
Decimal HTML Code
⁒ is the decimal equivalent (8274) for the same character.
CSS Entity
\2052 is the CSS escape for U+2052, used in the content property of ::before or ::after.
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:
Some European commercial and accounting notation for negative amounts.
Distinguish specialized minus typography from ordinary hyphens.
Uralic Phonetic Alphabet and scholarly phonetic material.
Specialized mathematical or typographic symbol references.
Character tables and entity glossaries for General Punctuation.
Historical or specialty fonts that include U+2052.
Provide context in text so screen readers convey meaning, not just the glyph shape.
💡 Best Practices
Do
- Use
⁒or⁒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
\2052only inside CSScontent - 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
\2052in HTML text nodes - Expect a named entity—U+2052 has none
Key Takeaways
No named entity—use numeric references
⁒ ⁒For CSS stylesheets, use the escape in the content property
\2052U+2052 COMMERCIAL MINUS SIGN
Commercial, financial, and phonetic notation
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⁒ (hex), ⁒ (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.⁒ or ⁒) go directly in HTML markup. The CSS escape \2052 is used in stylesheets, typically in the content property of pseudo-elements.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
