Sector

Shortcodes

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

Unicode
U+2314
HTML Code
⌔
HEX Code
⌔
CSS Code
\2314
JS/JSON
\u2314
Unix/C/PHP/JAVA
0x2314
URL-encode
%E2%8C%94
copied

Customize Sector Symbol

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

Insert ⌔ Sector using HTML

1. Copy-paste Sector directly:
<span>⌔</span>
2. HTML Decimal Code:
<span>&#8980;</span>
3. Hexadecimal Code:
<span>&#x2314;</span>
Preview:

Add Sector symbol with CSS

.sector::before {
    content: '\\2314';
}
Preview: Sector

Sector JavaScript Code

1. Direct Symbol:
document.querySelector('.sector').textContent = '⌔';
2. Unicode Escape for ⌔:
document.querySelector('.sector').textContent = '\u2314';
Preview: