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