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