Delphi Basics : Chr command
Example code : Showing Chr and ^ usage var tab : char; crlf : string; begin // Show the use of Chr tab := Chr(9); crlf := Chr(13)+Chr(10); ShowMessage('Hello'+tab+'World'); ShowMessage(''); ShowMessage('Hello'+crlf+'World'); ShowMessage(''); // Show ......