| 記号名 | Latin Small Letter Reversed E |
| Unicodeバージョン | 1.1 |
| Unicode | U+0258 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \0258 |
| 16進コード | 0x0258 |
| HTMLコード | ɘ |
| LaTeX | \text{LATINSMALLLETTERREVERSEDE} |
| 記号 | ɘ |
| URLエンコード(UTF-8パーセント) | %C9%98 |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter Reversed E |
| UTF-8 | C9 98 |
| UTF-16 | 0258 |
| UTF-32 | 00000258 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERREVERSEDE}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter reversed e記号を入力できます:
Alt + 600 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter reversed e", or use Unicode Hex Input with 0258.
Ctrl + Shift + U, type 0258, 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.reversed-e::before { content: "\0258"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ɘ</span>各プログラミング言語におけるLatin Small Letter Reversed E記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0258' or String.fromCodePoint(600) |
| Python | '\N{LATIN SMALL LETTER REVERSED E}' or chr(600) |
| Rust | '\u{0258}' |
| C / C++ | UTF-8 source or wchar_t with U+0258 |
| Go | string(rune(0x0258)) |
| Ruby | "\u{0258}" |