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