| 記号名 | Armenian Apostrophe |
| Unicodeバージョン | 1.1 |
| Unicode | U+055A |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \055A |
| 16進コード | 0x055A |
| HTMLコード | ՚ |
| LaTeX | \text{ARMENIANAPOSTROPHE} |
| 記号 | ՚ |
| URLエンコード(UTF-8パーセント) | %D5%9A |
| 読み上げ名 / スクリーンリーダー | Armenian Apostrophe |
| UTF-8 | D5 9A |
| UTF-16 | 055A |
| UTF-32 | 0000055A |
1\documentclass{article}2\usepackage{pifont}3\text{ARMENIANAPOSTROPHE}4\end{document}以下の方法でほとんどの最新デバイスでarmenian apostrophe記号を入力できます:
Alt + 1370 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "armenian apostrophe", or use Unicode Hex Input with 055A.
Ctrl + Shift + U, type 055a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with bracket and quote support.
1span.armenian-apostrophe::before { content: "\055A"; }1<span>՚</span>各プログラミング言語におけるArmenian Apostrophe記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u055A' or String.fromCodePoint(1370) |
| Python | '\N{ARMENIAN APOSTROPHE}' or chr(1370) |
| Rust | '\u{055A}' |
| C / C++ | UTF-8 source or wchar_t with U+055A |
| Go | string(rune(0x055A)) |
| Ruby | "\u{055A}" |