| 記号名 | Pilcrow Sign |
| Unicodeバージョン | 1.1 |
| Unicode | U+00B6 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \00B6 |
| 16進コード | 0x00B6 |
| HTMLコード | ¶ |
| LaTeX | \P |
| 記号 | ¶ |
| URLエンコード(UTF-8パーセント) | %C2%B6 |
| 読み上げ名 / スクリーンリーダー | Pilcrow Sign |
| UTF-8 | C2 B6 |
| UTF-16 | 00B6 |
| UTF-32 | 000000B6 |
1\documentclass{article}2\usepackage{pifont}3\P4\end{document}以下の方法でほとんどの最新デバイスでpilcrow sign記号を入力できます:
Alt + 0182 on the numeric keypad, or insert via Character Map.
Option + 7 on many keyboard layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00b6, then Enter (layout-dependent).
Paste from this page or use a custom text replacement.
Paste from this page or use extended symbol panels where available.
1span.pilcrow::before { content: "\00B6"; }1<span>¶</span>各プログラミング言語におけるPilcrow Sign記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u00B6' or String.fromCodePoint(0x00B6) |
| Python | '\N{PILCROW SIGN}' or chr(182) |
| Rust | '\u{00B6}' |
| C / C++ | UTF-8 source or wchar_t with U+00B6 |
| Go | string(rune(0x00B6)) |
| Ruby | "\u00B6" |