Fullwidth Latin Small Letter F

Shortcodes

Copy useful codes for fullwidth latin small letter f symbol f to use in websites, apps, blogs, and docs.

Unicode
U+FF46
HTML Code
f
HEX Code
f
CSS Code
\FF46
JS/JSON
\uFF46
Unix/C/PHP/JAVA
0xFF46
URL-encode
%EF%BD%86

Customize Fullwidth Latin Small Letter F

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

  

How to use Fullwidth Latin Small Letter F Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>f</span>
HTML Code:
<span>&#65350;</span>
HEX Code:
<span>&#xFF46;</span>

Add with CSS

.fullwidth-latin-small-letter-f::before {
  content: '\\FF46';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-small-letter-f').textContent = 'f';
copied