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