| Symboolnaam | Yen Sign |
| Unicode-versie | 1.1 |
| Unicode | U+00A5 |
| Unicode-blok | |
| Algemene categorie | Currency Symbol (Sc) |
| CSS-code | \00A5 |
| Hexadecimale code | 0x00A5 |
| HTML-code | ¥ |
| LaTeX | \textyen |
| Symbool | ¥ |
| URL-codering (UTF-8 procent) | %C2%A5 |
| Uitgesproken naam / schermlezer | Yen Sign |
| UTF-8 | C2 A5 |
| UTF-16 | 00A5 |
| UTF-32 | 000000A5 |
1\documentclass{article}2\usepackage{pifont}3\textyen4\end{document}Je kunt het yen sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Yen Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |