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