Mathematical Bold Small K

๐ค

Shortcodes

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

Unicode
U+1D424
HTML Code
𝐤
HEX Code
𝐤
CSS Code
\1D424
JS/JSON
\u1D424
Unix/C/PHP/JAVA
0x1D424
URL-encode
%F0%9D%90%A4

Customize Mathematical Bold Small K

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

๐ค
  

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

Insert in HTML

1. Direct symbol:
<span>๐ค</span>
HTML Code:
<span>&#119844;</span>
HEX Code:
<span>&#x1D424;</span>

Add with CSS

.mathematical-bold-small-k::before {
  content: '\\1D424';
}

Set it in JavaScript

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