Position Indicator

Shortcodes

Copy and paste codes for Position Indicator symbol ⌖ to use in your websites, apps, blogs, and more.

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

Customize Position Indicator Symbol

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

Insert ⌖ Position Indicator using HTML

1. Copy-paste Position Indicator directly:
<span>⌖</span>
2. HTML Decimal Code:
<span>&#8982;</span>
3. Hexadecimal Code:
<span>&#x2316;</span>
Preview:

Add Position Indicator symbol with CSS

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

Position Indicator JavaScript Code

1. Direct Symbol:
document.querySelector('.position-indicator').textContent = '⌖';
2. Unicode Escape for ⌖:
document.querySelector('.position-indicator').textContent = '\u2316';
Preview: