Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
print "\x03";
or
print chr(0x03);
[kirsle@firefly ~]$ perl
print "Gonna send Ctrl-C\n";
print "\x03";
print "Sent it.\n";
__END__
Gonna send Ctrl-C
Sent it.
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'