Turned Small F

Shortcodes

Copy and paste codes for Turned Small F symbol ⅎ to use in your websites, apps, blogs, and more.

Unicode
U+214E
HTML Code
ⅎ
HEX Code
ⅎ
CSS Code
\214E
JS/JSON
\u214E
Unix/C/PHP/JAVA
0x214E
URL-encode
%E2%85%8E
copied

Customize Turned Small F Symbol

Customize ⅎ symbol as you like and download Turned Small F 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 Turned Small F symbol in HTML, CSS, and JS?

Insert ⅎ Turned Small F using HTML

1. Copy-paste Turned Small F directly:
<span>ⅎ</span>
2. HTML Decimal Code:
<span>&#8526;</span>
3. Hexadecimal Code:
<span>&#x214E;</span>
Preview:

Add Turned Small F symbol with CSS

.turned-small-f::before {
    content: '\\214E';
}
Preview: Turned Small F

Turned Small F JavaScript Code

1. Direct Symbol:
document.querySelector('.turned-small-f').textContent = 'ⅎ';
2. Unicode Escape for ⅎ:
document.querySelector('.turned-small-f').textContent = '\u214E';
Preview: