Variation Selector-1

Shortcodes

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

Unicode
U+FE00
HTML Code
︀
HEX Code
︀
CSS Code
\FE00
JS/JSON
\uFE00
Unix/C/PHP/JAVA
0xFE00
URL-encode
%EF%B8%80

Customize Variation Selector-1

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

  

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

Insert in HTML

1. Direct symbol:
<span>︀</span>
HTML Code:
<span>&#65024;</span>
HEX Code:
<span>&#xFE00;</span>

Add with CSS

.variation-selector-1::before {
  content: '\\FE00';
}

Set it in JavaScript

document.querySelector('.variation-selector-1').textContent = '︀';
copied