Minus Sign With Falling Dots

Shortcodes

Copy useful codes for minus sign with falling dots symbol ⨫ to use in websites, apps, blogs, and docs.

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

Customize Minus Sign With Falling Dots

Customize ⨫, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Minus Sign With Falling Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨫</span>
HTML Code:
<span>&#10795;</span>
HEX Code:
<span>&#x2A2B;</span>

Add with CSS

.minus-sign-with-falling-dots::before {
  content: '\\2A2B';
}

Set it in JavaScript

document.querySelector('.minus-sign-with-falling-dots').textContent = '⨫';
copied