Currency
¥

Yen / Yuan Sign (¥)

Currency symbol for the Japanese Yen (JPY) and Chinese Yuan (CNY).

One-Click Copyable Code Formats

HTML Named Entity
¥
HTML Decimal Code
¥
HTML Hex Code
¥
CSS content (\XXXX)
\00A5
JavaScript Unicode (\uXXXX)
\u00A5
URL Percent Encoded
%C2%A5

Real-World Implementation Snippets

HTML5 Document
<p>Example: &yen;</p>
CSS ::before / ::after
.badge::before { content: '\00A5 '; }
React JSX / TypeScript
<span>{"\u00A5"}</span>
Frequently Asked Questions

Yen / Yuan Sign (¥) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&yen;". If using numeric codes, you can use the decimal code "&#165;" or hex code "&#xA5;".