Plus Sign In Left Half Circle

Shortcodes

Copy and paste codes for Plus Sign In Left Half Circle symbol ⨭ to use in your websites, apps, blogs, and more.

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

Customize Plus Sign In Left Half Circle Symbol

Customize ⨭ symbol as you like and download Plus Sign In Left Half Circle as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Plus Sign In Left Half Circle symbol in HTML, CSS, and JS?

Insert ⨭ Plus Sign In Left Half Circle using HTML

1. Copy-paste Plus Sign In Left Half Circle directly:
<span>⨭</span>
2. HTML Decimal Code:
<span>&#10797;</span>
3. Hexadecimal Code:
<span>&#x2A2D;</span>
Preview:

Add Plus Sign In Left Half Circle symbol with CSS

.plus-sign-in-left-half-circle::before {
    content: '\\2A2D';
}
Preview: Plus Sign In Left Half Circle

Plus Sign In Left Half Circle JavaScript Code

1. Direct Symbol:
document.querySelector('.plus-sign-in-left-half-circle').textContent = '⨭';
2. Unicode Escape for ⨭:
document.querySelector('.plus-sign-in-left-half-circle').textContent = '\u2A2D';
Preview: