| 記号名 | Double Acute Accent |
| Unicodeバージョン | 1.1 |
| Unicode | U+02DD |
| Unicodeブロック | |
| 一般カテゴリ | Modifier Symbol (Sk) |
| CSSコード | \02DD |
| 16進コード | 0x02DD |
| HTMLコード | ˝ |
| LaTeX | \text{DOUBLEACUTEACCENT} |
| 記号 | ˝ |
| URLエンコード(UTF-8パーセント) | %CB%9D |
| 読み上げ名 / スクリーンリーダー | Double Acute Accent |
| UTF-8 | CB 9D |
| UTF-16 | 02DD |
| UTF-32 | 000002DD |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEACUTEACCENT}4\end{document}以下の方法でほとんどの最新デバイスでdouble acute accent記号を入力できます:
Alt + 733 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double acute accent", or use Unicode Hex Input with 02DD.
Ctrl + Shift + U, type 02dd, 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.double-acute-accent::before { content: "\02DD"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>˝</span>各プログラミング言語におけるDouble Acute Accent記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u02DD' or String.fromCodePoint(733) |
| Python | '\N{DOUBLE ACUTE ACCENT}' or chr(733) |
| Rust | '\u{02DD}' |
| C / C++ | UTF-8 source or wchar_t with U+02DD |
| Go | string(rune(0x02DD)) |
| Ruby | "\u{02DD}" |