| Nome del simbolo | Euro Sign |
| Versione Unicode | 2.1 |
| Unicode | U+20AC |
| Blocco Unicode | |
| Categoria generale | Currency Symbol (Sc) |
| Codice CSS | \20AC |
| Codice esadecimale | 0x20AC |
| Codice HTML | € |
| LaTeX | \euro |
| Simbolo | € |
| Codifica URL (percentuale UTF-8) | %E2%82%AC |
| Nome parlato / screen reader | Euro Sign |
| UTF-8 | E2 82 AC |
| UTF-16 | 20AC |
| UTF-32 | 000020AC |
1\documentclass{article}2\usepackage{pifont}3\euro4\end{document}Puoi digitare il simbolo euro sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 0128 on the numeric keypad, or insert via Character Map.
Option + Shift + 2 on most layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 20ac, then Enter (layout-dependent).
Long-press the $ key on the default keyboard, or use the symbol picker.
Long-press the $ key on many keyboards, or paste from this page.
1span.euro::before { content: "\20AC"; }1<span>€</span>La rappresentazione del simbolo Euro Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u20AC' or String.fromCodePoint(0x20AC) |
| Python | '\N{EURO SIGN}' or chr(8364) |
| Rust | '\u{20AC}' |
| C / C++ | UTF-8 source or wchar_t with U+20AC |
| Go | string(rune(0x20AC)) |
| Ruby | "\u20AC" |