Interior Product

Shortcodes

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

Unicode
U+2A3C
HTML Code
⨼
HEX Code
⨼
CSS Code
\2A3C
JS/JSON
\u2A3C
Unix/C/PHP/JAVA
0x2A3C
URL-encode
%E2%A8%BC

Customize Interior Product

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨼</span>
HTML Code:
<span>&#10812;</span>
HEX Code:
<span>&#x2A3C;</span>

Add with CSS

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

Set it in JavaScript

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