| Nom du symbole | Ethereum Symbol |
| Version Unicode | 1.1 |
| Unicode | U+039E |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \039E |
| Code hexadécimal | 0x039E |
| Code HTML | Ξ |
| LaTeX | \Xi |
| Symbole | Ξ |
| Encodage URL (pourcent UTF-8) | %CE%9E |
| Nom oral / lecteur d’écran | Ethereum Symbol |
| UTF-8 | CE 9E |
| UTF-16 | 039E |
| UTF-32 | 0000039E |
1\documentclass{article}2\usepackage{pifont}3\Xi4\end{document}Vous pouvez saisir le symbole ethereum sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Ethereum dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |