Infinity Negated With Vertical Bar

Shortcodes

Copy useful codes for infinity negated with vertical bar symbol ⧞ to use in websites, apps, blogs, and docs.

Unicode
U+29DE
HTML Code
⧞
HEX Code
⧞
CSS Code
\29DE
JS/JSON
\u29DE
Unix/C/PHP/JAVA
0x29DE
URL-encode
%E2%A7%9E

Customize Infinity Negated With Vertical Bar

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

  

How to use Infinity Negated With Vertical Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧞</span>
HTML Code:
<span>&#10718;</span>
HEX Code:
<span>&#x29DE;</span>

Add with CSS

.infinity-negated-with-vertical-bar::before {
  content: '\\29DE';
}

Set it in JavaScript

document.querySelector('.infinity-negated-with-vertical-bar').textContent = '⧞';
copied