Armenian Emphasis Mark

՛

Shortcodes

Copy useful codes for armenian emphasis mark symbol ՛ to use in websites, apps, blogs, and docs.

Unicode
U+055B
HTML Code
՛
HEX Code
՛
CSS Code
\055B
JS/JSON
\u055B
Unix/C/PHP/JAVA
0x55B
URL-encode
%D5%9B

Customize Armenian Emphasis Mark

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

՛
  

How to use Armenian Emphasis Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>՛</span>
HTML Code:
<span>&#1371;</span>
HEX Code:
<span>&#x055B;</span>

Add with CSS

.armenian-emphasis-mark::before {
  content: '\\055B';
}

Set it in JavaScript

document.querySelector('.armenian-emphasis-mark').textContent = '՛';
copied