| Nom du symbole | Greek Capital Letter Epsilon |
| Version Unicode | 1.1 |
| Unicode | U+0395 |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \0395 |
| Code hexadécimal | 0x0395 |
| Code HTML | Ε |
| LaTeX | E |
| Symbole | Ε |
| Encodage URL (pourcent UTF-8) | %CE%95 |
| Nom oral / lecteur d’écran | Greek Capital Letter Epsilon |
| UTF-8 | CE 95 |
| UTF-16 | 0395 |
| UTF-32 | 00000395 |
1\documentclass{article}2\usepackage{pifont}3E4\end{document}Vous pouvez saisir le symbole greek capital letter epsilon sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 917 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter epsilon", or use Unicode Hex Input with 0395.
Ctrl + Shift + U, type 0395, 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.capital-epsilon::before { content: "\0395"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ε</span>La représentation du symbole Greek Capital Letter Epsilon dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u0395' or String.fromCodePoint(917) |
| Python | '\N{GREEK CAPITAL LETTER EPSILON}' or chr(917) |
| Rust | '\u{0395}' |
| C / C++ | UTF-8 source or wchar_t with U+0395 |
| Go | string(rune(0x0395)) |
| Ruby | "\u{0395}" |