| Nome del simbolo | Ethereum Symbol |
| Versione Unicode | 1.1 |
| Unicode | U+039E |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \039E |
| Codice esadecimale | 0x039E |
| Codice HTML | Ξ |
| LaTeX | \Xi |
| Simbolo | Ξ |
| Codifica URL (percentuale UTF-8) | %CE%9E |
| Nome parlato / screen reader | Ethereum Symbol |
| UTF-8 | CE 9E |
| UTF-16 | 039E |
| UTF-32 | 0000039E |
1\documentclass{article}2\usepackage{pifont}3\Xi4\end{document}Puoi digitare il simbolo ethereum sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 926 on the numeric keypad with Num Lock, or insert via Character Map (search "Xi").
Edit → Emoji & Symbols, search "Xi", or enable Greek keyboard layout.
Ctrl + Shift + U, type 039e, then Enter (layout-dependent).
Add the Greek keyboard in Settings, switch layouts, and tap Ξ on the uppercase row.
Install a Greek keyboard via Settings, switch layouts, and select Ξ from the uppercase row.
1span.eth::before { content: "\039E"; }1<span>Ξ</span>La rappresentazione del simbolo Ethereum nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u039E' or String.fromCodePoint(0x039E) |
| Python | '\N{GREEK CAPITAL LETTER XI}' or chr(926) |
| Rust | '\u{039E}' |
| C / C++ | UTF-8 source or wchar_t with U+039E |
| Go | string(rune(0x039E)) |
| Ruby | "\u039E" |