Mathematical Bold Small F

๐Ÿ

Shortcodes

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

Unicode
U+1D41F
HTML Code
𝐟
HEX Code
𝐟
CSS Code
\1D41F
JS/JSON
\u1D41F
Unix/C/PHP/JAVA
0x1D41F
URL-encode
%F0%9D%90%9F

Customize Mathematical Bold Small F

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

๐Ÿ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ</span>
HTML Code:
<span>&#119839;</span>
HEX Code:
<span>&#x1D41F;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-bold-small-f').textContent = '๐Ÿ';
copied