Mathematical Bold Capital F

๐…

Shortcodes

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

Unicode
U+1D405
HTML Code
𝐅
HEX Code
𝐅
CSS Code
\1D405
JS/JSON
\u1D405
Unix/C/PHP/JAVA
0x1D405
URL-encode
%F0%9D%90%85

Customize Mathematical Bold Capital F

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

๐…
  

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

Insert in HTML

1. Direct symbol:
<span>๐…</span>
HTML Code:
<span>&#119813;</span>
HEX Code:
<span>&#x1D405;</span>

Add with CSS

.mathematical-bold-capital-f::before {
  content: '\\1D405';
}

Set it in JavaScript

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