Plus Sign In Right Half Circle

Shortcodes

Copy useful codes for plus sign in right half circle symbol ⨮ to use in websites, apps, blogs, and docs.

Unicode
U+2A2E
HTML Code
⨮
HEX Code
⨮
CSS Code
\2A2E
JS/JSON
\u2A2E
Unix/C/PHP/JAVA
0x2A2E
URL-encode
%E2%A8%AE

Customize Plus Sign In Right Half Circle

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

  

How to use Plus Sign In Right Half Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨮</span>
HTML Code:
<span>&#10798;</span>
HEX Code:
<span>&#x2A2E;</span>

Add with CSS

.plus-sign-in-right-half-circle::before {
  content: '\\2A2E';
}

Set it in JavaScript

document.querySelector('.plus-sign-in-right-half-circle').textContent = '⨮';
copied