Unicodedata – Unicode Database in Python
Unicode Character Database (UCD) is defined by Unicode Standard Annex #44 which defines the character properties for all unicode characters. This module provides access to UCD and uses the same symbols and names as defined by the Unicode Character Database.
Functions defined by the module :
- unicodedata.lookup(name)
This function looks up for the character by name. If a character with the given name is found in the database, then, the corresponding character is returned otherwise Keyerror is raised.
Example :
importunicodedataprintunicodedata.lookup('LEFT CURLY BRACKET')printunicodedata.lookup('RIGHT CURLY BRACKET')printunicodedata.lookup('ASTERISK')# gives error as there is# no symbol called ASTER# print unicodedata.lookup('ASTER')chevron_rightfilter_noneOutput :
{ } * - unicodedata.name(chr[, default])
This function returns the name assigned to the given character as a string. If no name is defined, default is returned by the function otherwise ValueError is raised if name is not given.Example :
importunicodedataprintunicodedata.name(u'/')printunicodedata.name(u'|')printunicodedata.name(u':')chevron_rightfilter_noneOutput :
SOLIDUS VERTICAL LINE COLON
- unicodedata.decimal(chr[, default])
This function returns the decimal value assigned to the given character as integer. If no value is defined, default is returned by the function otherwise ValueError is raised if value is not given.Example :
importunicodedataprintunicodedata.decimal(u'9')printunicodedata.decimal(u'a')chevron_rightfilter_noneOutput :
9 Traceback (most recent call last): File "7e736755dd176cd0169eeea6f5d32057.py", line 4, in print unicodedata.decimal(u'a') ValueError: not a decimal - unicodedata.digit(chr[, default])
This function returns the digit value assigned to the given character as integer. If no value is defined, default is returned by the function otherwise ValueError is raised if value is not given.Example :
importunicodedataprintunicodedata.decimal(u'9')printunicodedata.decimal(u'143')chevron_rightfilter_noneOutput :
9 Traceback (most recent call last): File "ad47ae996380a777426cc1431ec4a8cd.py", line 4, in print unicodedata.decimal(u'143') TypeError: need a single Unicode character as parameter - unicodedata.numeric(chr[, default])
This function returns the numeric value assigned to the given character as integer. If no value is defined, default is returned by the function otherwise ValueError is raised if value is not given.
Example :
importunicodedataprintunicodedata.decimal(u'9')printunicodedata.decimal(u'143')chevron_rightfilter_noneOutput :
9 Traceback (most recent call last): File "ad47ae996380a777426cc1431ec4a8cd.py", line 4, in print unicodedata.decimal(u'143') TypeError: need a single Unicode character as parameter - unicodedata.category(chr)
This function returns the general category assigned to the given character as string. For example, it returns ‘L’ for letter and ‘u’ for uppercase.Example :
importunicodedataprintunicodedata.category(u'A')printunicodedata.category(u'b')chevron_rightfilter_noneOutput :
Lu Ll
- unicodedata.bidirectional(chr)
This function returns the bidirectional class assigned to the given character as string. For example, it returns ‘A’ for arabic and ‘N’ for number. An empty string is returned by this function if no such value is defined.Example :
importunicodedataprintunicodedata.bidirectional(u'\u0660')chevron_rightfilter_noneOutput :
AN
- unicodedata.normalize(form, unistr)
This function returns the normal form form for the Unicode string unistr. Valid values for form are ‘NFC’, ‘NFKC’, ‘NFD’, and ‘NFKD’.Example :
fromunicodedataimportnormalizeprint'%r'%normalize('NFD', u'\u00C7')print'%r'%normalize('NFC', u'C\u0327')print'%r'%normalize('NFKD', u'\u2460')chevron_rightfilter_noneOutput :
u'C\u0327' u'\xc7' u'1'
This article is contributed by Aditi Gupta. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Python | Joining unicode list elements
- Oracle Database Connection in Python
- Inserting variables to database table using Python
- Unicode Strings Passing to C Libraries
- Important differences between Python 2.x and Python 3.x with examples
- Python | Sort Python Dictionaries by Key or Value
- Python | Set 4 (Dictionary, Keywords in Python)
- Use of min() and max() in Python
- gcd() in Python
- Python Set | pop()
- SQL using Python | Set 1
- pow() in Python
- try and except in Python
- Python | a += b is not always a = a + b
- abs() in Python



