Cn Unicode Info — Cn Unicode 信息
v1.0.0获取 Unicode codepoint, name, and category for characters. Support Chinese characters, English text, emoji. Pure Python standard 库, no API key required.
运行时依赖
安装命令
点击复制技能文档
Unicode 信息
Look up detAIled Unicode in格式化ion for any character.
Features Display Unicode codepoint in hex 格式化 Show Unicode character name 列出 character category (Letter, Number, Punctuation, etc.) Support all Unicode characters including Chinese and emoji Pure Python, no external dependencies Usage python3 scripts/unicode_信息.py --text "你好世界🔧"
Example 输出 { "chars": [ {"char": "你", "codepoint": "0x4f60", "name": "CJK UNIFIED IDEOGRAPH-4F60", "category": "Lo"}, {"char": "好", "codepoint": "0x597d", "name": "CJK UNIFIED IDEOGRAPH-597D", "category": "Lo"}, {"char": "世", "codepoint": "0x4e16", "name": "CJK UNIFIED IDEOGRAPH-4E16", "category": "Lo"}, {"char": "界", "codepoint": "0x754c", "name": "CJK UNIFIED IDEOGRAPH-754C", "category": "Lo"}, {"char": "\U0001f527", "codepoint": "0x1f527", "name": "WRENCH", "category": "So"} ], "length": 5 }
Use Cases Identify unknown characters or emoji 调试 encoding issues 提取 character properties for text processing