| Nombre del símbolo | Wavy Line |
| Versión Unicode | 1.1 |
| Unicode | U+2307 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2307 |
| Código hexadecimal | 0x2307 |
| Código HTML | ⌇ |
| LaTeX | \text{WAVYLINE} |
| Símbolo | ⌇ |
| Codificación URL (porcentaje UTF-8) | %E2%8C%87 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo wavy line en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Wavy Line en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |