Mathematical Rising Diagonal

Shortcodes

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

Unicode
U+27CB
HTML Code
⟋
HEX Code
⟋
CSS Code
\27CB
JS/JSON
\u27CB
Unix/C/PHP/JAVA
0x27CB
URL-encode
%E2%9F%8B

Customize Mathematical Rising Diagonal

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟋</span>
HTML Code:
<span>&#10187;</span>
HEX Code:
<span>&#x27CB;</span>

Add with CSS

.mathematical-rising-diagonal::before {
  content: '\\27CB';
}

Set it in JavaScript

document.querySelector('.mathematical-rising-diagonal').textContent = '⟋';
copied