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