| Nom du symbole | Small Tilde |
| Version Unicode | 1.1 |
| Unicode | U+02DC |
| Bloc Unicode | |
| Catégorie générale | Modifier Symbol (Sk) |
| Code CSS | \02DC |
| Code hexadécimal | 0x02DC |
| Code HTML | ˜ |
| LaTeX | \text{SMALLTILDE} |
| Symbole | ˜ |
| Encodage URL (pourcent UTF-8) | %CB%9C |
| Nom oral / lecteur d’écran | Small Tilde |
| UTF-8 | CB 9C |
| UTF-16 | 02DC |
| UTF-32 | 000002DC |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLTILDE}4\end{document}Vous pouvez saisir le symbole small tilde sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Small Tilde dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |