| Nombre del símbolo | Vertical Line Extension |
| Versión Unicode | 4.0 |
| Unicode | U+23D0 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \23D0 |
| Código hexadecimal | 0x23D0 |
| Código HTML | ⏐ |
| LaTeX | \text{VERTICALLINEEXTENSION} |
| Símbolo | ⏐ |
| Codificación URL (porcentaje UTF-8) | %E2%8F%90 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo vertical line extension en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Vertical Line Extension en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |