| 記号名 | Double Low-9 Quotation Mark |
| Unicodeバージョン | 1.1 |
| Unicode | U+201E |
| Unicodeブロック | |
| 一般カテゴリ | Open Punctuation (Ps) |
| CSSコード | \201E |
| 16進コード | 0x201E |
| HTMLコード | „ |
| LaTeX | \text{DOUBLELOW-9QUOTATIONMARK} |
| 記号 | „ |
| URLエンコード(UTF-8パーセント) | %E2%80%9E |
| 読み上げ名 / スクリーンリーダー | Double Low-9 Quotation Mark |
| UTF-8 | E2 80 9E |
| UTF-16 | 201E |
| UTF-32 | 0000201E |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLELOW-9QUOTATIONMARK}4\end{document}以下の方法でほとんどの最新デバイスでdouble low-9 quotation mark記号を入力できます:
Alt + 8222 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double low-9 quotation mark", or use Unicode Hex Input with 201E.
Ctrl + Shift + U, type 201e, 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.double-low-9-quotation-mark::before { content: "\201E"; }1<span>„</span>各プログラミング言語におけるDouble Low-9 Quotation Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u201E' or String.fromCodePoint(8222) |
| Python | '\N{DOUBLE LOW-9 QUOTATION MARK}' or chr(8222) |
| Rust | '\u{201E}' |
| C / C++ | UTF-8 source or wchar_t with U+201E |
| Go | string(rune(0x201E)) |
| Ruby | "\u{201E}" |