Hyphen With Diaeresis

Shortcodes

Copy useful codes for hyphen with diaeresis symbol ⸚ to use in websites, apps, blogs, and docs.

Unicode
U+2E1A
HTML Code
⸚
HEX Code
⸚
CSS Code
\2E1A
JS/JSON
\u2E1A
Unix/C/PHP/JAVA
0x2E1A
URL-encode
%E2%B8%9A

Customize Hyphen With Diaeresis

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

  

How to use Hyphen With Diaeresis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸚</span>
HTML Code:
<span>&#11802;</span>
HEX Code:
<span>&#x2E1A;</span>

Add with CSS

.hyphen-with-diaeresis::before {
  content: '\\2E1A';
}

Set it in JavaScript

document.querySelector('.hyphen-with-diaeresis').textContent = '⸚';
copied