Mathematical Fraktur Small T

๐”ฑ

Shortcodes

Copy useful codes for mathematical fraktur small t symbol ๐”ฑ to use in websites, apps, blogs, and docs.

Unicode
U+1D531
HTML Code
𝔱
HEX Code
𝔱
CSS Code
\1D531
JS/JSON
\u1D531
Unix/C/PHP/JAVA
0x1D531
URL-encode
%F0%9D%94%B1

Customize Mathematical Fraktur Small T

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

๐”ฑ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฑ</span>
HTML Code:
<span>&#120113;</span>
HEX Code:
<span>&#x1D531;</span>

Add with CSS

.mathematical-fraktur-small-t::before {
  content: '\\1D531';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-t').textContent = '๐”ฑ';
copied