Skier

Shortcodes

Copy and paste codes for Skier symbol ⛷ to use in your websites, apps, blogs, and more.

Unicode
U+26F7
HTML Code
⛷
HEX Code
⛷
CSS Code
\26F7
JS/JSON
\u26F7
Unix/C/PHP/JAVA
0x26F7
URL-encode
%E2%9B%B7
copied

Customize Skier Symbol

Customize ⛷ symbol as you like and download Skier 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 add Skier symbol in HTML, CSS, and JS?

Insert ⛷ Skier using HTML

1. Copy-paste Skier directly:
<span>⛷</span>
2. HTML Decimal Code:
<span>&#9975;</span>
3. Hexadecimal Code:
<span>&#x26F7;</span>
Preview:

Add Skier symbol with CSS

.skier::before {
    content: '\\26F7';
}
Preview: Skier

Skier JavaScript Code

1. Direct Symbol:
document.querySelector('.skier').textContent = '⛷';
2. Unicode Escape for ⛷:
document.querySelector('.skier').textContent = '\u26F7';
Preview: