XHTML Tutorial

XHTML is a stricter and cleaner version of HTML.

In this tutorial you will learn the difference between HTML and XHTML

PHP Tutorial

PHP is a powerful server-side scripting language for creating dynamic and interactive websites.

PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft’s ASP. PHP is perfectly suited for Web development and can be embedded directly into the HTML code.

The PHP syntax is very similar to Perl and C. PHP is often used together with Apache (web server) on various operating systems. It also supports ISAPI and can be used with Microsoft’s IIS on Windows.

MY SNAP

13032009naveed1

Bacic Html Tutorial – Part 1

HTML Website Design Tutorial 1 – Basics & Beginnings

Basic HTML Tutorial

Learning html

After long time I opened my lessons of html and had a long session revising and experimenting different scripts, building from sliced psd file to html with proper fonts and background management.  hmm still in begining level, but hoping ahead ahead ahead

HTTP Status Messages

When a browser requests a service from a web server, an error might occur.

This is a list of HTTP status messages that might be returned:


1xx: Information

Message: Description:
100 Continue Only a part of the request has been received by the server, but as long as it has not been rejected, the client should continue with the request
101 Switching Protocols The server switches protocol

2xx: Successful

Message: Description:
200 OK The request is OK
201 Created The request is complete, and a new resource is created
202 Accepted The request is accepted for processing, but the processing is not complete
203 Non-authoritative Information
204 No Content
205 Reset Content
206 Partial Content

3xx: Redirection

Message: Description:
300 Multiple Choices A link list. The user can select a link and go to that location. Maximum five addresses
301 Moved Permanently The requested page has moved to a new url
302 Found The requested page has moved temporarily to a new url
303 See Other The requested page can be found under a different url
304 Not Modified
305 Use Proxy
306 Unused This code was used in a previous version. It is no longer used, but the code is reserved
307 Temporary Redirect The requested page has moved temporarily to a new url

4xx: Client Error

Message: Description:
400 Bad Request The server did not understand the request
401 Unauthorized The requested page needs a username and a password
402 Payment Required You can not use this code yet
403 Forbidden Access is forbidden to the requested page
404 Not Found The server can not find the requested page
405 Method Not Allowed The method specified in the request is not allowed
406 Not Acceptable The server can only generate a response that is not accepted by the client
407 Proxy Authentication Required You must authenticate with a proxy server before this request can be served
408 Request Timeout The request took longer than the server was prepared to wait
409 Conflict The request could not be completed because of a conflict
410 Gone The requested page is no longer available
411 Length Required The “Content-Length” is not defined. The server will not accept the request without it
412 Precondition Failed The precondition given in the request evaluated to false by the server
413 Request Entity Too Large The server will not accept the request, because the request entity is too large
414 Request-url Too Long The server will not accept the request, because the url is too long. Occurs when you convert a “post” request to a “get” request with a long query information
415 Unsupported Media Type The server will not accept the request, because the media type is not supported
416
417 Expectation Failed

5xx: Server Error

Message: Description:
500 Internal Server Error The request was not completed. The server met an unexpected condition
501 Not Implemented The request was not completed. The server did not support the functionality required
502 Bad Gateway The request was not completed. The server received an invalid response from the upstream server
503 Service Unavailable The request was not completed. The server is temporarily overloading or down
504 Gateway Timeout The gateway has timed out
505 HTTP Version Not Supported The server does not support the “http protocol” version

HTML Language Code Reference

ISO Language Codes

The HTML lang attribute can be used to declare the language of a Web page or a portion of a Web page. This is meant to assist search engines and browsers.

According to the W3C recommendation you should declare the primary language for each Web page with the lang attribute inside the <html> tag, like this:

<html lang="en">
...
</html>

In XHTML, the language is declared inside the <html> tag as follows:

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
...
</html>

ISO 639-1 Language Codes

ISO 639-1 defines abbreviations for languages. In HTML and XHTML they can be used in the lang and xml:lang attributes.

Language ISO Code
Abkhazian ab
Afar aa
Afrikaans af
Albanian sq
Amharic am
Arabic ar
Armenian hy
Assamese as
Aymara ay
Azerbaijani az
Bashkir ba
Basque eu
Bengali (Bangla) bn
Bhutani dz
Bihari bh
Bislama bi
Breton br
Bulgarian bg
Burmese my
Byelorussian (Belarusian) be
Cambodian km
Catalan ca
Cherokee
Chewa
Chinese (Simplified) zh
Chinese (Traditional) zh
Corsican co
Croatian hr
Czech cs
Danish da
Divehi
Dutch nl
Edo
English en
Esperanto eo
Estonian et
Faeroese fo
Farsi fa
Fiji fj
Finnish fi
Flemish
French fr
Frisian fy
Fulfulde
Galician gl
Gaelic (Scottish) gd
Gaelic (Manx) gv
Georgian ka
German de
Greek el
Greenlandic kl
Guarani gn
Gujarati gu
Hausa ha
Hawaiian
Hebrew he, iw
Hindi hi
Hungarian hu
Ibibio
Icelandic is
Igbo
Indonesian id, in
Interlingua ia
Interlingue ie
Inuktitut iu
Inupiak ik
Irish ga
Italian it
Japanese ja
Javanese jv
Kannada kn
Kanuri
Kashmiri ks
Kazakh kk
Kinyarwanda (Ruanda) rw
Kirghiz ky
Kirundi (Rundi) rn
Konkani
Korean ko
Kurdish ku
Laothian lo
Latin la
Latvian (Lettish) lv
Limburgish ( Limburger) li
Lingala ln
Lithuanian lt
Macedonian mk
Malagasy mg
Malay ms
Malayalam ml
Maltese mt
Maori mi
Marathi mr
Moldavian mo
Mongolian mn
Nauru na
Nepali ne
Norwegian no
Occitan oc
Oriya or
Oromo (Afan, Galla) om
Papiamentu
Pashto (Pushto) ps
Polish pl
Portuguese pt
Punjabi pa
Quechua qu
Rhaeto-Romance rm
Romanian ro
Russian ru
Sami (Lappish)
Samoan sm
Sangro sg
Sanskrit sa
Serbian sr
Serbo-Croatian sh
Sesotho st
Setswana tn
Shona sn
Sindhi sd
Sinhalese si
Siswati ss
Slovak sk
Slovenian sl
Somali so
Spanish es
Sundanese su
Swahili (Kiswahili) sw
Swedish sv
Syriac
Tagalog tl
Tajik tg
Tamazight
Tamil ta
Tatar tt
Telugu te
Thai th
Tibetan bo
Tigrinya ti
Tonga to
Tsonga ts
Turkish tr
Turkmen tk
Twi tw
Uighur ug
Ukrainian uk
Urdu ur
Uzbek uz
Venda
Vietnamese vi
Volapük vo
Welsh cy
Wolof wo
Xhosa xh
Yi
Yiddish yi, ji
Yoruba yo
Zulu zu

HTML URL Encoding Reference

URL encoding converts characters into a format that can be safely transmitted over the Internet.


URL – Universal Resource Locator

Web browsers request pages from web servers by using a URL.

The URL is the address of a web page like: http://www.w3schools.com.


URL Encoding

URLs can only be sent over the Internet using the ASCII character-set.

Since URLs often contains characters outside the ASCII set, the URL has to be converted. URL encoding converts the URL into a valid ASCII format.

URL encoding replaces unsafe ASCII characters with “%” followed by two hexadecimal digits corresponding to the character values in the ISO-8859-1 character-set.

URLs cannot contain spaces. URL encoding normally replaces a space with a + sign.


Try It Yourself

If you click the “Submit” button below, the browser will URL encode the input before it is sent to the server. A page at the server will display the received input.

Try some other input and click Submit again.


URL Encoding Functions

In JavaScript, PHP, and ASP there are functions that can be used to URL encode a string.

In JavaScript you can use the encodeURI() function. PHP has the rawurlencode() function and ASP has the Server.URLEncode() function.

Click the “URL Encode” button to see how the JavaScript function encodes the text.

Note: The JavaScript function encodes space as %20.


URL Encoding Reference

ASCII Character URL-encoding
space %20
! %21
%22
# %23
$ %24
% %25
& %26
%27
( %28
) %29
* %2A
+ %2B
, %2C
%2D
. %2E
/ %2F
0 %30
1 %31
2 %32
3 %33
4 %34
5 %35
6 %36
7 %37
8 %38
9 %39
: %3A
; %3B
< %3C
= %3D
> %3E
? %3F
@ %40
A %41
B %42
C %43
D %44
E %45
F %46
G %47
H %48
I %49
J %4A
K %4B
L %4C
M %4D
N %4E
O %4F
P %50
Q %51
R %52
S %53
T %54
U %55
V %56
W %57
X %58
Y %59
Z %5A
[ %5B
\ %5C
] %5D
^ %5E
_ %5F
` %60
a %61
b %62
c %63
d %64
e %65
f %66
g %67
h %68
i %69
j %6A
k %6B
l %6C
m %6D
n %6E
o %6F
p %70
q %71
r %72
s %73
t %74
u %75
v %76
w %77
x %78
y %79
z %7A
{ %7B
| %7C
} %7D
~ %7E
%7F
%80
%81
%82
ƒ %83
%84
%85
%86
%87
ˆ %88
%89
Š %8A
%8B
Π%8C
%8D
Ž %8E
%8F
%90
%91
%92
%93
%94
%95
%96
%97
˜ %98
%99
š %9A
%9B
œ %9C
%9D
ž %9E
Ÿ %9F
%A0
¡ %A1
¢ %A2
£ %A3
%A4
¥ %A5
| %A6
§ %A7
¨ %A8
© %A9
ª %AA
« %AB
¬ %AC
¯ %AD
® %AE
¯ %AF
° %B0
± %B1
² %B2
³ %B3
´ %B4
µ %B5
%B6
· %B7
¸ %B8
¹ %B9
º %BA
» %BB
¼ %BC
½ %BD
¾ %BE
¿ %BF
À %C0
Á %C1
 %C2
à %C3
Ä %C4
Å %C5
Æ %C6
Ç %C7
È %C8
É %C9
Ê %CA
Ë %CB
Ì %CC
Í %CD
Î %CE
Ï %CF
Ð %D0
Ñ %D1
Ò %D2
Ó %D3
Ô %D4
Õ %D5
Ö %D6
%D7
Ø %D8
Ù %D9
Ú %DA
Û %DB
Ü %DC
Ý %DD
Þ %DE
ß %DF
à %E0
á %E1
â %E2
ã %E3
ä %E4
å %E5
æ %E6
ç %E7
è %E8
é %E9
ê %EA
ë %EB
ì %EC
í %ED
î %EE
ï %EF
ð %F0
ñ %F1
ò %F2
ó %F3
ô %F4
õ %F5
ö %F6
÷ %F7
ø %F8
ù %F9
ú %FA
û %FB
ü %FC
ý %FD
þ %FE
ÿ %FF

URL Encoding Reference

The ASCII device control characters %00-%1f were originally designed to control hardware devices. Control characters have nothing to do inside a URL.

ASCII Character Description URL-encoding
NUL null character %00
SOH start of header %01
STX start of text %02
ETX end of text %03
EOT end of transmission %04
ENQ enquiry %05
ACK acknowledge %06
BEL bell (ring) %07
BS backspace %08
HT horizontal tab %09
LF line feed %0A
VT vertical tab %0B
FF form feed %0C
CR carriage return %0D
SO shift out %0E
SI shift in %0F
DLE data link escape %10
DC1 device control 1 %11
DC2 device control 2 %12
DC3 device control 3 %13
DC4 device control 4 %14
NAK negative acknowledge %15
SYN synchronize %16
ETB end transmission block %17
CAN cancel %18
EM end of medium %19
SUB substitute %1A
ESC escape %1B
FS file separator %1C
GS group separator %1D
RS record separator %1E
US unit separator %1F

HTML Symbol Entities Reference

HTML Symbol Entities

This entity reference includes mathematical symbols, Greek characters, various arrows, technical symbols and shapes.

Note: Entity names are case sensitive.


Math Symbols Supported by HTML

Character Entity Number Entity Name Description
&forall; for all
&part; part
&exists; exists
&empty; empty
&nabla; nabla
&isin; isin
&notin; notin
&ni; ni
&prod; prod
&sum; sum
&minus; minus
&lowast; lowast
&radic; square root
&prop; proportional to
&infin; infinity
&ang; angle
&and; and
&or; or
&cap; cap
&cup; cup
&int; integral
&there4; therefore
&sim; simular to
&cong; approximately equal
&asymp; almost equal
&ne; not equal
&equiv; equivalent
&le; less or equal
&ge; greater or equal
&sub; subset of
&sup; superset of
&nsub; not subset of
&sube; subset or equal
&supe; superset or equal
&oplus; circled plus
&otimes; cirled times
&perp; perpendicular
&sdot; dot operator

Greek Letters Supported by HTML

Character Entity Number Entity Name Description
Α Α &Alpha; Alpha
Β Β &Beta; Beta
Γ Γ &Gamma; Gamma
Δ Δ &Delta; Delta
Ε Ε &Epsilon; Epsilon
Ζ Ζ &Zeta; Zeta
Η Η &Eta; Eta
Θ Θ &Theta; Theta
Ι Ι &Iota; Iota
Κ Κ &Kappa; Kappa
Λ Λ &Lambda; Lambda
Μ Μ &Mu; Mu
Ν Ν &Nu; Nu
Ξ Ξ &Xi; Xi
Ο Ο &Omicron; Omicron
Π Π &Pi; Pi
Ρ Ρ &Rho; Rho
undefined Sigmaf
Σ Σ &Sigma; Sigma
Τ Τ &Tau; Tau
Υ Υ &Upsilon; Upsilon
Φ Φ &Phi; Phi
Χ Χ &Chi; Chi
Ψ Ψ &Psi; Psi
Ω Ω &Omega; Omega
α α &alpha; alpha
β β &beta; beta
γ γ &gamma; gamma
δ δ &delta; delta
ε ε &epsilon; epsilon
ζ ζ &zeta; zeta
η η &eta; eta
θ θ &theta; theta
ι ι &iota; iota
κ κ &kappa; kappa
λ λ &lambda; lambda
μ μ &mu; mu
ν ν &nu; nu
ξ ξ &xi; xi
ο ο &omicron; omicron
π π &pi; pi
ρ ρ &rho; rho
ς ς &sigmaf; sigmaf
σ σ &sigma; sigma
τ τ &tau; tau
υ υ &upsilon; upsilon
φ φ &phi; phi
χ χ &chi; chi
ψ ψ &psi; psi
ω ω &omega; omega
ϑ ϑ &thetasym; theta symbol
ϒ ϒ &upsih; upsilon symbol
ϖ ϖ &piv; pi symbol

Other Entities Supported by HTML

Character Entity Number Entity Name Description
ΠΠ&OElig; capital ligature OE
œ œ &oelig; small ligature oe
Š Š &Scaron; capital S with caron
š š &scaron; small S with caron
Ÿ Ÿ &Yuml; capital Y with diaeres
ƒ ƒ &fnof; f with hook
ˆ ˆ &circ; modifier letter circumflex accent
˜ ˜ &tilde; small tilde
&ensp; en space
&emsp; em space
&thinsp; thin space
&zwnj; zero width non-joiner
&zwj; zero width joiner
&lrm; left-to-right mark
&rlm; right-to-left mark
&ndash; en dash
&mdash; em dash
&lsquo; left single quotation mark
&rsquo; right single quotation mark
&sbquo; single low-9 quotation mark
&ldquo; left double quotation mark
&rdquo; right double quotation mark
&bdquo; double low-9 quotation mark
&dagger; dagger
&Dagger; double dagger
&bull; bullet
&hellip; horizontal ellipsis
&permil; per mille
&prime; minutes
&Prime; seconds
&lsaquo; single left angle quotation
&rsaquo; single right angle quotation
&oline; overline
&euro; euro
&trade; trademark
&larr; left arrow
&uarr; up arrow
&rarr; right arrow
&darr; down arrow
&harr; left right arrow
&crarr; carriage return arrow
&lceil; left ceiling
&rceil; right ceiling
&lfloor; left floor
&rfloor; right floor
&loz; lozenge
&spades; spade
&clubs; club
&hearts; heart
&diams; diamond

HTML ISO-8859-1 Reference

Modern browsers supports several character-sets:


ISO-8859-1

ISO-8859-1 is the default character set in most browsers.

The first 128 characters of ISO-8859-1 is the original ASCII character-set (the numbers from 0-9, the uppercase and lowercase English alphabet, and some special characters).

The higher part of ISO-8859-1 (codes from 160-255) contains the characters used in Western European countries and some commonly used special characters.

Entities are used to implement reserved characters or to express characters that cannot easily be entered with the keyboard.


Reserved Characters in HTML

Some characters are reserved in HTML and XHTML. For example, you cannot use the greater than or less than signs within your text because the browser could mistake them for markup.

HTML and XHTML processors must support the five special characters listed in the table below:

Character Entity Number Entity Name Description
" &quot; quotation mark
' &apos; (does not work in IE) apostrophe
& & &amp; ampersand
< < &lt; less-than
> > &gt; greater-than

Note: Entity names are case sensitive!


ISO 8859-1 Symbols

Character Entity Number Entity Name Description
  &nbsp; non-breaking space
¡ ¡ &iexcl; inverted exclamation mark
¢ ¢ &cent; cent
£ £ &pound; pound
¤ ¤ &curren; currency
¥ ¥ &yen; yen
¦ ¦ &brvbar; broken vertical bar
§ § &sect; section
¨ ¨ &uml; spacing diaeresis
© © &copy; copyright
ª ª &ordf; feminine ordinal indicator
« « &laquo; angle quotation mark (left)
¬ ¬ &not; negation
­ ­ &shy; soft hyphen
® ® &reg; registered trademark
¯ ¯ &macr; spacing macron
° ° &deg; degree
± ± &plusmn; plus-or-minus
² ² &sup2; superscript 2
³ ³ &sup3; superscript 3
´ ´ &acute; spacing acute
µ µ &micro; micro
&para; paragraph
· · &middot; middle dot
¸ ¸ &cedil; spacing cedilla
¹ ¹ &sup1; superscript 1
º º &ordm; masculine ordinal indicator
» » &raquo; angle quotation mark (right)
¼ ¼ &frac14; fraction 1/4
½ ½ &frac12; fraction 1/2
¾ ¾ &frac34; fraction 3/4
¿ ¿ &iquest; inverted question mark
× × &times; multiplication
÷ ÷ &divide; division

ISO 8859-1 Characters

Character Entity Number Entity Name Description
À À &Agrave; capital a, grave accent
Á Á &Aacute; capital a, acute accent
  &Acirc; capital a, circumflex accent
à à &Atilde; capital a, tilde
Ä Ä &Auml; capital a, umlaut mark
Å Å &Aring; capital a, ring
Æ Æ &AElig; capital ae
Ç Ç &Ccedil; capital c, cedilla
È È &Egrave; capital e, grave accent
É É &Eacute; capital e, acute accent
Ê Ê &Ecirc; capital e, circumflex accent
Ë Ë &Euml; capital e, umlaut mark
Ì Ì &Igrave; capital i, grave accent
Í Í &Iacute; capital i, acute accent
Î Î &Icirc; capital i, circumflex accent
Ï Ï &Iuml; capital i, umlaut mark
Ð Ð &ETH; capital eth, Icelandic
Ñ Ñ &Ntilde; capital n, tilde
Ò Ò &Ograve; capital o, grave accent
Ó Ó &Oacute; capital o, acute accent
Ô Ô &Ocirc; capital o, circumflex accent
Õ Õ &Otilde; capital o, tilde
Ö Ö &Ouml; capital o, umlaut mark
Ø Ø &Oslash; capital o, slash
Ù Ù &Ugrave; capital u, grave accent
Ú Ú &Uacute; capital u, acute accent
Û Û &Ucirc; capital u, circumflex accent
Ü Ü &Uuml; capital u, umlaut mark
Ý Ý &Yacute; capital y, acute accent
Þ Þ &THORN; capital THORN, Icelandic
ß ß &szlig; small sharp s, German
à à &agrave; small a, grave accent
á á &aacute; small a, acute accent
â â &acirc; small a, circumflex accent
ã ã &atilde; small a, tilde
ä ä &auml; small a, umlaut mark
å å &aring; small a, ring
æ æ &aelig; small ae
ç ç &ccedil; small c, cedilla
è è &egrave; small e, grave accent
é é &eacute; small e, acute accent
ê ê &ecirc; small e, circumflex accent
ë ë &euml; small e, umlaut mark
ì ì &igrave; small i, grave accent
í í &iacute; small i, acute accent
î î &icirc; small i, circumflex accent
ï ï &iuml; small i, umlaut mark
ð ð &eth; small eth, Icelandic
ñ ñ &ntilde; small n, tilde
ò ò &ograve; small o, grave accent
ó ó &oacute; small o, acute accent
ô ô &ocirc; small o, circumflex accent
õ õ &otilde; small o, tilde
ö ö &ouml; small o, umlaut mark
ø ø &oslash; small o, slash
ù ù &ugrave; small u, grave accent
ú ú &uacute; small u, acute accent
û û &ucirc; small u, circumflex accent
ü ü &uuml; small u, umlaut mark
ý ý &yacute; small y, acute accent
þ þ &thorn; small thorn, Icelandic
ÿ ÿ &yuml; small y, umlaut mark

HTML ASCII Reference

The ASCII character-set is used to send information between computers on the Internet.


The ASCII Character Set

ASCII stands for the “American Standard Code for Information Interchange”.  It was designed in the early 60’s, as a standard character-set for computers and hardware devices like teleprinters and tapedrives.

ASCII is a 7-bit character set containing 128 characters.

It contains the numbers from 0-9, the uppercase and lowercase English letters from A to Z, and some special characters.

The character-sets used in modern computers, HTML, and Internet are all based on ASCII.

The following table lists the 128 ASCII characters and their equivalent HTML entity codes.


ASCII Printable Characters

ASCII Character HTML Entity Code Description
space
! ! exclamation mark
" quotation mark
# # number sign
$ $ dollar sign
% % percent sign
& & ampersand
' apostrophe
( ( left parenthesis
) ) right parenthesis
* * asterisk
+ + plus sign
, , comma
- hyphen
. . period
/ / slash
0 0 digit 0
1 1 digit 1
2 2 digit 2
3 3 digit 3
4 4 digit 4
5 5 digit 5
6 6 digit 6
7 7 digit 7
8 8 digit 8
9 9 digit 9
: : colon
; ; semicolon
< < less-than
= = equals-to
> > greater-than
? ? question mark
@ @ at sign
A A uppercase A
B B uppercase B
C C uppercase C
D D uppercase D
E E uppercase E
F F uppercase F
G G uppercase G
H H uppercase H
I I uppercase I
J J uppercase J
K K uppercase K
L L uppercase L
M M uppercase M
N N uppercase N
O O uppercase O
P P uppercase P
Q Q uppercase Q
R R uppercase R
S S uppercase S
T T uppercase T
U U uppercase U
V V uppercase V
W W uppercase W
X X uppercase X
Y Y uppercase Y
Z Z uppercase Z
[ [ left square bracket
\ \ backslash
] ] right square bracket
^ ^ caret
_ _ underscore
` ` grave accent
a a lowercase a
b b lowercase b
c c lowercase c
d d lowercase d
e e lowercase e
f f lowercase f
g g lowercase g
h h lowercase h
i i lowercase i
j j lowercase j
k k lowercase k
l l lowercase l
m m lowercase m
n n lowercase n
o o lowercase o
p p lowercase p
q q lowercase q
r r lowercase r
s s lowercase s
t t lowercase t
u u lowercase u
v v lowercase v
w w lowercase w
x x lowercase x
y y lowercase y
z z lowercase z
{ { left curly brace
| | vertical bar
} } right curly brace
~ ~ tilde

ASCII Device Control Characters

The ASCII device control characters were originally designed to control hardware devices.

Control characters have nothing to do inside an HTML document.

ASCII Character HTML Entity Code Description
NUL 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 horizontal tab
LF line feed
VT &#11; vertical tab
FF &#12; form feed
CR 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
DEL  delete (rubout)

Previous Older Entries