Perspective

Shortcodes

Copy useful codes for perspective symbol ⌆ to use in websites, apps, blogs, and docs.

Unicode
U+2306
HTML Code
⌆
HEX Code
⌆
CSS Code
\2306
JS/JSON
\u2306
Unix/C/PHP/JAVA
0x2306
URL-encode
%E2%8C%86

Customize Perspective

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌆</span>
HTML Code:
<span>&#8966;</span>
HEX Code:
<span>&#x2306;</span>

Add with CSS

.perspective::before {
  content: '\\2306';
}

Set it in JavaScript

document.querySelector('.perspective').textContent = '⌆';
copied