I want to convert the ASCII code into characters or, how to do it?
CHR () and ORD () or sprintf () will help you swap back between them.
$ letter = chr (67); // Upper case c
$ ascii_code = ORD ($ letter); // 67
$ letter = Sprintf ("% c", $ ascii_code); // Upper case C
?>