Help for this page

Select Code to Download


  1. or download this
    binmode STDOUT, ":utf8";
    
    my $u = __t("Patient Id");
    utf8::decode( $u );
    print $u,"\n";
    
  2. or download this
    use Encode;
    binmode STDOUT, ":utf8";
    
    my $u = decode( "utf8", __t("Patient Id"));
    print $u;