C# UTF8Encoding CodePage
Description
UTF8Encoding CodePage
When overridden in a derived class,
gets the code page identifier of the current Encoding.
Syntax
UTF8Encoding.CodePage
has the following syntax.
public virtual int CodePage { get; }
Example
using System;// w ww . j a v a 2 s. c om
using System.Text;
public class SamplesEncoding {
public static void Main() {
foreach( EncodingInfo ei in Encoding.GetEncodings() ) {
Encoding e = ei.GetEncoding();
Console.WriteLine( ei.Name );
Console.WriteLine( e.CodePage );
Console.WriteLine( e.BodyName );
Console.WriteLine( e.HeaderName );
Console.WriteLine( e.WebName );
Console.WriteLine( e.EncodingName );
}
}
}
The code above generates the following result.