Plus Sign With Tilde Above

Shortcodes

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

Unicode
U+2A24
HTML Code
⨤
HEX Code
⨤
CSS Code
\2A24
JS/JSON
\u2A24
Unix/C/PHP/JAVA
0x2A24
URL-encode
%E2%A8%A4

Customize Plus Sign With Tilde Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨤</span>
HTML Code:
<span>&#10788;</span>
HEX Code:
<span>&#x2A24;</span>

Add with CSS

.plus-sign-with-tilde-above::before {
  content: '\\2A24';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-tilde-above').textContent = '⨤';
copied