Multiplication Sign In Left Half Circle

Shortcodes

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

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

Customize Multiplication Sign In Left Half Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨴</span>
HTML Code:
<span>&#10804;</span>
HEX Code:
<span>&#x2A34;</span>

Add with CSS

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

Set it in JavaScript

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