strChr

Converts an ASCII code to a single-character string. Takes code (ASCII code 0-255). Returns a single-character string containing the character with the specified ASCII code.

String

Parameters & Returns

Parameters

code Int

Returns

String

Quick Summary

Converts an ASCII code to a single-character string. Takes code (ASCII code 0-255). Returns a single-character string containing the character with the specified ASCII code.

Technical Exegesis...

Returns a single-character string containing the character with the specified ASCII code. The code must be in the range 0-255.

Returns an empty string if code is outside the valid range. Useful for generating special characters, control codes, or building strings character by character.

Example

Example.bam
; No example implemented yet