ASCIIEncoding Class represents an ASCII character encoding of Unicode characters. : ASCIIEncoding « Internationalization I18N « C# / C Sharp






ASCIIEncoding Class represents an ASCII character encoding of Unicode characters.

 

using System;
using System.Text;

class MainClass{
    public static void Main() {
        ASCIIEncoding ascii = new ASCIIEncoding();

        String unicodeString ="Pi (\u03a0) and Sigma (\u03a3).";

        int indexOfPi = unicodeString.IndexOf('\u03a0');
        int indexOfSigma = unicodeString.IndexOf('\u03a3');

        Byte[] encodedBytes = ascii.GetBytes(unicodeString);
        foreach (Byte b in encodedBytes) {
            Console.Write("[{0}]", b);
        }

        String decodedString = ascii.GetString(encodedBytes);
        Console.WriteLine(decodedString);
    }
}

   
  








Related examples in the same category

1.Initializes a new instance of the ASCIIEncoding class.
2.Calculates the number of bytes produced by encoding
3.Calculates the number of bytes produced by encoding the characters in the specified String.
4.Encodes a set of characters from the specified character array into the specified byte array.
5.Encodes a set of characters from the specified String into the specified byte array.
6.Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array.
7.Decodes a sequence of bytes from the specified byte array into the specified character array.
8.Calculates the maximum number of bytes produced by encoding the specified number of characters.
9.Calculates the maximum number of characters produced by decoding the specified number of bytes.
10.Decodes a range of bytes from a byte array into a string.