| 記号名 | Section Sign |
| Unicodeバージョン | 1.1 |
| Unicode | U+00A7 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \00A7 |
| 16進コード | 0x00A7 |
| HTMLコード | § |
| LaTeX | \S |
| 記号 | § |
| URLエンコード(UTF-8パーセント) | %C2%A7 |
| 読み上げ名 / スクリーンリーダー | Section Sign |
| UTF-8 | C2 A7 |
| UTF-16 | 00A7 |
| UTF-32 | 000000A7 |
1\documentclass{article}2\usepackage{pifont}3\S4\end{document}以下の方法でほとんどの最新デバイスでsection sign記号を入力できます:
Alt + 0167 on the numeric keypad, or insert via Character Map.
Option + 6 on many keyboard layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00a7, then Enter (layout-dependent).
Long-press the ampersand or symbols panel on supported keyboards, or paste from this page.
Long-press the paragraph/section key where available, or paste from this page.
1span.section::before { content: "\00A7"; }1<span>§</span>各プログラミング言語におけるSection Sign記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u00A7' or String.fromCodePoint(0x00A7) |
| Python | '\N{SECTION SIGN}' or chr(167) |
| Rust | '\u{00A7}' |
| C / C++ | UTF-8 source or wchar_t with U+00A7 |
| Go | string(rune(0x00A7)) |
| Ruby | "\u00A7" |