Incomplete Infinity

Shortcodes

Copy useful codes for incomplete infinity symbol ⧜ to use in websites, apps, blogs, and docs.

Unicode
U+29DC
HTML Code
⧜
HEX Code
⧜
CSS Code
\29DC
JS/JSON
\u29DC
Unix/C/PHP/JAVA
0x29DC
URL-encode
%E2%A7%9C

Customize Incomplete Infinity

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

  

How to use Incomplete Infinity Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧜</span>
HTML Code:
<span>&#10716;</span>
HEX Code:
<span>&#x29DC;</span>

Add with CSS

.incomplete-infinity::before {
  content: '\\29DC';
}

Set it in JavaScript

document.querySelector('.incomplete-infinity').textContent = '⧜';
copied