| Nombre del símbolo | Small Tilde |
| Versión Unicode | 1.1 |
| Unicode | U+02DC |
| Bloque Unicode | |
| Categoría general | Modifier Symbol (Sk) |
| Código CSS | \02DC |
| Código hexadecimal | 0x02DC |
| Código HTML | ˜ |
| LaTeX | \text{SMALLTILDE} |
| Símbolo | ˜ |
| Codificación URL (porcentaje UTF-8) | %CB%9C |
| Nombre oral / lector de pantalla | Small Tilde |
| UTF-8 | CB 9C |
| UTF-16 | 02DC |
| UTF-32 | 000002DC |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLTILDE}4\end{document}Puedes escribir el símbolo small tilde en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 732 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small tilde", or use Unicode Hex Input with 02DC.
Ctrl + Shift + U, type 02dc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.small-tilde::before { content: "\02DC"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˜</span>La representación del símbolo Small Tilde en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u02DC' or String.fromCodePoint(732) |
| Python | '\N{SMALL TILDE}' or chr(732) |
| Rust | '\u{02DC}' |
| C / C++ | UTF-8 source or wchar_t with U+02DC |
| Go | string(rune(0x02DC)) |
| Ruby | "\u{02DC}" |