有 UnicodeCategory 枚举图吗?

发布于 2024-08-20 02:26:08 字数 194 浏览 0 评论 0原文

我正在寻找一个好的 UnicodeCategory 枚举< /a> 图表,为每个人展示一个示例。

I looking for a good UnicodeCategory Enumeration diagram that show an example to each one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-08-27 02:26:08

这将定义字符的 Unicode 类别。

代理对是单个抽象字符的编码字符表示形式,由两个代码单元的序列组成,其中该对的第一个单元是高代理,第二个是低代理。高代理项是 U+D800 到 U+DBFF 范围内的 Unicode 代码点,低代理项是 U+DC00 到 U+DFFF 范围内的 Unicode 代码点。

此枚举基于 Unicode 标准版本 3.1

此枚举用于支持 Char 方法,例如 IsUpper


http://unicode.codeplex.com 获取 Char 并返回字符类别。

这些类别在 Unicode 字符数据库(附件 #44)中提到,网址为 http://www.unicode.org/ucd 此数据库提供有关每个字符的完整信息,包括字符类别(开源软件使用此数据库为您提供类别)


Windows Charmap 还将向您显示字符类别。

This will Defines the Unicode category of a character.

A surrogate pair is a coded character representation for a single abstract character that consists of a sequence of two code units, where the first unit of the pair is a high-surrogate and the second is a low-surrogate. A high-surrogate is a Unicode code point in the range U+D800 through U+DBFF and a low-surrogate is a Unicode code point in the range U+DC00 through U+DFFF.

This enumeration is based on The Unicode Standard, Version 3.1

This enumeration is used to support Char methods, such as IsUpper


There is an Open Source Software at http://unicode.codeplex.com which get a Char and return Character Category.

These category mentioned on Unicode Character Database (annex #44) at http://www.unicode.org/ucd this database provide complete information about each charater including Character Category (and that open source software use this DB togive you the category )


Windows Charmap also will show you characters category.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文