| Symbol Name | Section Sign |
| Unicode Version | 1.1 |
| Unicode | U+00A7 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \00A7 |
| Hex Code | 0x00A7 |
| HTML Code | § |
| LaTeX | \S |
| Symbol | § |
| URL encode (UTF-8 percent) | %C2%A7 |
| Spoken / screen reader name | Section Sign |
| UTF-8 | C2 A7 |
| UTF-16 | 00A7 |
| UTF-32 | 000000A7 |
1\documentclass{article}2\usepackage{pifont}3\S4\end{document}You can type the section sign symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |