Mathematical Fraktur Small G

๐”ค

Shortcodes

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

Unicode
U+1D524
HTML Code
𝔤
HEX Code
𝔤
CSS Code
\1D524
JS/JSON
\u1D524
Unix/C/PHP/JAVA
0x1D524
URL-encode
%F0%9D%94%A4

Customize Mathematical Fraktur Small G

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

๐”ค
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ค</span>
HTML Code:
<span>&#120100;</span>
HEX Code:
<span>&#x1D524;</span>

Add with CSS

.mathematical-fraktur-small-g::before {
  content: '\\1D524';
}

Set it in JavaScript

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