Help for this page

Select Code to Download


  1. or download this
     $string1 = "This is greek character 'y': μ";
     $string2 = "Hello \x{263A}!\n";
     print "Content-Type: text/html; charset=utf-8\n\n";
     print "$string1 - $string2";
    
  2. or download this
     $string1 = "This is greek character 'y': μ";
     print "Content-Type: text/html; charset=utf-8\n\n";
     print "$string1 - $string2";
    
  3. or download this
     $string1 = "This is greek character 'y': μ";
     $string2 = "Hello \x{263A}!\n";
     print "Content-Type: text/html; charset=utf-8\n\n";
     print "$string1 - $string2";