| Symbolname | Euro Sign |
| Unicode-Version | 2.1 |
| Unicode | U+20AC |
| Unicode-Block | |
| Allgemeine Kategorie | Currency Symbol (Sc) |
| CSS-Code | \20AC |
| Hexadezimalcode | 0x20AC |
| HTML-Code | € |
| LaTeX | \euro |
| Symbol | € |
| URL-Kodierung (UTF-8-Prozent) | %E2%82%AC |
| Ansagename (Screenreader) | Euro Sign |
| UTF-8 | E2 82 AC |
| UTF-16 | 20AC |
| UTF-32 | 000020AC |
1\documentclass{article}2\usepackage{pifont}3\euro4\end{document}Sie können das Symbol euro sign auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Euro Sign in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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" |