Armenian Question Mark

՞

Shortcodes

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

Unicode
U+055E
HTML Code
՞
HEX Code
՞
CSS Code
\055E
JS/JSON
\u055E
Unix/C/PHP/JAVA
0x55E
URL-encode
%D5%9E

Customize Armenian Question Mark

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

՞
  

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

Insert in HTML

1. Direct symbol:
<span>՞</span>
HTML Code:
<span>&#1374;</span>
HEX Code:
<span>&#x055E;</span>

Add with CSS

.armenian-question-mark::before {
  content: '\\055E';
}

Set it in JavaScript

document.querySelector('.armenian-question-mark').textContent = '՞';
copied