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