| Nome del simbolo | Vertical Line Extension |
| Versione Unicode | 4.0 |
| Unicode | U+23D0 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \23D0 |
| Codice esadecimale | 0x23D0 |
| Codice HTML | ⏐ |
| LaTeX | \text{VERTICALLINEEXTENSION} |
| Simbolo | ⏐ |
| Codifica URL (percentuale UTF-8) | %E2%8F%90 |
| Nome parlato / screen reader | Vertical Line Extension |
| UTF-8 | E2 8F 90 |
| UTF-16 | 23D0 |
| UTF-32 | 000023D0 |
1\documentclass{article}2\usepackage{pifont}3\text{VERTICALLINEEXTENSION}4\end{document}Puoi digitare il simbolo vertical line extension sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9168 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical line extension", or use Unicode Hex Input with 23D0.
Ctrl + Shift + U, type 23d0, 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-extension::before { content: "\23D0"; }1<span>⏐</span>La rappresentazione del simbolo Vertical Line Extension nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u23D0' or String.fromCodePoint(9168) |
| Python | '\N{VERTICAL LINE EXTENSION}' or chr(9168) |
| Rust | '\u{23D0}' |
| C / C++ | UTF-8 source or wchar_t with U+23D0 |
| Go | string(rune(0x23D0)) |
| Ruby | "\u{23D0}" |