| 記号名 | Greek Reversed Lunate Epsilon Symbol |
| Unicodeバージョン | 3.2 |
| Unicode | U+03F6 |
| Unicodeブロック | |
| 一般カテゴリ | Sm (Sm) |
| CSSコード | \03F6 |
| 16進コード | 0x03F6 |
| HTMLコード | ϶ |
| LaTeX | \text{GREEKREVERSEDLUNATEEPSILONSYMBOL} |
| 記号 | ϶ |
| URLエンコード(UTF-8パーセント) | %CF%B6 |
| 読み上げ名 / スクリーンリーダー | Greek Reversed Lunate Epsilon Symbol |
| UTF-8 | CF B6 |
| UTF-16 | 03F6 |
| UTF-32 | 000003F6 |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKREVERSEDLUNATEEPSILONSYMBOL}4\end{document}以下の方法でほとんどの最新デバイスでgreek reversed lunate epsilon記号を入力できます:
Alt + 1014 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek reversed lunate epsilon symbol", or use Unicode Hex Input with 03F6.
Ctrl + Shift + U, type 03f6, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.reversed-lunate-epsilon-symbol::before { content: "\03F6"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>϶</span>各プログラミング言語におけるGreek Reversed Lunate Epsilon記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u03F6' or String.fromCodePoint(1014) |
| Python | '\N{GREEK REVERSED LUNATE EPSILON SYMBOL}' or chr(1014) |
| Rust | '\u{03F6}' |
| C / C++ | UTF-8 source or wchar_t with U+03F6 |
| Go | string(rune(0x03F6)) |
| Ruby | "\u{03F6}" |