Encoding Cheat Sheets
ASCII Table – https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html
Numbers = 0x3X i.e. 0x30 = 0 and 0x39 = 9
Alpha (Upper) = 0x[4/5]X i.e. 0x41 = A and 0x5a = Z
Alpha (Lower) = 0x[6/7]X i.e. 0x61 = a and 0x7a = z
URL Encoding in UTF-16 = %uxxxx
Url Encoding – (%xx) http://www.cheat-sheets.org/sites/html.su/urlencoding.html
<space> = %20
” = %22
<numbers> = %3[0-9]
= = %3d
<space> Encoding:
%20
%u0020