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