Plus Sign In Triangle

Shortcodes

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

Unicode
U+2A39
HTML Code
⨹
HEX Code
⨹
CSS Code
\2A39
JS/JSON
\u2A39
Unix/C/PHP/JAVA
0x2A39
URL-encode
%E2%A8%B9

Customize Plus Sign In Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨹</span>
HTML Code:
<span>&#10809;</span>
HEX Code:
<span>&#x2A39;</span>

Add with CSS

.plus-sign-in-triangle::before {
  content: '\\2A39';
}

Set it in JavaScript

document.querySelector('.plus-sign-in-triangle').textContent = '⨹';
copied