Multiplication Sign In Left Half Circle

Shortcodes

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

Unicode
U+2A34
HTML Code
⨴
HEX Code
⨴
CSS Code
\2A34
JS/JSON
\u2A34
Unix/C/PHP/JAVA
0x2A34
URL-encode
%E2%A8%B4
copied

Customize Multiplication Sign In Left Half Circle Symbol

Customize ⨴ symbol as you like and download Multiplication 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 Multiplication Sign In Left Half Circle symbol in HTML, CSS, and JS?

Insert ⨴ Multiplication Sign In Left Half Circle using HTML

1. Copy-paste Multiplication Sign In Left Half Circle directly:
<span>⨴</span>
2. HTML Decimal Code:
<span>&#10804;</span>
3. Hexadecimal Code:
<span>&#x2A34;</span>
Preview:

Add Multiplication Sign In Left Half Circle symbol with CSS

.multiplication-sign-in-left-half-circle::before {
    content: '\\2A34';
}
Preview: Multiplication Sign In Left Half Circle

Multiplication Sign In Left Half Circle JavaScript Code

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