Perpendicular With S

Shortcodes

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

Unicode
U+2AE1
HTML Code
⫡
HEX Code
⫡
CSS Code
\2AE1
JS/JSON
\u2AE1
Unix/C/PHP/JAVA
0x2AE1
URL-encode
%E2%AB%A1

Customize Perpendicular With S

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

  

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

Insert in HTML

1. Direct symbol:
<span>⫡</span>
HTML Code:
<span>&#10977;</span>
HEX Code:
<span>&#x2AE1;</span>

Add with CSS

.perpendicular-with-s::before {
  content: '\\2AE1';
}

Set it in JavaScript

document.querySelector('.perpendicular-with-s').textContent = '⫡';
copied