Skip to main content
DevTools24

باحث أحرف Unicode

تحليل النص للحصول على تفاصيل Unicode، أو تصفح الأحرف الشائعة. نسخ نقاط الكود وكيانات HTML وتسلسلات التهريب.

Common Characters

Arrows

Math

Currency

Punctuation

Symbols

Greek

Box Drawing

Emoji

Unicode - التفاصيل التقنية

Unicode is a universal character encoding standard that assigns a unique code point to every character. It supports over 140,000 characters from 150+ scripts. Code points are written as U+XXXX where XXXX is a hexadecimal number.

بديل سطر الأوامر

# Get Unicode code point in Python
python3 -c "print(hex(ord('★')))"

# Print character from code point
python3 -c "print(chr(0x2605))"

المرجع

عرض المواصفات الرسمية