fork download
  1. using System;
  2. using System.Text;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. byte[] byteA = Encoding.UTF8.GetBytes("test");
  9. for (int i = 0 ; i != byteA.Length ; i++) {
  10. Console.Write("{0} ", byteA[i]);
  11. }
  12. Console.WriteLine();
  13. }
  14. }
Success #stdin #stdout 0.03s 33840KB
stdin
Standard input is empty
stdout
116 101 115 116