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