Plus Sign With Subscript Two

Shortcodes

Copy useful codes for plus sign with subscript two symbol ⨧ to use in websites, apps, blogs, and docs.

Unicode
U+2A27
HTML Code
⨧
HEX Code
⨧
CSS Code
\2A27
JS/JSON
\u2A27
Unix/C/PHP/JAVA
0x2A27
URL-encode
%E2%A8%A7

Customize Plus Sign With Subscript Two

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

  

How to use Plus Sign With Subscript Two Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨧</span>
HTML Code:
<span>&#10791;</span>
HEX Code:
<span>&#x2A27;</span>

Add with CSS

.plus-sign-with-subscript-two::before {
  content: '\\2A27';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-subscript-two').textContent = '⨧';
copied