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