Python Program To Find ASCII Value Of Character - Programiz
To understand this example, you should have the knowledge of the following Python programming topics:
- Python Basic Input and Output
- Python Programming Built-in Functions
ASCII stands for American Standard Code for Information Interchange.
It is a numeric value given to different characters and symbols, for computers to store and manipulate. For example, the ASCII value of the letter 'A' is 65.
Source Code
# Program to find the ASCII value of the given character c = 'p' print("The ASCII value of '" + c + "' is", ord(c))Output
The ASCII value of 'p' is 112Note: To test this program for other characters, change the character assigned to the c variable.
Here we have used ord() function to convert a character to an integer (ASCII value). This function returns the Unicode code point of that character.
Unicode is also an encoding technique that provides a unique number to a character. While ASCII only encodes 128 characters, the current Unicode has more than 100,000 characters from hundreds of scripts.
Your turn: Modify the code above to get characters from their corresponding ASCII values using the chr() function as shown below.
>>> chr(65) 'A' >>> chr(120) 'x' >>> chr(ord('S') + 1) 'T'Here, ord() and chr() are built-in functions.
Also Read:
- Python ascii()
Tag » Code Ascii 65
-
Standard ASCII Characters
-
ASCII Codes - Table Of Ascii Characters And Symbols
-
Capital Letter A - ASCII Code
-
ASCII Characters From 33 To 126 - IBM
-
How Is A The Number 65 In ASCII Code? - Quora
-
ASCII Table
-
Ascii Decimal And Hexadecimal Conversion Table
-
Reference ASCII Table - Character Codes In Decimal, Hexadecimal ...
-
Given That As Code Point In ASCII Is 65 And As Code Point Is 97 What
-
ASCII Code Table
-
ASCII Table -- Printable Characters
-
Les ASCII De 0 à 127/La Table ASCII - Wikilivres
-
What Is A ASCII Code