Segment

Shortcodes

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

Unicode
U+2313
HTML Code
⌓
HEX Code
⌓
CSS Code
\2313
JS/JSON
\u2313
Unix/C/PHP/JAVA
0x2313
URL-encode
%E2%8C%93
copied

Customize Segment Symbol

Customize ⌓ symbol as you like and download Segment 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 Segment symbol in HTML, CSS, and JS?

Insert ⌓ Segment using HTML

1. Copy-paste Segment directly:
<span>⌓</span>
2. HTML Decimal Code:
<span>&#8979;</span>
3. Hexadecimal Code:
<span>&#x2313;</span>
Preview:

Add Segment symbol with CSS

.segment::before {
    content: '\\2313';
}
Preview: Segment

Segment JavaScript Code

1. Direct Symbol:
document.querySelector('.segment').textContent = '⌓';
2. Unicode Escape for ⌓:
document.querySelector('.segment').textContent = '\u2313';
Preview: