Squared Falling Diagonal Slash

Shortcodes

Copy useful codes for squared falling diagonal slash symbol ⧅ to use in websites, apps, blogs, and docs.

Unicode
U+29C5
HTML Code
⧅
HEX Code
⧅
CSS Code
\29C5
JS/JSON
\u29C5
Unix/C/PHP/JAVA
0x29C5
URL-encode
%E2%A7%85

Customize Squared Falling Diagonal Slash

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧅</span>
HTML Code:
<span>&#10693;</span>
HEX Code:
<span>&#x29C5;</span>

Add with CSS

.squared-falling-diagonal-slash::before {
  content: '\\29C5';
}

Set it in JavaScript

document.querySelector('.squared-falling-diagonal-slash').textContent = '⧅';
copied