Unicode Character Lookup
Analyze text to get Unicode details, or browse common characters. Copy code points, HTML entities, and escape sequences.
Common Characters
Arrows
Math
Currency
Punctuation
Symbols
Greek
Box Drawing
Emoji
Unicode - Technical Details
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.
Command-line Alternative
# Get Unicode code point in Python
python3 -c "print(hex(ord('★')))"
# Print character from code point
python3 -c "print(chr(0x2605))"