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