Heavy Plus Sign

Shortcodes

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

Unicode
U+2795
HTML Code
➕
HEX Code
➕
CSS Code
\2795
JS/JSON
\u2795
Unix/C/PHP/JAVA
0x2795
URL-encode
%E2%9E%95

Customize Heavy Plus Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>➕</span>
HTML Code:
<span>&#10133;</span>
HEX Code:
<span>&#x2795;</span>

Add with CSS

.heavy-plus-sign::before {
  content: '\\2795';
}

Set it in JavaScript

document.querySelector('.heavy-plus-sign').textContent = '➕';
copied