Uri.HexEscape(Char)方法用于将指定字符转换为等效的十六进制。
用法: public static string HexEscape (char character);
Here, it takes the character to convert to hexadecimal representation.
返回值:此方法返回指定字符的十六进制表示形式。
异常:如果字符大于255,则此方法引发ArgumentOutOfRangeException。
以下示例程序旨在说明Uri.HexEscape(Char)方法的用法:
例:
// C# program to demonstrate the
// Uri.HexEscape() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing address1
char ch = 'c';
// Converting the specified character
// into its hexadecimal equivalent
// using HexEscape() method
string value = Uri.HexEscape(ch);
// Displaying the result
Console.WriteLine("Hexadecimal Equivalent is: {0}", value);
}
}
输出:
Hexadecimal Equivalent is: %63
注意:大于255的字符实际上是不可能的。
参考:
相关用法
- C# DateTimeOffset.Add()用法及代码示例
- C# String.Contains()用法及代码示例
- C# Math.Sin()用法及代码示例
- C# Math.Cos()用法及代码示例
- C# Dictionary.Add()用法及代码示例
- C# Math.Tan()用法及代码示例
- C# Math.Abs()方法用法及代码示例
- C# Math.Exp()用法及代码示例
- C# Math.Abs()函数用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | Uri.HexEscape(Char) Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。