| Nombre del símbolo | Section Sign |
| Versión Unicode | 1.1 |
| Unicode | U+00A7 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \00A7 |
| Código hexadecimal | 0x00A7 |
| Código HTML | § |
| LaTeX | \S |
| Símbolo | § |
| Codificación URL (porcentaje UTF-8) | %C2%A7 |
| Nombre oral / lector de pantalla | Section Sign |
| UTF-8 | C2 A7 |
| UTF-16 | 00A7 |
| UTF-32 | 000000A7 |
1\documentclass{article}2\usepackage{pifont}3\S4\end{document}Puedes escribir el símbolo section sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Section Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |