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))"

参考

查看官方规范