Tie Over Infinity

Shortcodes

Copy useful codes for tie over infinity symbol ⧝ to use in websites, apps, blogs, and docs.

Unicode
U+29DD
HTML Code
⧝
HEX Code
⧝
CSS Code
\29DD
JS/JSON
\u29DD
Unix/C/PHP/JAVA
0x29DD
URL-encode
%E2%A7%9D

Customize Tie Over Infinity

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

  

How to use Tie Over Infinity Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧝</span>
HTML Code:
<span>&#10717;</span>
HEX Code:
<span>&#x29DD;</span>

Add with CSS

.tie-over-infinity::before {
  content: '\\29DD';
}

Set it in JavaScript

document.querySelector('.tie-over-infinity').textContent = '⧝';
copied