Minus Sign In Triangle

Shortcodes

Copy useful codes for minus sign in triangle symbol ⨺ to use in websites, apps, blogs, and docs.

Unicode
U+2A3A
HTML Code
⨺
HEX Code
⨺
CSS Code
\2A3A
JS/JSON
\u2A3A
Unix/C/PHP/JAVA
0x2A3A
URL-encode
%E2%A8%BA

Customize Minus Sign In Triangle

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

  

How to use Minus Sign In Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨺</span>
HTML Code:
<span>&#10810;</span>
HEX Code:
<span>&#x2A3A;</span>

Add with CSS

.minus-sign-in-triangle::before {
  content: '\\2A3A';
}

Set it in JavaScript

document.querySelector('.minus-sign-in-triangle').textContent = '⨺';
copied