Righthand Interior Product

Shortcodes

Copy useful codes for righthand interior product symbol ⨽ to use in websites, apps, blogs, and docs.

Unicode
U+2A3D
HTML Code
⨽
HEX Code
⨽
CSS Code
\2A3D
JS/JSON
\u2A3D
Unix/C/PHP/JAVA
0x2A3D
URL-encode
%E2%A8%BD

Customize Righthand Interior Product

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

  

How to use Righthand Interior Product Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨽</span>
HTML Code:
<span>&#10813;</span>
HEX Code:
<span>&#x2A3D;</span>

Add with CSS

.righthand-interior-product::before {
  content: '\\2A3D';
}

Set it in JavaScript

document.querySelector('.righthand-interior-product').textContent = '⨽';
copied