Equals Sign And Slanted Parallel

Shortcodes

Copy useful codes for equals sign and slanted parallel symbol ⧣ to use in websites, apps, blogs, and docs.

Unicode
U+29E3
HTML Code
⧣
HEX Code
⧣
CSS Code
\29E3
JS/JSON
\u29E3
Unix/C/PHP/JAVA
0x29E3
URL-encode
%E2%A7%A3

Customize Equals Sign And Slanted Parallel

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

  

How to use Equals Sign And Slanted Parallel Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧣</span>
HTML Code:
<span>&#10723;</span>
HEX Code:
<span>&#x29E3;</span>

Add with CSS

.equals-sign-and-slanted-parallel::before {
  content: '\\29E3';
}

Set it in JavaScript

document.querySelector('.equals-sign-and-slanted-parallel').textContent = '⧣';
copied