Help for this page

Select Code to Download


  1. or download this
      {ESC}[1m      High intensity.
      {ESC}[1;5m    High intensity and blink.
      {ESC}[30;46m  Black foreground, cyan background.
      {ESC}[m       Turn off all attributes.
      {ESC}[0m      Turn off all attributes.
    
  2. or download this
    use strict;
    use warnings;
    print "\x1b[30;46m  This should be black on cyan\n";
    print "\x1b[0m  And this should be back to normal\n";