Help for this page

Select Code to Download


  1. or download this
    printf ("%c" x 3,65,66,67);
    
  2. or download this
    $a = chr(65);
    $b = chr(66);
    $c = chr(67);
    print ($a x 2, $b x 3, $c x 4);