Plus Sign In Left Half Circle

Shortcodes

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

Unicode
U+2A2D
HTML Code
⨭
HEX Code
⨭
CSS Code
\2A2D
JS/JSON
\u2A2D
Unix/C/PHP/JAVA
0x2A2D
URL-encode
%E2%A8%AD

Customize Plus Sign In Left Half Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨭</span>
HTML Code:
<span>&#10797;</span>
HEX Code:
<span>&#x2A2D;</span>

Add with CSS

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

Set it in JavaScript

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