Turned Sans-serif Capital Y

Shortcodes

Copy useful codes for turned sans-serif capital y symbol ⅄ to use in websites, apps, blogs, and docs.

Unicode
U+2144
HTML Code
⅄
HEX Code
⅄
CSS Code
\2144
JS/JSON
\u2144
Unix/C/PHP/JAVA
0x2144
URL-encode
%E2%85%84

Customize Turned Sans-serif Capital Y

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

  

How to use Turned Sans-serif Capital Y Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅄</span>
HTML Code:
<span>&#8516;</span>
HEX Code:
<span>&#x2144;</span>

Add with CSS

.turned-sans-serif-capital-y::before {
  content: '\\2144';
}

Set it in JavaScript

document.querySelector('.turned-sans-serif-capital-y').textContent = '⅄';
copied