Between

Shortcodes

Copy and paste codes for Between symbol ≬ to use in your websites, apps, blogs, and more.

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

Customize Between Symbol

Customize ≬ symbol as you like and download Between as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Between symbol in HTML, CSS, and JS?

Insert ≬ Between using HTML

1. Copy-paste Between directly:
<span>≬</span>
2. HTML Decimal Code:
<span>&#8812;</span>
3. Hexadecimal Code:
<span>&#x226C;</span>
Preview:

Add Between symbol with CSS

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

Between JavaScript Code

1. Direct Symbol:
document.querySelector('.between').textContent = '≬';
2. Unicode Escape for ≬:
document.querySelector('.between').textContent = '\u226C';
Preview: