| Symbol Name | Wavy Line |
| Unicode Version | 1.1 |
| Unicode | U+2307 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2307 |
| Hex Code | 0x2307 |
| HTML Code | ⌇ |
| LaTeX | \text{WAVYLINE} |
| Symbol | ⌇ |
| URL encode (UTF-8 percent) | %E2%8C%87 |
| Spoken / screen reader name | 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}You can type the wavy line symbol on most modern devices with the help of following methods:
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>Wavy Line symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |