Fullwidth Latin Small Letter K

Shortcodes

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

Unicode
U+FF4B
HTML Code
k
HEX Code
k
CSS Code
\FF4B
JS/JSON
\uFF4B
Unix/C/PHP/JAVA
0xFF4B
URL-encode
%EF%BD%8B

Customize Fullwidth Latin Small Letter K

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

  

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

Insert in HTML

1. Direct symbol:
<span>k</span>
HTML Code:
<span>&#65355;</span>
HEX Code:
<span>&#xFF4B;</span>

Add with CSS

.fullwidth-latin-small-letter-k::before {
  content: '\\FF4B';
}

Set it in JavaScript

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