Identical To And Slanted Parallel

Shortcodes

Copy useful codes for identical to and slanted parallel symbol ⧥ to use in websites, apps, blogs, and docs.

Unicode
U+29E5
HTML Code
⧥
HEX Code
⧥
CSS Code
\29E5
JS/JSON
\u29E5
Unix/C/PHP/JAVA
0x29E5
URL-encode
%E2%A7%A5

Customize Identical To And Slanted Parallel

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

  

How to use Identical To And Slanted Parallel Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧥</span>
HTML Code:
<span>&#10725;</span>
HEX Code:
<span>&#x29E5;</span>

Add with CSS

.identical-to-and-slanted-parallel::before {
  content: '\\29E5';
}

Set it in JavaScript

document.querySelector('.identical-to-and-slanted-parallel').textContent = '⧥';
copied