| Nombre del símbolo | Euro Sign |
| Versión Unicode | 2.1 |
| Unicode | U+20AC |
| Bloque Unicode | |
| Categoría general | Currency Symbol (Sc) |
| Código CSS | \20AC |
| Código hexadecimal | 0x20AC |
| Código HTML | € |
| LaTeX | \euro |
| Símbolo | € |
| Codificación URL (porcentaje UTF-8) | %E2%82%AC |
| Nombre oral / lector de pantalla | Euro Sign |
| UTF-8 | E2 82 AC |
| UTF-16 | 20AC |
| UTF-32 | 000020AC |
1\documentclass{article}2\usepackage{pifont}3\euro4\end{document}Puedes escribir el símbolo euro sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Euro Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |