Intercalate

Shortcodes

Copy useful codes for intercalate symbol ⊺ to use in websites, apps, blogs, and docs.

Unicode
U+22BA
HTML Code
⊺
HEX Code
⊺
CSS Code
\22BA
JS/JSON
\u22BA
Unix/C/PHP/JAVA
0x22BA
URL-encode
%E2%8A%BA

Customize Intercalate

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

  

How to use Intercalate Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊺</span>
HTML Code:
<span>&#8890;</span>
HEX Code:
<span>&#x22BA;</span>

Add with CSS

.intercalate::before {
  content: '\\22BA';
}

Set it in JavaScript

document.querySelector('.intercalate').textContent = '⊺';
copied