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