Ricerca Unicode
Cerca caratteri Unicode.
Common Characters
Arrows
Math
Currency
Punctuation
Symbols
Greek
Box Drawing
Emoji
Unicode - Dettagli tecnici
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.
Alternativa da riga di comando
# Get Unicode code point in Python
python3 -c "print(hex(ord('★')))"
# Print character from code point
python3 -c "print(chr(0x2605))"