You are on page 1of 26

Introduction to ASCII

Introduction to Computer Programming

What is ASCII
American

Standard Code for Information Interchange An ordering scheme that organizes characters into a numerical arrangement Standard ASCII

Values 0 127

Extended

ASCII

Values 128 - 255

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart


Special Character \r \n \t \a \f \v \b \0 ASCII Value Carriage Return New line Feed Horizontal Tab Bell New Page Form feed Vertical tab Backspace NULL 13 10 9 7 12 11 8 0

Decimal Value

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W

ASCII Decimal 87

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

66

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i

66
105

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i t

66
105 116

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i t .

66
105 116 46

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i t . n

66
105 116 46 110

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i t . n e

66
105 116 46 110 101

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Standard ASCII Chart

Character W i

ASCII Decimal 87 105

B
i t . n e t

66
105 116 46 110 101 116

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

Character W i B i t . n e t

ASCII Decimal 87 105 66 105 116 46 110 101 116

8-Bit Binary 01010111 01101001 01000010 01101001 01110100 00101110 01101110 01100101 01110100

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

WiBit.net in Binary
Character W i B i t . n e t ASCII Decimal 87 105 66 105 116 46 110 101 116 8-Bit Binary 01010111 01101001 01000010 01101001 01110100 00101110 01101110 01100101 01110100

010101110110100101000010011010010111010000101110011011100110010101110100

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\x0AThis is the second line This is the first line using Windows new line characters\x0D\x0AThis is the second line This is page 1\x0CThis is page 2\x0CThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\x0AThis is the second line This is the first line using Windows new line characters\x0D\x0AThis is the second line This is page 1\x0CThis is page 2\x0CThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\x0AThis is the second line This is the first line using Windows new line characters\x0D\x0AThis is the second line This is page 1\x0CThis is page 2\x0CThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\x0AThis is the second line This is the first line using Windows new line characters\x0D\x0AThis is the second line This is page 1\x0CThis is page 2\x0CThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\x0AThis is the second line This is the first line using Windows new line characters\x0D\x0AThis is the second line This is page 1\x0CThis is page 2\x0CThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

Introduction to Computer Programming

String
A series

of ASCII character values combined together

Hello!

How are you today? What a lovely day to program! This is the first line\nThis is the second line This is the first line using Windows new line characters\r\nThis is the second line This is page 1\fThis is page 2\fThis is page 3

Copyright BlueSignet LLC. All rights reserved.

WiBit.Net

The End?

You might also like