当前位置 : 主页 > 网络推广 > seo >

检索char:Java的Unicode值

来源:互联网 收集:自由互联 发布时间:2021-06-16
我正在寻找一种方法来检索给定char的Unicode值,如果可能的话,将其存储为整数.在 Java中使用任何内置方法,还是我必须编写自己的代码? 上下文 我正在构建一个基本的加密程序以获得乐趣
我正在寻找一种方法来检索给定char的Unicode值,如果可能的话,将其存储为整数.在 Java中使用任何内置方法,还是我必须编写自己的代码?

上下文

我正在构建一个基本的加密程序以获得乐趣.我需要的是将Unicode集中的每个字符映射到一个整数,然后我可以在我的加密公式中进行操作.

我想通过将char类型转换为int来为char使用ASCII值,但后来我在线阅读了Unicode,并意识到我的错误.

任何帮助将不胜感激.

The Java programming language represents text in sequences of 16-bit code units, using the UTF-16 encoding.

因此这就足够了:

char character='a';
int code = character;
System.out.println(code);

按照JLS 3.10.4

Character literals can only represent UTF-16 code units (§3.1), i.e., they are limited to values from \u0000 to \uffff. Supplementary characters must be represented either as a surrogate pair within a char sequence, or as an integer, depending on the API they are used with.

网友评论