| Symbol Name | Small Tilde |
| Unicode Version | 1.1 |
| Unicode | U+02DC |
| Unicode block | |
| General category | Modifier Symbol (Sk) |
| CSS Code | \02DC |
| Hex Code | 0x02DC |
| HTML Code | ˜ |
| LaTeX | \text{SMALLTILDE} |
| Symbol | ˜ |
| URL encode (UTF-8 percent) | %CB%9C |
| Spoken / screen reader name | Small Tilde |
| UTF-8 | CB 9C |
| UTF-16 | 02DC |
| UTF-32 | 000002DC |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLTILDE}4\end{document}You can type the small tilde symbol on most modern devices with the help of following methods:
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>Small Tilde symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |