Projective

Shortcodes

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

Unicode
U+2305
HTML Code
⌅
HEX Code
⌅
CSS Code
\2305
JS/JSON
\u2305
Unix/C/PHP/JAVA
0x2305
URL-encode
%E2%8C%85
copied

Customize Projective Symbol

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

Insert ⌅ Projective using HTML

1. Copy-paste Projective directly:
<span>⌅</span>
2. HTML Decimal Code:
<span>&#8965;</span>
3. Hexadecimal Code:
<span>&#x2305;</span>
Preview:

Add Projective symbol with CSS

.projective::before {
    content: '\\2305';
}
Preview: Projective

Projective JavaScript Code

1. Direct Symbol:
document.querySelector('.projective').textContent = '⌅';
2. Unicode Escape for ⌅:
document.querySelector('.projective').textContent = '\u2305';
Preview: