Armenian Apostrophe

՚

Shortcodes

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

Unicode
U+055A
HTML Code
՚
HEX Code
՚
CSS Code
\055A
JS/JSON
\u055A
Unix/C/PHP/JAVA
0x55A
URL-encode
%D5%9A

Customize Armenian Apostrophe

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

՚
  

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

Insert in HTML

1. Direct symbol:
<span>՚</span>
HTML Code:
<span>&#1370;</span>
HEX Code:
<span>&#x055A;</span>

Add with CSS

.armenian-apostrophe::before {
  content: '\\055A';
}

Set it in JavaScript

document.querySelector('.armenian-apostrophe').textContent = '՚';
copied