Undertie

Shortcodes

Copy useful codes for undertie symbol ‿ to use in websites, apps, blogs, and docs.

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

Customize Undertie

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

  

How to use Undertie Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‿</span>
HTML Code:
<span>&#8255;</span>
HEX Code:
<span>&#x203F;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.undertie').textContent = '‿';
copied