Dot Minus

Shortcodes

Copy and paste codes for Dot Minus symbol ∸ to use in your websites, apps, blogs, and more.

Unicode
U+2238
HTML Code
∸
HEX Code
∸
CSS Code
\2238
JS/JSON
\u2238
Unix/C/PHP/JAVA
0x2238
URL-encode
%E2%88%B8
copied

Customize Dot Minus Symbol

Customize ∸ symbol as you like and download Dot Minus as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Dot Minus symbol in HTML, CSS, and JS?

Insert ∸ Dot Minus using HTML

1. Copy-paste Dot Minus directly:
<span>∸</span>
2. HTML Decimal Code:
<span>&#8760;</span>
3. Hexadecimal Code:
<span>&#x2238;</span>
Preview:

Add Dot Minus symbol with CSS

.dot-minus::before {
    content: '\\2238';
}
Preview: Dot Minus

Dot Minus JavaScript Code

1. Direct Symbol:
document.querySelector('.dot-minus').textContent = '∸';
2. Unicode Escape for ∸:
document.querySelector('.dot-minus').textContent = '\u2238';
Preview: