Twitter sharing link problem with URL Encoding. i need to share this sentence.

i am giving you 40% discount

i am trying this to pass from url

i+am+giving+you+40%+discount  

but its not working because +40%+ become %2040%%20

Two percentage %% together create problem
What will be solution?

link|improve this question

73% accept rate
feedback

1 Answer

Use encoded "%" -> "%25", also maybe you try some library for URL encoding. Your url will looks like "i%20am%20giving%20you%2040%25%20discount"

  • %20 - is a space
  • %25 - % symbol
link|improve this answer
i have tried that too, and not using any library. – Wasim Nov 29 '11 at 14:41
here is exact link twitter.com/intent/tweet?text=get%2040%%20commissions – Wasim Nov 29 '11 at 14:42
get+40%25+caa become get+40%%20caa – Wasim Nov 29 '11 at 14:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.