Armenian Hyphen

֊

Shortcodes

Copy useful codes for armenian hyphen symbol ֊ to use in websites, apps, blogs, and docs.

Unicode
U+058A
HTML Code
֊
HEX Code
֊
CSS Code
\058A
JS/JSON
\u058A
Unix/C/PHP/JAVA
0x58A
URL-encode
%D6%8A

Customize Armenian Hyphen

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

֊
  

How to use Armenian Hyphen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>֊</span>
HTML Code:
<span>&#1418;</span>
HEX Code:
<span>&#x058A;</span>

Add with CSS

.armenian-hyphen::before {
  content: '\\058A';
}

Set it in JavaScript

document.querySelector('.armenian-hyphen').textContent = '֊';
copied