> 検査 | デコード | 分析 <
// Unicodeコードポイント、エンコーディング、文字の詳細を検査
[INSPECT]
文字分析
任意のテキストを文字ごとに分析。
[ENCODE]
UTF-8/UTF-16表示
各文字の正確なバイト表現を表示。
[FREE]
ブロック検出
Unicodeブロックを自動検出して表示。
// UNICODEについて
Unicodeの仕組み:
Unicodeはすべての文字に固有のコードポイントを割り当てる世界標準です。
例:
"A" → U+0041, Decimal 65, UTF-8: 41, UTF-16: 0041
一般的な用途:
- >エンコーディング問題のデバッグ
- >不可視文字の検査
- >UTF-8/UTF-16バイト列の検証
- >Unicodeコードポイントの検索
- >絵文字のエンコーディング分析
>> よくある質問
Q: What is Unicode?
A: Unicode is a universal character encoding standard that assigns a unique code point to every character from every writing system.
Q: UTF-8 vs UTF-16?
A: UTF-8 uses 1-4 bytes and is ASCII-compatible. UTF-16 uses 2 or 4 bytes and is used by JavaScript and Windows.
Q: What is BMP?
A: The Basic Multilingual Plane (U+0000 to U+FFFF) contains the most commonly used characters.
Q: How many characters?
A: Unicode supports 1,114,112 code points. Over 149,000 are currently assigned.
Q: Code point vs character?
A: A code point is the numeric value (e.g., U+0041). Some visible characters use multiple code points.