Character Tie

Shortcodes

Copy useful codes for character tie ⁀ to use in websites, apps, blogs, and docs.

Unicode
U+2040
HTML Code
⁀
HEX Code
⁀
CSS Code
\2040
JS/JSON
\u2040
Unix/C/PHP/JAVA
0x2040
URL-encode
%E2%81%80

Customize Character Tie

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

  

How to use Character Tie in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁀</span>
HTML Code:
<span>&#8256;</span>
HEX Code:
<span>&#x2040;</span>

Add with CSS

.character-tie::before {
  content: '\\2040';
}

Set it in JavaScript

document.querySelector('.character-tie').textContent = '⁀';
copied