Character Tie

Shortcodes

Copy and paste codes for Character Tie symbol ⁀ to use in your websites, apps, blogs, and more.

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

Customize Character Tie Symbol

Customize ⁀ symbol as you like and download Character Tie 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 Character Tie symbol in HTML, CSS, and JS?

Insert ⁀ Character Tie using HTML

1. Copy-paste Character Tie directly:
<span>⁀</span>
2. HTML Decimal Code:
<span>&#8256;</span>
3. Hexadecimal Code:
<span>&#x2040;</span>
Preview:

Add Character Tie symbol with CSS

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

Character Tie JavaScript Code

1. Direct Symbol:
document.querySelector('.character-tie').textContent = '⁀';
2. Unicode Escape for ⁀:
document.querySelector('.character-tie').textContent = '\u2040';
Preview: