Variation Selector-16

Shortcodes

Copy useful codes for variation selector-16 symbol ️ to use in websites, apps, blogs, and docs.

Unicode
U+FE0F
HTML Code
️
HEX Code
️
CSS Code
\FE0F
JS/JSON
\uFE0F
Unix/C/PHP/JAVA
0xFE0F
URL-encode
%EF%B8%8F

Customize Variation Selector-16

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

  

How to use Variation Selector-16 Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>️</span>
HTML Code:
<span>&#65039;</span>
HEX Code:
<span>&#xFE0F;</span>

Add with CSS

.variation-selector-16::before {
  content: '\\FE0F';
}

Set it in JavaScript

document.querySelector('.variation-selector-16').textContent = '️';
copied