Write the UTF-8 and ASCII encoded byte arrays : Unicode UTF16 « Internationalization I18N « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Internationalization I18N » Unicode UTF16Screenshots 
Write the UTF-8 and ASCII encoded byte arrays
Write the UTF-8 and ASCII encoded byte arrays
 

using System;
using System.IO;
using System.Text;

class Test
{
    public static void Main() 
    {        
        using (StreamWriter output = new StreamWriter("practice.txt")) 
        {
            // Create and write a string containing the symbol for Pi.
            string srcString = "Area = \u03A0r^2";

            // Convert the UTF-16 encoded source string to UTF-8 and ASCII.
            byte[] utf8String = Encoding.UTF8.GetBytes(srcString);
            byte[] asciiString = Encoding.ASCII.GetBytes(srcString);
            
            // Write the UTF-8 and ASCII encoded byte arrays. 
            output.WriteLine("UTF-8  Bytes: {0}", BitConverter.ToString(utf8String));
            output.WriteLine("ASCII  Bytes: {0}", BitConverter.ToString(asciiString));
            
            Console.WriteLine(BitConverter.ToString(utf8String));
            Console.WriteLine(BitConverter.ToString(asciiString));
        }
    }
}



           
         
  
Related examples in the same category
1.Write the UTF-16 encoded bytes of the source stringWrite the UTF-16 encoded bytes of the source string
2.Write special symbol to Text file: pi (\u03A0r^2)Write special symbol to Text file: pi (\u03A0r^2)
3.Replace utf-16 encoding with utf-8 encoding
4.Returns the number of additional bytes in a UTF-8 character sequence (not including the first byte).
5.Write a string to a file using default encoding
6.Convert a string from one charset to another charset
7.Return the value of CharSize and display it.
8.Returns the value encoded in Big/Little Endian (PPC, XDR) format.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.