Perpendicular

Shortcodes

Copy useful codes for perpendicular symbol ⟂ to use in websites, apps, blogs, and docs.

Unicode
U+27C2
HTML Code
⟂
HEX Code
⟂
CSS Code
\27C2
JS/JSON
\u27C2
Unix/C/PHP/JAVA
0x27C2
URL-encode
%E2%9F%82

Customize Perpendicular

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟂</span>
HTML Code:
<span>&#10178;</span>
HEX Code:
<span>&#x27C2;</span>

Add with CSS

.perpendicular::before {
  content: '\\27C2';
}

Set it in JavaScript

document.querySelector('.perpendicular').textContent = '⟂';
copied