| Nombre del símbolo | Wavy Low Line |
| Versión Unicode | 1.1 |
| Unicode | U+FE4F |
| Bloque Unicode | |
| Categoría general | Connector Punctuation (Pc) |
| Código CSS | \FE4F |
| Código hexadecimal | 0xFE4F |
| Código HTML | ﹏ |
| LaTeX | \text{WAVYLOWLINE} |
| Símbolo | ﹏ |
| Codificación URL (porcentaje UTF-8) | %EF%B9%8F |
| Nombre oral / lector de pantalla | Wavy Low Line |
| UTF-8 | EF B9 8F |
| UTF-16 | FE4F |
| UTF-32 | 0000FE4F |
1\documentclass{article}2\usepackage{pifont}3\text{WAVYLOWLINE}4\end{document}Puedes escribir el símbolo wavy low line en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 65103 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "wavy low line", or use Unicode Hex Input with FE4F.
Ctrl + Shift + U, type fe4f, 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-low-line::before { content: "\FE4F"; }1<span>﹏</span>La representación del símbolo Wavy Low Line en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uFE4F' or String.fromCodePoint(65103) |
| Python | '\N{WAVY LOW LINE}' or chr(65103) |
| Rust | '\u{FE4F}' |
| C / C++ | UTF-8 source or wchar_t with U+FE4F |
| Go | string(rune(0xFE4F)) |
| Ruby | "\u{FE4F}" |