Circled Latin Capital Letter F

Shortcodes

Copy useful codes for circled latin capital letter f symbol Ⓕ to use in websites, apps, blogs, and docs.

Unicode
U+24BB
HTML Code
Ⓕ
HEX Code
Ⓕ
CSS Code
\24BB
JS/JSON
\u24BB
Unix/C/PHP/JAVA
0x24BB
URL-encode
%E2%92%BB

Customize Circled Latin Capital Letter F

Customize Ⓕ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Circled Latin Capital Letter F Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ⓕ</span>
HTML Code:
<span>&#9403;</span>
HEX Code:
<span>&#x24BB;</span>

Add with CSS

.circled-latin-capital-letter-f::before {
  content: '\\24BB';
}

Set it in JavaScript

document.querySelector('.circled-latin-capital-letter-f').textContent = 'Ⓕ';
copied