Mathematical Bold Script Small F

๐“ฏ

Shortcodes

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

Unicode
U+1D4EF
HTML Code
𝓯
HEX Code
𝓯
CSS Code
\1D4EF
JS/JSON
\u1D4EF
Unix/C/PHP/JAVA
0x1D4EF
URL-encode
%F0%9D%93%AF

Customize Mathematical Bold Script Small F

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

๐“ฏ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ฏ</span>
HTML Code:
<span>&#120047;</span>
HEX Code:
<span>&#x1D4EF;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-f').textContent = '๐“ฏ';
copied