| Nom du symbole | Yen Sign |
| Version Unicode | 1.1 |
| Unicode | U+00A5 |
| Bloc Unicode | |
| Catégorie générale | Currency Symbol (Sc) |
| Code CSS | \00A5 |
| Code hexadécimal | 0x00A5 |
| Code HTML | ¥ |
| LaTeX | \textyen |
| Symbole | ¥ |
| Encodage URL (pourcent UTF-8) | %C2%A5 |
| Nom oral / lecteur d’écran | Yen Sign |
| UTF-8 | C2 A5 |
| UTF-16 | 00A5 |
| UTF-32 | 000000A5 |
1\documentclass{article}2\usepackage{pifont}3\textyen4\end{document}Vous pouvez saisir le symbole yen sign sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 0165 on the numeric keypad, or insert via Character Map.
Option + Y on most layouts.
Ctrl + Shift + U, type 00a5, then Enter (layout-dependent).
Long-press the $ key, or use the symbol picker.
Long-press the $ key on many keyboards, or paste from this page.
1span.yen::before { content: "\00A5"; }1<span>¥</span>La représentation du symbole Yen Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u00A5' or String.fromCodePoint(0x00A5) |
| Python | '\N{YEN SIGN}' or chr(165) |
| Rust | '\u{00A5}' |
| C / C++ | UTF-8 source or wchar_t with U+00A5 |
| Go | string(rune(0x00A5)) |
| Ruby | "\u00A5" |