×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

Home » C#

C# | Uri.HexEscape() Method with Example

Uri.HexEscape() Method: Here, we are going to learn about the HexEscape() method of Uri class with example in C#.
Submitted by Nidhi, on March 26, 2020

Uri.HexEscape() Method

Uri.HexEscape() method is a static method that is used to get the hexadecimal equivalent of the specified character.

Syntax:

    string Uri.HexEscape(char ch);

Parameter(s):

  • char ch – represents the character to be converted in hexadecimal equivalent.

Return value:

The return type of this method is string, it returns the string value that represent hexadecimal equivalent of specified character.

Exception:

    System.ArgumentOutOfRangeException;

Example to demonstrate example of Uri.HexEscape() method

using System;

class UriExample
{
    //Entry point of Program
    static public void Main()
    {
        char ch     = 'D';
        string retStr   = "";

        retStr = Uri.HexEscape(ch);
        
        Console.WriteLine("Hexadecimal Equivalent: "+retStr);
    }
}

Output

Hexadecimal Equivalent: %44
Press any key to continue . . .
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.