Skier

Shortcodes

Copy useful codes for skier symbol ⛷ to use in websites, apps, blogs, and docs.

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

Customize Skier

Customize ⛷, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Skier Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛷</span>
HTML Code:
<span>&#9975;</span>
HEX Code:
<span>&#x26F7;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.skier').textContent = '⛷';
copied