Well, in Axe, >Dec says to display a nubmer in decimal format. Otherwise, it will use the variable as a pointer and display random gibberish from that point in memory to the next zero. Also, >Frac will display the character represented by the variable. For instance:
65->X
Disp X // Displays everything from 0x00041h (hex) to the next zero
Disp X>Dec // Displays 5
Disp X>Frac // Displays "a"