Notice you are using 00DC, which is a hexadecimal number.
In Pawn, you can use hexadecimal numbers instead of base10 numbers.
I assume you know how strings work:
Code:
new szString[ 4 ]; // max 3 chars with the last array index as ^0
// since strings must have a null terminator
szString[ 0 ] = 'c';
szString[ 1 ] = 'a';
szString[ 2 ] = 't';
// characters can also be represented as numbers
szString[ 0 ] = 99;
szString[ 1 ] = 97;
szString[ 2 ] = 116;
// now, to use hexadecimal numbers
szString[ 0 ] = 0x63;
szString[ 1 ] = 0x61;
szString[ 2 ] = 0x74;
__________________