| Nom du symbole | Double Wavy Overline |
| Version Unicode | 1.1 |
| Unicode | U+FE4C |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \FE4C |
| Code hexadécimal | 0xFE4C |
| Code HTML | ﹌ |
| LaTeX | \text{DOUBLEWAVYOVERLINE} |
| Symbole | ﹌ |
| Encodage URL (pourcent UTF-8) | %EF%B9%8C |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole double wavy overline sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Double Wavy Overline dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |