CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-4.0updated 1y agoView on Hugging Face
0likes12downloads
Dataset Card

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:

json
{
  "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?