Minus Sign With Rising Dots

Shortcodes

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

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

Customize Minus Sign With Rising Dots

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨬</span>
HTML Code:
<span>&#10796;</span>
HEX Code:
<span>&#x2A2C;</span>

Add with CSS

.minus-sign-with-rising-dots::before {
  content: '\\2A2C';
}

Set it in JavaScript

document.querySelector('.minus-sign-with-rising-dots').textContent = '⨬';
copied