Minus Sign With Rising Dots

Shortcodes

Copy and paste codes for Minus Sign With Rising Dots symbol ⨬ to use in your websites, apps, blogs, and more.

Unicode
U+2A2C
HTML Code
⨬
HEX Code
⨬
CSS Code
\2A2C
JS/JSON
\u2A2C
Unix/C/PHP/JAVA
0x2A2C
URL-encode
%E2%A8%AC
copied

Customize Minus Sign With Rising Dots Symbol

Customize ⨬ symbol as you like and download Minus Sign With Rising Dots 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 Minus Sign With Rising Dots symbol in HTML, CSS, and JS?

Insert ⨬ Minus Sign With Rising Dots using HTML

1. Copy-paste Minus Sign With Rising Dots directly:
<span>⨬</span>
2. HTML Decimal Code:
<span>&#10796;</span>
3. Hexadecimal Code:
<span>&#x2A2C;</span>
Preview:

Add Minus Sign With Rising Dots symbol with CSS

.minus-sign-with-rising-dots::before {
    content: '\\2A2C';
}
Preview: Minus Sign With Rising Dots

Minus Sign With Rising Dots JavaScript Code

1. Direct Symbol:
document.querySelector('.minus-sign-with-rising-dots').textContent = '⨬';
2. Unicode Escape for ⨬:
document.querySelector('.minus-sign-with-rising-dots').textContent = '\u2A2C';
Preview: