| Nome del simbolo | Wiggly Vertical Line |
| Versione Unicode | 7.0 |
| Unicode | U+2E3E |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2E3E |
| Codice esadecimale | 0x2E3E |
| Codice HTML | ⸾ |
| LaTeX | \text{WIGGLYVERTICALLINE} |
| Simbolo | ⸾ |
| Codifica URL (percentuale UTF-8) | %E2%B8%BE |
| Nome parlato / screen reader | Wiggly Vertical Line |
| UTF-8 | E2 B8 BE |
| UTF-16 | 2E3E |
| UTF-32 | 00002E3E |
1\documentclass{article}2\usepackage{pifont}3\text{WIGGLYVERTICALLINE}4\end{document}Puoi digitare il simbolo wiggly vertical line sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 11838 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "wiggly vertical line", or use Unicode Hex Input with 2E3E.
Ctrl + Shift + U, type 2e3e, 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.wiggly-vertical-line::before { content: "\2E3E"; }1<span>⸾</span>La rappresentazione del simbolo Wiggly Vertical Line nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2E3E' or String.fromCodePoint(11838) |
| Python | '\N{WIGGLY VERTICAL LINE}' or chr(11838) |
| Rust | '\u{2E3E}' |
| C / C++ | UTF-8 source or wchar_t with U+2E3E |
| Go | string(rune(0x2E3E)) |
| Ruby | "\u{2E3E}" |