Decode | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Decode

how do i Knowles what post un URL and how to décode them

1st Jun 2018, 1:51 PM
Steven Girard
Steven Girard - avatar
1 Answer
0
To map the wide range of characters used worldwide into the 60 or so allowed characters in a URI, a two-step process is used: Convert the character string into a sequence of bytes using the UTF-8 encoding.Convert each byte that is not an ASCII letter or digit to %HH, where HH is the hexadecimal value of the byte. https://www.w3schools.com/jsref/jsref_decodeuricomponent.asp https://stackoverflow.com/questions/6138127/how-to-do-url-decoding-in-java
1st Jun 2018, 2:08 PM
MsJ
MsJ - avatar