Multiplication Sign In Right Half Circle

Shortcodes

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

Unicode
U+2A35
HTML Code
⨵
HEX Code
⨵
CSS Code
\2A35
JS/JSON
\u2A35
Unix/C/PHP/JAVA
0x2A35
URL-encode
%E2%A8%B5

Customize Multiplication Sign In Right Half Circle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨵</span>
HTML Code:
<span>&#10805;</span>
HEX Code:
<span>&#x2A35;</span>

Add with CSS

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

Set it in JavaScript

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