Mathematical Bold Script Small T

๐“ฝ

Shortcodes

Copy useful codes for mathematical bold script small t symbol ๐“ฝ to use in websites, apps, blogs, and docs.

Unicode
U+1D4FD
HTML Code
𝓽
HEX Code
𝓽
CSS Code
\1D4FD
JS/JSON
\u1D4FD
Unix/C/PHP/JAVA
0x1D4FD
URL-encode
%F0%9D%93%BD

Customize Mathematical Bold Script Small T

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

๐“ฝ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ฝ</span>
HTML Code:
<span>&#120061;</span>
HEX Code:
<span>&#x1D4FD;</span>

Add with CSS

.mathematical-bold-script-small-t::before {
  content: '\\1D4FD';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-t').textContent = '๐“ฝ';
copied