Incomplete Infinity

Shortcodes

Copy and paste codes for Incomplete Infinity symbol ⧜ to use in your websites, apps, blogs, and more.

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

Customize Incomplete Infinity Symbol

Customize ⧜ symbol as you like and download Incomplete Infinity as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Incomplete Infinity symbol in HTML, CSS, and JS?

Insert ⧜ Incomplete Infinity using HTML

1. Copy-paste Incomplete Infinity directly:
<span>⧜</span>
2. HTML Decimal Code:
<span>&#10716;</span>
3. Hexadecimal Code:
<span>&#x29DC;</span>
Preview:

Add Incomplete Infinity symbol with CSS

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

Incomplete Infinity JavaScript Code

1. Direct Symbol:
document.querySelector('.incomplete-infinity').textContent = '⧜';
2. Unicode Escape for ⧜:
document.querySelector('.incomplete-infinity').textContent = '\u29DC';
Preview: