HTML Entity for Lowercase G Script Small (ℊ)

What You'll Learn
How to display the script small g (ℊ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Officially SCRIPT SMALL G, this letterlike symbol represents the script (handwritten-style) form of the letter g in mathematical notation and typography. It is U+210A in the Letterlike Symbols block.
Render it with ℊ, ℊ, ℊ, or CSS escape \210A. The named entity ℊ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase G Script Small Entity
U+210ALetterlike Symbols
ℊHexadecimal reference
ℊDecimal reference
ℊMost readable option
Name Value
──────────── ──────────
Unicode U+210A
Hex code ℊ
HTML code ℊ
Named entity ℊ
CSS code \210A
Meaning Script small g (letterlike symbol)
Related U+0067 = plain g (Basic Latin)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the script small g (ℊ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\210A";
}
</style>
</head>
<body>
<p>Symbol (hex): ℊ</p>
<p>Symbol (decimal): ℊ</p>
<p>Symbol (named): ℊ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The script small g (ℊ) and the named entity ℊ are supported in all modern browsers:
👀 Live Preview
See the script small g (ℊ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℊ uses the Unicode hexadecimal value 210A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℊ uses the decimal Unicode value 8458 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ℊ is the standard named entity for ℊ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\210A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ℊ. Unicode U+210A sits in Letterlike Symbols. Do not confuse ℊ with plain g (U+0067) or font stylistic alternates. The named entity ℊ is often the most readable choice.
Use Cases
The script small g (ℊ) is commonly used in:
Script-style symbols in equations, formulas, and scientific notation.
Letterlike symbols in design, logos, and decorative text.
Physics, chemistry, and academic papers using letterlike symbols.
Textbooks and tutorials explaining mathematical notation.
Scholarly content with correct letterlike symbol rendering.
Proper encoding for assistive technologies handling math symbols.
Consistent letterlike symbol rendering across media.
💡 Best Practices
Do
- Use
ℊin HTML when possible for readability - Serve pages as UTF-8; you can also type ℊ directly in UTF-8 source
- Use the same method (named or numeric) consistently within a document
- Use fonts that support Letterlike Symbols and math characters
- Distinguish ℊ (script small g) from plain
g(U+0067)
Don’t
- Substitute plain
gwhen the letterlike symbol ℊ is required - Assume a font’s script stylistic set equals Unicode ℊ
- Put CSS escape
\210Ain HTML text nodes - Assume all fonts render Letterlike Symbols identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ℊ; named entity is most readable
ℊ ℊ ℊFor CSS stylesheets, use the escape in the content property
\210AUnicode U+210A — SCRIPT SMALL G
Letterlike symbol for math and typography (Letterlike Symbols block)
Previous: Lowercase G Hook (ɠ) Next: Lowercase G Spirit
❓ Frequently Asked Questions
ℊ (named), ℊ (hex), ℊ (decimal), or \210A in CSS content. All four methods render ℊ correctly.U+210A (SCRIPT SMALL G). Letterlike Symbols block. Hex 210A, decimal 8458. Used in mathematical notation and typography.ℊ. You can also use ℊ, ℊ, or \210A in CSS content.U+210A, ℊ) is a letterlike symbol in the Letterlike Symbols block for script-style g in math and typography. The regular Latin small letter g is U+0067 (Basic Latin). They are different Unicode characters with different uses.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
