Plus Sign With Tilde Below

Shortcodes

Copy useful codes for plus sign with tilde below symbol ⨦ to use in websites, apps, blogs, and docs.

Unicode
U+2A26
HTML Code
⨦
HEX Code
⨦
CSS Code
\2A26
JS/JSON
\u2A26
Unix/C/PHP/JAVA
0x2A26
URL-encode
%E2%A8%A6

Customize Plus Sign With Tilde Below

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

  

How to use Plus Sign With Tilde Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨦</span>
HTML Code:
<span>&#10790;</span>
HEX Code:
<span>&#x2A26;</span>

Add with CSS

.plus-sign-with-tilde-below::before {
  content: '\\2A26';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-tilde-below').textContent = '⨦';
copied