| Symbol Name | Vertical Tilde |
| Unicode Version | 5.1 |
| Unicode | U+2E2F |
| Unicode block | |
| General category | Lm (Lm) |
| CSS Code | \2E2F |
| Hex Code | 0x2E2F |
| HTML Code | ⸯ |
| LaTeX | \text{VERTICALTILDE} |
| Symbol | ⸯ |
| URL encode (UTF-8 percent) | %E2%B8%AF |
| Spoken / screen reader name | Vertical Tilde |
| UTF-8 | E2 B8 AF |
| UTF-16 | 2E2F |
| UTF-32 | 00002E2F |
1\documentclass{article}2\usepackage{pifont}3\text{VERTICALTILDE}4\end{document}You can type the vertical tilde symbol on most modern devices with the help of following methods:
Alt + 11823 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical tilde", or use Unicode Hex Input with 2E2F.
Ctrl + Shift + U, type 2e2f, 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 punctuation support.
1span.vertical-tilde::before { content: "\2E2F"; }1<span>ⸯ</span>Vertical Tilde symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2E2F' or String.fromCodePoint(11823) |
| Python | '\N{VERTICAL TILDE}' or chr(11823) |
| Rust | '\u{2E2F}' |
| C / C++ | UTF-8 source or wchar_t with U+2E2F |
| Go | string(rune(0x2E2F)) |
| Ruby | "\u{2E2F}" |