Sector

Shortcodes

Copy useful codes for sector symbol ⌔ to use in websites, apps, blogs, and docs.

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

Customize Sector

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌔</span>
HTML Code:
<span>&#8980;</span>
HEX Code:
<span>&#x2314;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.sector').textContent = '⌔';
copied