Mathematical Bold Small T

๐ญ

Shortcodes

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

Unicode
U+1D42D
HTML Code
𝐭
HEX Code
𝐭
CSS Code
\1D42D
JS/JSON
\u1D42D
Unix/C/PHP/JAVA
0x1D42D
URL-encode
%F0%9D%90%AD

Customize Mathematical Bold Small T

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

๐ญ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ญ</span>
HTML Code:
<span>&#119853;</span>
HEX Code:
<span>&#x1D42D;</span>

Add with CSS

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

Set it in JavaScript

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