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