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

参照

公式仕様を見る