chr() function returns a string representing a character whose Unicode code point is the integer specified.
chr() Example:
Python3
num = 97
print("ASCII Value of 97 is: ", chr(num))
OutputASCII Value of 97 is: a
Python chr() Function Syntax
chr(num)
Parameters
- num: an Unicode code integer
Return: Returns str
How to Use Python chr() Function
chr() function in Python is very easy to use, chr() returns string with a Unicode code equal to the integer specified. Let's look at example for better understanding.
Example
Python3
# chr() example
print(chr(69))
More Python chr() Function Examples
Here, we are going to use Python chr() methods to get the string of Unicode.
1. chr() in Python
In this example, we are printing Geeks for Geeks with the chr() in Python.
Python3
# Python program to illustrate
# chr() builtin function
print(chr(71), chr(101),
chr(101), chr(107),
chr(115), chr(32),
chr(102), chr(111),
chr(114),chr(32),
chr(71), chr(101),
chr(101), chr(107),
chr(115))
OutputG e e k s f o r G e e k s
2. Get the ASCII Value of Integers in Python
In this example, we are Printing characters for each Unicode integer in the numbers list.
Python3
# Python program to illustrate
# chr() builtin function
numbers = [17, 38, 79]
for number in numbers:
# Convert ASCII-based number to character.
letter = chr(number)
print("Character of ASCII value", number, "is ", letter)
OutputCharacter of ASCII value 17 is
Character of ASCII value 38 is &
Character of ASCII value 79 is O
3. Python chr() to Print Currency Symbol
In this example, we are printing Euro with the chr() in Python.
Python3
unicode_value = 8364
character = chr(unicode_value)
print(character)
4. Python Program to Print Emojis
In this example, we are printing smiley with the chr() in Python.
Python3
unicode_value = 128516
character = chr(unicode_value)
print(character)
5. Print ASCII Values From 0 to 255 In Python
In this example, we are generating a sequence of integers from 0 to 255.
Python3
unicode_values = range(256)
characters = [chr(value) for value in unicode_values]
print(characters)
Output['\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07', '\x08', '\t', '\n', '\x0b', '\x0c', '\r', '\x0e', '\x0f', '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17', '\x18', '\x19...
6. What happens if we give something out of range?
Python3
# Python program to illustrate
# chr() builtin function
# if value given is
# out of range
# Convert ASCII-based number to character
print(chr(-400))
Output :
No Output
We won't get any output and the compiler will throw an error:
Hangup (SIGHUP)
Traceback (most recent call last):
File "Solution.py", line 7, in <module>
print(chr(-400))
ValueError: chr() arg not in range(0x110000)
In this article we discussed the working, uses and examples of Python chr() function. chr() function is very easy and fun to use. It is very useful when working with Unicode encoded data.
Hope you learnt about Python chr() with different examples
Similar Reads
Python Built in Functions
Python is the most popular programming language created by Guido van Rossum in 1991. It is used for system scripting, software development, and web development (server-side). Web applications can be developed on a server using Python. Workflows can be made with Python and other technologies. Databas
6 min read
abs() in Python
The Python abs() function return the absolute value. The absolute value of any number is always positive it removes the negative sign of a number in Python. Example:Input: -29Output: 29Python abs() Function SyntaxThe abs() function in Python has the following syntax:Syntax: abs(number)number: Intege
3 min read
Python - all() function
The Python all() function returns true if all the elements of a given iterable (List, Dictionary, Tuple, set, etc.) are True otherwise it returns False. It also returns True if the iterable object is empty. Sometimes while working on some code if we want to ensure that user has not entered a False v
3 min read
Python any() function
Python any() function returns True if any of the elements of a given iterable( List, Dictionary, Tuple, set, etc) are True else it returns False. Example Input: [True, False, False]Output: True Input: [False, False, False]Output: FalsePython any() Function Syntaxany() function in Python has the foll
5 min read
ascii() in Python
Python ascii() function returns a string containing a printable representation of an object and escapes the non-ASCII characters in the string using \x, \u or \U escapes. It's a built-in function that takes one argument and returns a string that represents the object using only ASCII characters. Exa
3 min read
bin() in Python
Python bin() function returns the binary string of a given integer. bin() function is used to convert integer to binary string. In this article, we will learn more about Python bin() function. Example In this example, we are using the bin() function to convert integer to binary string. Python3 x = b
2 min read
bool() in Python
In Python, bool() is a built-in function that is used to convert a value to a Boolean (i.e., True or False). The Boolean data type represents truth values and is a fundamental concept in programming, often used in conditional statements, loops and logical operations.bool() function evaluates the tru
3 min read
Python bytes() method
bytes() method in Python is used to create a sequence of bytes. In this article, we will check How bytes() methods works in Python. Pythona = "geeks" # UTF-8 encoding is used b = bytes(a, 'utf-8') print(b)Outputb'geeks' Table of Contentbytes() Method SyntaxUsing Custom EncodingConvert String to Byte
3 min read
chr() Function in Python
chr() function returns a string representing a character whose Unicode code point is the integer specified. chr() Example: Python3 num = 97 print("ASCII Value of 97 is: ", chr(num)) OutputASCII Value of 97 is: a Python chr() Function Syntaxchr(num) Parametersnum: an Unicode code integerRet
3 min read
Python dict() Function
dict() function in Python is a built-in constructor used to create dictionaries. A dictionary is a mutable, unordered collection of key-value pairs, where each key is unique. The dict() function provides a flexible way to initialize dictionaries from various data structures.Example:Pythond=dict(One
4 min read