First page Back Continue Last page Image

If I want to send something like a Tab or a LineFeed to the Output I cannot just hit the key because it means something to the script, So I need another method if I want special Characters to get to the output

Remember ASCII? We discussed it on a previous slide. All characters have an ASCII code associated with them. We can use this code to pass information to the output

CHAR

The CHAR Function (Not the CHAR Data Type) I agree unfortunate naming, allows you to pass a character to the Output

CHAR(9)

Even the way this function looks in the code is exactly like the variable type, you can only tell them apart by context

How Do I Send A Non-standard Character To The Output ?