| Nome del simbolo | Vertical Line |
| Versione Unicode | 1.1 |
| Unicode | U+007C |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \007C |
| Codice esadecimale | 0x007C |
| Codice HTML | | |
| LaTeX | | |
| Simbolo | | |
| Codifica URL (percentuale UTF-8) | %7C |
| Nome parlato / screen reader | Vertical Line |
| UTF-8 | 7C |
| UTF-16 | 007C |
| UTF-32 | 0000007C |
1\documentclass{article}2\usepackage{pifont}3|4\end{document}Puoi digitare il simbolo vertical line sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 124 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical line", or use Unicode Hex Input with 007C.
Ctrl + Shift + U, type 007c, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.vertical-line::before { content: "\007C"; }1<span>|</span>La rappresentazione del simbolo Vertical Line nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u007C' or String.fromCodePoint(124) |
| Python | '\N{VERTICAL LINE}' or chr(124) |
| Rust | '\u{007C}' |
| C / C++ | UTF-8 source or wchar_t with U+007C |
| Go | string(rune(0x007C)) |
| Ruby | "\u{007C}" |