Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Broseph Radson on April 11, 2011, 06:08:19 pm

Title: Slight problem
Post by: Broseph Radson on April 11, 2011, 06:08:19 pm
Im trying to display a percent sign, and both calcsys and xxedit show that the hax code for the percent sign is 25, but when i do Disp 25>Char it displays a greater than/equal sign instead ???
Title: Re: Slight problem
Post by: Runer112 on April 11, 2011, 06:10:04 pm
The percent symbol's character value is 25 in hexadecimal, but you're inputting it as a decimal value. So instead of displaying character 25h, it's really displaying character 17h, which is the less than or equal to symbol on the calculator. You want to use Disp ᴇ25►Dec. The before the number signifies that it's a hexadecimal value.
Title: Re: Slight problem
Post by: Ashbad on April 11, 2011, 06:10:25 pm
Are you making it show the percent sign as a token, or as an ASCII character on calcsys?  Most ASCII characters have different token equates, disincluding numbers and letters.
Title: Re: Slight problem
Post by: Broseph Radson on April 11, 2011, 06:14:30 pm
It worked! Thanks Runer :)