Home » HTML » HTML URL Encode » Question
  1. What is the URL Encode for tab character?
    1. %08
    2. %0a
    3. %09
    4. %0d
    5. None of these
Correct Option: C

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.



Your comments will be displayed only after manual approval.