Yen Sign

¥

Shortcodes

Copy and paste codes for Yen Sign symbol ¥ to use in your websites, apps, blogs, and more.

Unicode
U+00A5
Alt Code
165
HTML Code
¥
HTML Entity
¥
HEX Code
¥
CSS Code
\0A5
JS/JSON
\u00A5
Unix/C/PHP/JAVA
0xA5
URL-encode
%C2%A5
copied

Customize Yen Sign Symbol

Customize ¥ symbol as you like and download Yen Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
¥

                        
                    

How to type Yen Sign symbol ¥ ?

Using Yen Sign Alt Code:

You can type the Yen Sign symbol ¥ using your keyboard by using the Alt Code for Yen Sign. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 165 using the Numpad.
  3. Release the Alt key.

This will make the ¥ appear on your screen.

How to add Yen Sign symbol in HTML, CSS, and JS?

Insert ¥ Yen Sign using HTML

1. Copy-paste Yen Sign directly:
<span>¥</span>
2. HTML Decimal Code:
<span>&#165;</span>
3. HTML Entity:
<span>&yen;</span>
4. Hexadecimal Code:
<span>&#x00A5;</span>
Preview: ¥

Add Yen Sign symbol with CSS

.yen-sign::before {
    content: '\\0A5';
}
Preview: Yen Sign

Yen Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.yen-sign').textContent = '¥';
2. Unicode Escape for ¥:
document.querySelector('.yen-sign').textContent = '\u00A5';
Preview: ¥