InterviewSolution
Saved Bookmarks
| 1. |
What is the URL Encode for tab character?(a) %09(b) %08(c) %0d(d) %0aThe question was posed to me in final exam.My doubt is from URL Encoding topic in division HTML Images & Web Page Files of HTML |
|
Answer» CORRECT OPTION is (a) %09 Best explanation: For tab character URL encode is %09, its Decimal value is 9 and Hex value is 09, %08 is URL encode for backspace, its Decimal value is 8 and Hex value is 08, %0d is URL Encode for carriage return, Decimal value is 13 and Hex value is 0d, %0a is URL encode for linefeed, Decimal value is 10 and Hex value is 0a. |
|