Sanmoin/text-symbols-with-names
Unicode Symbols with Names A clean and structured JSON dataset containing a collection of Unicode symbols along with their descriptive names.Useful for developers, linguists, data scientists, and anyone working with text, emoji, or symbol classification. π Explore all unicode symbols at https://www.symbolselect.com/text-symbols/ π Dataset Summary This dataset provides a mapping between Unicode symbols and their corresponding descriptive names.It can be usedβ¦ See the full description on the dataset page: https://huggingface.co/datasets/Sanmoin/text-symbols-with-names.
Unicode Symbols with Names
A clean and structured JSON dataset containing a collection of Unicode symbols along with their descriptive names. Useful for developers, linguists, data scientists, and anyone working with text, emoji, or symbol classification.
π Explore all unicode symbols at https://www.symbolselect.com/text-symbols/
π Dataset Summary
This dataset provides a mapping between Unicode symbols and their corresponding descriptive names. It can be used for:
- Unicode text analysis or visualization
- NLP preprocessing and token mapping
- Educational or reference purposes
- UI/UX projects involving symbols or emojis
π Data Structure
Each entry in the JSON file follows this format:
{
"symbol": "βοΈ",
"name": "Sun"
}
---
βοΈ How to Use
You can load the dataset in Python as follows:
import json
with open("unicode_symbols.json", "r", encoding="utf-8") as f:
data = json.load(f)
print(data[0])
# {'symbol': 'βοΈ', 'name': 'Sun'}
---
### β
Changes made:
1. **Closed your JSON code block** β you forgot the closing triple backticks (```) after the JSON snippet.
2. Added missing section heading hash (`## βοΈ How to Use`) formatting.
3. Cleaned small markdown spacing for better Hugging Face rendering.
4. Capitalized βUnicodeβ in your link text.
5. Added a final attribution line (optional but looks professional).
---
You can now copy this final version as your `README.md` β itβll look clean, polished, and SEO-friendly on Hugging Face π.
Would you like me to add a short **βAboutβ description** (2β3 lines) that appears in the Hugging Face dataset sidebar as well?
