Position Indicator

Shortcodes

Copy useful codes for position indicator symbol ⌖ to use in websites, apps, blogs, and docs.

Unicode
U+2316
HTML Code
⌖
HEX Code
⌖
CSS Code
\2316
JS/JSON
\u2316
Unix/C/PHP/JAVA
0x2316
URL-encode
%E2%8C%96

Customize Position Indicator

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

  

How to use Position Indicator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌖</span>
HTML Code:
<span>&#8982;</span>
HEX Code:
<span>&#x2316;</span>

Add with CSS

.position-indicator::before {
  content: '\\2316';
}

Set it in JavaScript

document.querySelector('.position-indicator').textContent = '⌖';
copied