Help for this page

Select Code to Download


  1. or download this
    $txt = ' __\\U//__ ';
    print("$txt\n");       # Prints __\U//__
    ...
    
    $txt =~s/\\/\\\\/g;
    print("$txt\n");       # Prints __\\\\U//__
    
  2. or download this
    $txt = <DATA>;
    print("$txt\n");       # Prints __\\U//__
    ...
    
    __DATA__
    __\\U//__