| Symboolnaam | Euro Sign |
| Unicode-versie | 2.1 |
| Unicode | U+20AC |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \20AC |
| Hexadecimale code | 0x20AC |
| HTML-code | € |
| LaTeX | \euro |
| Symbool | € |
| URL-codering (UTF-8 procent) | %E2%82%AC |
| Uitgesproken naam / schermlezer | Euro Sign |
| UTF-8 | E2 82 AC |
| UTF-16 | 20AC |
| UTF-32 | 000020AC |
1\documentclass{article}2\usepackage{pifont}3\euro4\end{document}Je kunt het euro sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Euro Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |