Equals Sign And Slanted Parallel With Tilde Above

Shortcodes

Copy useful codes for equals sign and slanted parallel with tilde above symbol ⧤ to use in websites, apps, blogs, and docs.

Unicode
U+29E4
HTML Code
⧤
HEX Code
⧤
CSS Code
\29E4
JS/JSON
\u29E4
Unix/C/PHP/JAVA
0x29E4
URL-encode
%E2%A7%A4

Customize Equals Sign And Slanted Parallel With Tilde Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧤</span>
HTML Code:
<span>&#10724;</span>
HEX Code:
<span>&#x29E4;</span>

Add with CSS

.equals-sign-and-slanted-parallel-with-tilde-above::before {
  content: '\\29E4';
}

Set it in JavaScript

document.querySelector('.equals-sign-and-slanted-parallel-with-tilde-above').textContent = '⧤';
copied