Minus Sign With Comma Above

Shortcodes

Copy useful codes for minus sign with comma above symbol ⨩ to use in websites, apps, blogs, and docs.

Unicode
U+2A29
HTML Code
⨩
HEX Code
⨩
CSS Code
\2A29
JS/JSON
\u2A29
Unix/C/PHP/JAVA
0x2A29
URL-encode
%E2%A8%A9

Customize Minus Sign With Comma Above

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

  

How to use Minus Sign With Comma Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨩</span>
HTML Code:
<span>&#10793;</span>
HEX Code:
<span>&#x2A29;</span>

Add with CSS

.minus-sign-with-comma-above::before {
  content: '\\2A29';
}

Set it in JavaScript

document.querySelector('.minus-sign-with-comma-above').textContent = '⨩';
copied