Plus Sign With Black Triangle

Shortcodes

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

Unicode
U+2A28
HTML Code
⨨
HEX Code
⨨
CSS Code
\2A28
JS/JSON
\u2A28
Unix/C/PHP/JAVA
0x2A28
URL-encode
%E2%A8%A8

Customize Plus Sign With Black Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨨</span>
HTML Code:
<span>&#10792;</span>
HEX Code:
<span>&#x2A28;</span>

Add with CSS

.plus-sign-with-black-triangle::before {
  content: '\\2A28';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-black-triangle').textContent = '⨨';
copied