Heavy Minus Sign

Shortcodes

Copy useful codes for heavy minus sign ➖ to use in websites, apps, blogs, and docs.

Unicode
U+2796
HTML Code
➖
HEX Code
➖
CSS Code
\2796
JS/JSON
\u2796
Unix/C/PHP/JAVA
0x2796
URL-encode
%E2%9E%96

Customize Heavy Minus Sign

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

  

How to use Heavy Minus Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>➖</span>
HTML Code:
<span>&#10134;</span>
HEX Code:
<span>&#x2796;</span>

Add with CSS

.heavy-minus-sign::before {
  content: '\\2796';
}

Set it in JavaScript

document.querySelector('.heavy-minus-sign').textContent = '➖';
copied