Between

Shortcodes

Copy useful codes for between symbol ≬ to use in websites, apps, blogs, and docs.

Unicode
U+226C
HTML Code
≬
HEX Code
≬
CSS Code
\226C
JS/JSON
\u226C
Unix/C/PHP/JAVA
0x226C
URL-encode
%E2%89%AC

Customize Between

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

  

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

Insert in HTML

1. Direct symbol:
<span>≬</span>
HTML Code:
<span>&#8812;</span>
HEX Code:
<span>&#x226C;</span>

Add with CSS

.between::before {
  content: '\\226C';
}

Set it in JavaScript

document.querySelector('.between').textContent = '≬';
copied