Undertie

Shortcodes

Copy and paste codes for Undertie symbol ‿ to use in your websites, apps, blogs, and more.

Unicode
U+203F
HTML Code
‿
HEX Code
‿
CSS Code
\203F
JS/JSON
\u203F
Unix/C/PHP/JAVA
0x203F
URL-encode
%E2%80%BF
copied

Customize Undertie Symbol

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

Insert ‿ Undertie using HTML

1. Copy-paste Undertie directly:
<span>‿</span>
2. HTML Decimal Code:
<span>&#8255;</span>
3. Hexadecimal Code:
<span>&#x203F;</span>
Preview:

Add Undertie symbol with CSS

.undertie::before {
    content: '\\203F';
}
Preview: Undertie

Undertie JavaScript Code

1. Direct Symbol:
document.querySelector('.undertie').textContent = '‿';
2. Unicode Escape for ‿:
document.querySelector('.undertie').textContent = '\u203F';
Preview: