HTML URL Encodes

ASCII CODES Example

HTML URL Encodes

URL –Uniform Resource Locator
Most of the HTML/XHTML tags, hyperlinks, forms contain URL.

ASCII CODES

ASCII (American Standard Code for Information Interchange)

  • It defines fixed character encoding it is the most common format used in computer and on the internet.
  • It allocates printable characters and non printable control characters.
  • In ASCII -7 BIT CODES 120 characters are defined.
  • ASCII CODES-7 BIT consists 33 non-printable and 95 printable characters and includes alphabets, numbers, letters and control characters.

ASCII characters are represented in electronic devices like mobiles, computers, and calculators.

SCHEMES DESCRIPTION
HTTP (HyperText Transfer Protocol) http is not encrypted used in common web pages.
HTTPS (Secure HyperText Transfer Protocol) https is encrypted used in secure webpages.
FTP (File Transfer Protocol) ftp is used to download or to upload the files.
FILE Files located in your local disk.

ASCII Charaters is divided into many groups like:

Control Characters (0–31 & 127) – It defines non printable characters.
Special Characters (32–47 / 58–64 / 91–96 / 123–126) – It defines all non-printable characters.
Numbers (30–39) – It defines arabic numerals from (0 to 9).
Letters (65–90 / 97–122) – It defines the upper case and lower case letter in two blocks.

ASCII CODES-7 BIT printable characters

SymbolsDecimalsHTML Entity CodesDescription
 32 space
!33!exclamation mark
34quotation mark
#35#number sign
$36$dollar sign
%37%percent sign
&38&ampersand
39apostrophe
(40(left parenthesis
)41)right parenthesis
*42*asterisk
+43+plus sign
,44,comma
45hyphen
.46.period
/47/slash
0480digit 0
1491digit 1
2502digit 2
3513digit 3
4524digit 4
5535digit 5
6546digit 6
7557digit 7
8568digit 8
9579digit 9
:58:colon
;59;semicolon
60<less-than
=61=equals-to
62>greater-than
?63?question mark
@64@at sign
A65Auppercase A
B66Buppercase B
C67Cuppercase C
D68Duppercase D
E69Euppercase E
F70Fuppercase F
G71Guppercase G
H72Huppercase H
I73Iuppercase I
J74Juppercase J
K75Kuppercase K
L76Luppercase L
M77Muppercase M
N78Nuppercase N
O79Ouppercase O
P80Puppercase P
Q81Quppercase Q
R82Ruppercase R
S83Suppercase S
T84Tuppercase T
U85Uuppercase U
V86Vuppercase V
W87Wuppercase W
X88Xuppercase X
Y89Yuppercase Y
Z90Zuppercase Z
[91[left square bracket
\92\backslash
]93]right square bracket
^94^caret
_95_underscore
`96`grave accent
a97alowercase a
b98blowercase b
c99clowercase c
d100dlowercase d
e101elowercase e
f102flowercase f
g103glowercase g
h104hlowercase h
i105ilowercase i
j106jlowercase j
k107klowercase k
l108llowercase l
m109mlowercase m
n110nlowercase n
o111olowercase o
p112plowercase p
q113qlowercase q
r114rlowercase r
s115slowercase s
t116tlowercase t
u117ulowercase u
v118vlowercase v
w119wlowercase w
x120xlowercase x
y121ylowercase y
z122zlowercase z
{123{left curly brace
|124|vertical bar
}125}right curly brace
~126~tilde

ASCII Device control Characters

Symbols NamesSymbolsHTML Entity CodesDescription
NUL &#0;null character
SOH&#1;start of header
STX&#2;start of text
ETX&#3;end of text
EOT&#4;end of transmission
ENQ&#5;enquiry
ACK&#6;acknowledge
BEL&#7;bell (ring)
BS&#8;backspace
HT &#9;horizontal tab
LF &#10;line feed
VT &#11;vertical tab
FF &#12;form feed
CR &#13;carriage return
SO&#14;shift out
SI&#15;shift in
DLE&#16;data link escape
DC1&#17;device control 1
DC2&#18;device control 2
DC3&#19;device control 3
DC4&#20;device control 4
NAK&#21;negative acknowledge
SYN&#22;synchronize
ETB&#23;end transmission block
CAN&#24;cancel
EM&#25;end of medium
SUB&#26;substitute
ESC&#27;escape
FS&#28;file separator
GS&#29;group separator
RS&#30;record separator
US&#31;unit separator

Example

<p>What is your name&#63; </p>
<p>8&#43;8&#61;16</p>

Interview Questions & Answer

URL(Uniform Resource Locator)
Most of the HTML/XHTML tags, hyperlinks, forms contain URL.

  • HTML Decoding is the opposite of the encoding process.
  • HTML Encoding means to convert the document that contains special characters outside the range of normal seven-bit ASCII into a standard form.
  • In the decoding process, the specially encoded characters are converted back to their original form.

ASCII(American Standard Code for Information Interchange)
• Fixed character encoding is the most common format used in computer and on the internet.
• This allocates printable characters and nonprintable control characters.
• ASCII – 7 BIT CODES 120 characters are defined.
• ASCII CODES- 7 BIT consists of 33 non-printable and 95 printable characters and includes alphabets, numbers, letters and control characters.

ASCII characters are represented in electronic devices like mobiles, computers, and calculators.

Tutorials for all brains!