Commands

Commands SearchSearch
Author Message
Help needed
Unregistered guest
Posted on Saturday, October 22, 2005 - 10:39 am:   

for a < the code is %3C
for a " the code is %22

what about a new line code? or do call the "enter" code.. whats the code to make a next line?
Starhub
Unregistered guest
Posted on Saturday, October 22, 2005 - 11:48 am:   

ok i found it. its %0A

what about :
whats the code?
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 5190
Registered: 10-2002
Posted on Tuesday, October 25, 2005 - 04:53 pm:   

For a new line, I would suggest using %0D%0A, which combines carriage return and line feed. (Technically, line feed just moves to the next line, but does not return the cursor to the start of the next line. Most phones will treat a line feed as a carriage return + line feed, but you may find a few do not.)

If you need more help with ASCII codes, the easiest way to find them is to run the charmap utility. For : it says U+003A ... which you can translate as %3A.

-bn