Mathematical Script Small F

๐’ป

Shortcodes

Copy useful codes for mathematical script small f symbol ๐’ป to use in websites, apps, blogs, and docs.

Unicode
U+1D4BB
HTML Code
𝒻
HEX Code
𝒻
CSS Code
\1D4BB
JS/JSON
\u1D4BB
Unix/C/PHP/JAVA
0x1D4BB
URL-encode
%F0%9D%92%BB

Customize Mathematical Script Small F

Customize ๐’ป, download it as SVG or PNG, or copy the generated HTML snippet.

๐’ป
  

How to use Mathematical Script Small F Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐’ป</span>
HTML Code:
<span>&#119995;</span>
HEX Code:
<span>&#x1D4BB;</span>

Add with CSS

.mathematical-script-small-f::before {
  content: '\\1D4BB';
}

Set it in JavaScript

document.querySelector('.mathematical-script-small-f').textContent = '๐’ป';
copied