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