Mathematical Falling Diagonal

Shortcodes

Copy useful codes for mathematical falling diagonal symbol ⟍ to use in websites, apps, blogs, and docs.

Unicode
U+27CD
HTML Code
⟍
HEX Code
⟍
CSS Code
\27CD
JS/JSON
\u27CD
Unix/C/PHP/JAVA
0x27CD
URL-encode
%E2%9F%8D

Customize Mathematical Falling Diagonal

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

  

How to use Mathematical Falling Diagonal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟍</span>
HTML Code:
<span>&#10189;</span>
HEX Code:
<span>&#x27CD;</span>

Add with CSS

.mathematical-falling-diagonal::before {
  content: '\\27CD';
}

Set it in JavaScript

document.querySelector('.mathematical-falling-diagonal').textContent = '⟍';
copied