| 記号名 | Small Tilde |
| Unicodeバージョン | 1.1 |
| Unicode | U+02DC |
| Unicodeブロック | |
| 一般カテゴリ | Modifier Symbol (Sk) |
| CSSコード | \02DC |
| 16進コード | 0x02DC |
| HTMLコード | ˜ |
| LaTeX | \text{SMALLTILDE} |
| 記号 | ˜ |
| URLエンコード(UTF-8パーセント) | %CB%9C |
| 読み上げ名 / スクリーンリーダー | Small Tilde |
| UTF-8 | CB 9C |
| UTF-16 | 02DC |
| UTF-32 | 000002DC |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLTILDE}4\end{document}以下の方法でほとんどの最新デバイスでsmall tilde記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |