Dash With Left Upturn

Shortcodes

Copy useful codes for dash with left upturn symbol ⹃ to use in websites, apps, blogs, and docs.

Unicode
U+2E43
HTML Code
⹃
HEX Code
⹃
CSS Code
\2E43
JS/JSON
\u2E43
Unix/C/PHP/JAVA
0x2E43
URL-encode
%E2%B9%83

Customize Dash With Left Upturn

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

  

How to use Dash With Left Upturn Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⹃</span>
HTML Code:
<span>&#11843;</span>
HEX Code:
<span>&#x2E43;</span>

Add with CSS

.dash-with-left-upturn::before {
  content: '\\2E43';
}

Set it in JavaScript

document.querySelector('.dash-with-left-upturn').textContent = '⹃';
copied