| Nombre del símbolo | Vertical Line |
| Versión Unicode | 1.1 |
| Unicode | U+007C |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \007C |
| Código hexadecimal | 0x007C |
| Código HTML | | |
| LaTeX | | |
| Símbolo | | |
| Codificación URL (porcentaje UTF-8) | %7C |
| Nombre oral / lector de pantalla | Vertical Line |
| UTF-8 | 7C |
| UTF-16 | 007C |
| UTF-32 | 0000007C |
1\documentclass{article}2\usepackage{pifont}3|4\end{document}Puedes escribir el símbolo vertical line en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Vertical Line en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |