| Symbol Name | Vertical Line Extension |
| Unicode Version | 4.0 |
| Unicode | U+23D0 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \23D0 |
| Hex Code | 0x23D0 |
| HTML Code | ⏐ |
| LaTeX | \text{VERTICALLINEEXTENSION} |
| Symbol | ⏐ |
| URL encode (UTF-8 percent) | %E2%8F%90 |
| Spoken / screen reader name | 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}You can type the vertical line extension symbol on most modern devices with the help of following methods:
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>Vertical Line Extension symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |