Function Symbol

Unicode Name: Latin Small Letter F With Hook

ƒ

Shortcodes

Copy and paste codes for Function Symbol ƒ to use in your websites, apps, blogs, and more.

Unicode
U+0192
HTML Code
ƒ
HTML Entity
ƒ
HEX Code
ƒ
CSS Code
\192
JS/JSON
\u0192
Unix/C/PHP/JAVA
0x0192
URL-encode
%C6%92
copied

Customize Function Symbol Symbol

Customize ƒ symbol as you like and download Function Symbol 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 Function Symbol in HTML, CSS, and JS?

Insert ƒ Function Symbol using HTML

1. Copy-paste Function Symbol directly:
<span>ƒ</span>
2. HTML Decimal Code:
<span>&#402;</span>
3. HTML Entity:
<span>&fnof;</span>
4. Hexadecimal Code:
<span>&#x0192;</span>
Preview: ƒ

Add Function Symbol with CSS

.function::before {
    content: '\\192';
}
Preview: Function Symbol

Function Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.function').textContent = 'ƒ';
2. Unicode Escape for ƒ:
document.querySelector('.function').textContent = '\u0192';
Preview: ƒ