Inverted Undertie

Shortcodes

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

Unicode
U+2054
HTML Code
⁔
HEX Code
⁔
CSS Code
\2054
JS/JSON
\u2054
Unix/C/PHP/JAVA
0x2054
URL-encode
%E2%81%94

Customize Inverted Undertie

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁔</span>
HTML Code:
<span>&#8276;</span>
HEX Code:
<span>&#x2054;</span>

Add with CSS

.inverted-undertie::before {
  content: '\\2054';
}

Set it in JavaScript

document.querySelector('.inverted-undertie').textContent = '⁔';
copied