| Nom du symbole | Spanish Peseta |
| Version Unicode | 1.1 |
| Unicode | U+20A7 |
| Bloc Unicode | |
| Catégorie générale | Currency Symbol (Sc) |
| Code CSS | \20A7 |
| Code hexadécimal | 0x20A7 |
| Code HTML | ₧ |
| LaTeX | \textpeseta |
| Symbole | ₧ |
| Encodage URL (pourcent UTF-8) | %E2%82%A7 |
| Nom oral / lecteur d’écran | Spanish Peseta |
| UTF-8 | E2 82 A7 |
| UTF-16 | 20A7 |
| UTF-32 | 000020A7 |
1\documentclass{article}2\usepackage{pifont}3\textpeseta4\end{document}Vous pouvez saisir le symbole spanish peseta sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8359 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "peseta", or enable Unicode Hex Input.
Ctrl + Shift + U, type 20a7, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.peseta::before { content: "\20A7"; }1<span>₧</span>La représentation du symbole Spanish Peseta dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u20A7' or String.fromCodePoint(0x20A7) |
| Python | '\N{PESETA SIGN}' or chr(8359) |
| Rust | '\u{20A7}' |
| C / C++ | UTF-8 source or wchar_t with U+20A7 |
| Go | string(rune(0x20A7)) |
| Ruby | "\u20A7" |