Minus Sign With Falling Dots

Shortcodes

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

Unicode
U+2A2B
HTML Code
⨫
HEX Code
⨫
CSS Code
\2A2B
JS/JSON
\u2A2B
Unix/C/PHP/JAVA
0x2A2B
URL-encode
%E2%A8%AB
copied

Customize Minus Sign With Falling Dots Symbol

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

Insert ⨫ Minus Sign With Falling Dots using HTML

1. Copy-paste Minus Sign With Falling Dots directly:
<span>⨫</span>
2. HTML Decimal Code:
<span>&#10795;</span>
3. Hexadecimal Code:
<span>&#x2A2B;</span>
Preview:

Add Minus Sign With Falling Dots symbol with CSS

.minus-sign-with-falling-dots::before {
    content: '\\2A2B';
}
Preview: Minus Sign With Falling Dots

Minus Sign With Falling Dots JavaScript Code

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