Massimiliano,
As far as I know there is not Fmt or printf do not suport binary strings. You can use a liece of code like this to generate the binary string:
static char binary[10];
static int i=0;
strcpy(binary,"");
for(i=0;i<8;i++)
Fmt(binary, "%s%d",binary,170>>i&1);
DebugPrintf("%s",binary);
I hope this helps.
Juan Carlos
N.I.