w3DumpString prints the decimal and ASCII representation of each character in the passed-in string to the screen.
line 1: Decimal value for each character
line 2: ASCII value for each character, unprintable characters are displayed with a leading "\" then the decimal value.
line 1:116104101 32 99 97116 10
line 2: t h e c a t\10
call w3DumpString (string )
|
string |
In |
The string to be displayed. |