Squared Rising Diagonal Slash

Shortcodes

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

Unicode
U+29C4
HTML Code
⧄
HEX Code
⧄
CSS Code
\29C4
JS/JSON
\u29C4
Unix/C/PHP/JAVA
0x29C4
URL-encode
%E2%A7%84

Customize Squared Rising Diagonal Slash

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧄</span>
HTML Code:
<span>&#10692;</span>
HEX Code:
<span>&#x29C4;</span>

Add with CSS

.squared-rising-diagonal-slash::before {
  content: '\\29C4';
}

Set it in JavaScript

document.querySelector('.squared-rising-diagonal-slash').textContent = '⧄';
copied