| 記号名 | Small Em Dash |
| Unicodeバージョン | 1.1 |
| Unicode | U+FE58 |
| Unicodeブロック | |
| 一般カテゴリ | Dash Punctuation (Pd) |
| CSSコード | \FE58 |
| 16進コード | 0xFE58 |
| HTMLコード | ﹘ |
| LaTeX | \text{SMALLEMDASH} |
| 記号 | ﹘ |
| URLエンコード(UTF-8パーセント) | %EF%B9%98 |
| 読み上げ名 / スクリーンリーダー | Small Em Dash |
| UTF-8 | EF B9 98 |
| UTF-16 | FE58 |
| UTF-32 | 0000FE58 |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLEMDASH}4\end{document}以下の方法でほとんどの最新デバイスでsmall em dash記号を入力できます:
Alt + 65112 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small em dash", or use Unicode Hex Input with FE58.
Ctrl + Shift + U, type fe58, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.small-em-dash::before { content: "\FE58"; }1<span>﹘</span>各プログラミング言語におけるSmall Em Dash記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uFE58' or String.fromCodePoint(65112) |
| Python | '\N{SMALL EM DASH}' or chr(65112) |
| Rust | '\u{FE58}' |
| C / C++ | UTF-8 source or wchar_t with U+FE58 |
| Go | string(rune(0xFE58)) |
| Ruby | "\u{FE58}" |