HTML Entity for Gimel Symbol (ℷ)

What You'll Learn
How to display the Gimel letterlike symbol (ℷ) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2137 (GIMEL SYMBOL) in the Letterlike Symbols block (U+2100–U+214F).
Render it with ℷ, ℷ, ℷ, or CSS escape \2137. Do not confuse ℷ with the Hebrew letter Gimel (ג, U+05D2), which is a different character used in actual Hebrew text.
⚡ Quick Reference — Gimel Symbol
U+2137Letterlike Symbols
ℷHexadecimal reference
ℷDecimal reference
ℷMost readable option
Name Value
──────────── ──────────
Unicode U+2137
Hex code ℷ
HTML code ℷ
Named entity ℷ
CSS code \2137
Meaning Gimel letterlike symbol
Not to confuse U+05D2 = Hebrew letter Gimel (ג)Complete HTML Example
This example demonstrates the Gimel symbol (ℷ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2137";
}
</style>
</head>
<body>
<p>Gimel Symbol using Hexadecimal: ℷ</p>
<p>Gimel Symbol using Decimal: ℷ</p>
<p>Gimel Symbol using Named Entity: ℷ</p>
<p id="point">Gimel Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Gimel symbol (ℷ) is supported in modern browsers when the font includes Letterlike Symbols (U+2100–U+214F):
👀 Live Preview
See the Gimel letterlike symbol (ℷ) alongside related characters:
🧠 How It Works
Hexadecimal Code
ℷ uses the Unicode hexadecimal value 2137 to display the Gimel symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℷ uses the decimal Unicode value 8503 to display the same character.
Named Entity
ℷ is the semantic named entity for ℷ—readable in source HTML and part of the HTML5 character set.
CSS Entity
\2137 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+2137 is in Letterlike Symbols (U+2100–U+214F). Next: Grapheme Joiner.
Use Cases
The Gimel symbol (ℷ) is commonly used in:
Religious texts, educational material, and cultural references using the letterlike Gimel symbol.
Mathematical notation and set theory where ℷ appears as a letterlike symbol.
Tutorials, symbol reference pages, and Unicode or HTML entity documentation.
Design projects and layouts that require letterlike or mathematical symbols.
Multilingual websites incorporating Judaic or Hebrew-related symbols consistently.
HTML entity lists, character maps, and special-character reference pages.
💡 Best Practices
Do
- Use
ℷfor readable HTML source markup - Pick one style (hex / decimal / named) per project
- Use fonts that cover Letterlike Symbols (U+2137)
- Add context (e.g. “Gimel symbol”) for accessibility
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ℷ (letterlike) with ג (Hebrew letter Gimel)
- Use
ℷwhen you need actual Hebrew text ג - Put CSS escape
\2137in HTML text nodes - Mix entity styles randomly in one file
- Assume every browser font renders ℷ identically
Key Takeaways
Three HTML references plus CSS all render ℷ
ℷ ℷ ℷFor CSS stylesheets, use the escape in the content property
\2137Unicode U+2137 — GIMEL SYMBOL (letterlike)
Hebrew Gimel is U+05D2 (ג), not ℷ
Next: Grapheme Joiner
❓ Frequently Asked Questions
ℷ (hex), ℷ (decimal), ℷ (named), or \2137 in CSS content. All produce ℷ.U+2137 (GIMEL SYMBOL). Letterlike Symbols block (U+2100–U+214F). Hex 2137, decimal 8503. Named entity: ℷ. Hebrew letter Gimel is U+05D2 (ג).ℷ (U+2137) renders the letterlike symbol ℷ. The Hebrew letter Gimel is ג (U+05D2) and has no standard HTML named entity—use UTF-8 or ג / ג for Hebrew text.ℷ, ℷ, or ℷ) go in markup. The CSS escape \2137 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — letterlike symbols, currency signs, and more.
8 people found this page helpful
