Minus Sign With Dot Below

Shortcodes

Copy useful codes for minus sign with dot below symbol ⨪ to use in websites, apps, blogs, and docs.

Unicode
U+2A2A
HTML Code
⨪
HEX Code
⨪
CSS Code
\2A2A
JS/JSON
\u2A2A
Unix/C/PHP/JAVA
0x2A2A
URL-encode
%E2%A8%AA

Customize Minus Sign With Dot Below

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

  

How to use Minus Sign With Dot Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨪</span>
HTML Code:
<span>&#10794;</span>
HEX Code:
<span>&#x2A2A;</span>

Add with CSS

.minus-sign-with-dot-below::before {
  content: '\\2A2A';
}

Set it in JavaScript

document.querySelector('.minus-sign-with-dot-below').textContent = '⨪';
copied