unicodedata
Stdlib — TextPython 2.0+Intermediate
Access to the Unicode Character Database
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import unicodedata print(f"Module: unicodedata") print(f"Contents: {dir(unicodedata)[:10]}")
The unicodedata module is part of Python's standard library. Access to the Unicode Character Database.
Try in PlaygroundTags
stdlibstringtext-processing