| Nome del simbolo | Double Wavy Overline |
| Versione Unicode | 1.1 |
| Unicode | U+FE4C |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \FE4C |
| Codice esadecimale | 0xFE4C |
| Codice HTML | ﹌ |
| LaTeX | \text{DOUBLEWAVYOVERLINE} |
| Simbolo | ﹌ |
| Codifica URL (percentuale UTF-8) | %EF%B9%8C |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo double wavy overline sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Double Wavy Overline nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |