Hi , i`m wondering if theres any code that can generate the windows key
like "%30" generates "0" and "%3f" generates "?" and so on .. please help me ^^
thx
enter key code
Started by flaviusikbv, Jun 21 2008 08:29 AM
10 replies to this topic
#1
Posted 21 June 2008 - 08:29 AM
|
|
|
#2
Posted 21 June 2008 - 08:47 AM
i mean enter key not windows key
#4
Posted 21 June 2008 - 02:55 PM
i don`t really know what u mean by this
i need some code to insert in this thing
ymsgr:sendim?notarealuser&m=This+is+my+message (and here must be insert enter key)
Quote
Try an escape sequence for a new line (ASCII 10) or a carriage return (ASCII 13).
i need some code to insert in this thing
ymsgr:sendim?notarealuser&m=This+is+my+message (and here must be insert enter key)
#5
Posted 22 June 2008 - 07:30 AM
well .. does anyone know ?! i need that bad
#6
Posted 22 June 2008 - 08:49 AM
Go to Start > Programs > Accessories > System Tools > Character Map. There you can find the ASCII or Unicode codes for any character in any font. (ENTER would be %0d, I believe.)
All you need to do is take the hexadecimal code of the character you want.
All you need to do is take the hexadecimal code of the character you want.
#8
Posted 22 June 2008 - 04:55 PM
He's using URL encoding in the string, if my assumptions are correct. You can't use C-style escapes in those.
#9
Posted 23 June 2008 - 11:19 AM
Oh, I see. In that case, your method is best. But if the URL is being sent be something such as PHP, the script automatically generates them from character escape sequences. I thought a new line was %20?
#10
Posted 23 June 2008 - 06:53 PM
That's a space character. CRLF is %0d%0a, but only %0d is output by then ENTER key (%0a is added in by the program or system, I think.)


Sign In
Create Account

Back to top









