Skip to main content
DevTools24

Unicode Nachschlagewerk

Text analysieren, um Unicode-Details zu erhalten, oder häufige Zeichen durchsuchen. Codepunkte, HTML-Entities und mehr kopieren.

Common Characters

Arrows

Math

Currency

Punctuation

Symbols

Greek

Box Drawing

Emoji

Unicode - Technische 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.

Kommandozeilen-Alternative

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

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

Referenz

Offizielle Spezifikation ansehen