| Nome del simbolo | Greek Small Letter Epsilon |
| Versione Unicode | 1.1 |
| Unicode | U+03B5 |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \03B5 |
| Codice esadecimale | 0x03B5 |
| Codice HTML | ε |
| LaTeX | \epsilon |
| Simbolo | ε |
| Codifica URL (percentuale UTF-8) | %CE%B5 |
| Nome parlato / screen reader | Greek Small Letter Epsilon |
| UTF-8 | CE B5 |
| UTF-16 | 03B5 |
| UTF-32 | 000003B5 |
1\documentclass{article}2\usepackage{pifont}3\epsilon4\end{document}Puoi digitare il simbolo greek small letter epsilon sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 949 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter epsilon", or use Unicode Hex Input with 03B5.
Ctrl + Shift + U, type 03b5, 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.epsilon::before { content: "\03B5"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ε</span>La rappresentazione del simbolo Greek Small Letter Epsilon nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u03B5' or String.fromCodePoint(949) |
| Python | '\N{GREEK SMALL LETTER EPSILON}' or chr(949) |
| Rust | '\u{03B5}' |
| C / C++ | UTF-8 source or wchar_t with U+03B5 |
| Go | string(rune(0x03B5)) |
| Ruby | "\u{03B5}" |