| Symbol Name | Yen Sign |
| Unicode Version | 1.1 |
| Unicode | U+00A5 |
| Unicode block | |
| General category | Currency Symbol (Sc) |
| CSS Code | \00A5 |
| Hex Code | 0x00A5 |
| HTML Code | ¥ |
| LaTeX | \textyen |
| Symbol | ¥ |
| URL encode (UTF-8 percent) | %C2%A5 |
| Spoken / screen reader name | Yen Sign |
| UTF-8 | C2 A5 |
| UTF-16 | 00A5 |
| UTF-32 | 000000A5 |
1\documentclass{article}2\usepackage{pifont}3\textyen4\end{document}You can type the yen sign symbol on most modern devices with the help of following methods:
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>Yen Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |