Help for this page

Select Code to Download


  1. or download this
    # five UTF smiley faces (three bytes long each):
    my $string = "\x{263a}\x{263a}\x{263a}\x{263a}\x{263a}";
    my $bytes_written = syswrite($socket, $string, length $string);
    
  2. or download this
    # five UTF smiley faces (three bytes long each):
    my $string = "\x{263a}\x{263a}\x{263a}\x{263a}\x{263a}";
    my $bytes_written = syswrite($socket, $string, size_in_bytes($string))
    +;