Mathematical Bold Script Capital T

๐“ฃ

Shortcodes

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

Unicode
U+1D4E3
HTML Code
𝓣
HEX Code
𝓣
CSS Code
\1D4E3
JS/JSON
\u1D4E3
Unix/C/PHP/JAVA
0x1D4E3
URL-encode
%F0%9D%93%A3

Customize Mathematical Bold Script Capital T

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

๐“ฃ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ฃ</span>
HTML Code:
<span>&#120035;</span>
HEX Code:
<span>&#x1D4E3;</span>

Add with CSS

.mathematical-bold-script-capital-t::before {
  content: '\\1D4E3';
}

Set it in JavaScript

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