在VB.NET中将Hex Codepoint转换为Unicode字符

时间:2012-01-29 04:42:26

标签: .net unicode hex

简短& Sweet:如何获取28E02的十六进制输入并将其转换为字符串?

长:

在VB.NET中,我想将这个中文字符存储在一个字符串中:

根据以下网站,该字符的十六进制代码点为28E02:

http://isthisthingon.org/unicode/index.phtml?page=28&subpage=E&glyph=28E02

我已经尝试过ChrW,但是Chrw的价值太大了。

1 个答案:

答案 0 :(得分:3)

找到它。我找到了这个网站,它告诉我28E02十六进制代码是一个32位代码。

http://www.unicode.org/cgi-bin/GetUnihanData.pl?codepoint=28E02

我所要做的就是:

Dim s1 As String = Char.ConvertFromUtf32(&H28E02)