| Nome del simbolo | Section Sign |
| Versione Unicode | 1.1 |
| Unicode | U+00A7 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \00A7 |
| Codice esadecimale | 0x00A7 |
| Codice HTML | § |
| LaTeX | \S |
| Simbolo | § |
| Codifica URL (percentuale UTF-8) | %C2%A7 |
| Nome parlato / screen reader | Section Sign |
| UTF-8 | C2 A7 |
| UTF-16 | 00A7 |
| UTF-32 | 000000A7 |
1\documentclass{article}2\usepackage{pifont}3\S4\end{document}Puoi digitare il simbolo section sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Section Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |