Friday, September 5, 2025
HomeLanguagesHow to print Odia Characters and Numbers using Python?

How to print Odia Characters and Numbers using Python?

Odia(ଓଡ଼ିଆ) is an Indo-Aryan language spoken in the Indian state of Odisha. The Odia Script is developed from the Kalinga alphabet, one of the many descendants of the Brahmi script of ancient India. The earliest known example of Odia language, in the Kalinga script, dates from 1051.

Vowels:
ଅ ଆ ଇ ଈ ଉ ଊ ଋ ୠ ଏ ଐ ଓ ଔ

Consonants:
କ ଖ ଗ ଘ ଙ ଚ ଛ ଜ ଝ ଞ ଟ ଠ ଡ ଢ ଣ ତ ଥ ଦ ଧ ନ ପ ଫ ବ ଭ ମ ଯ ର ଲ ଳ ଶ ଷ ସ ହ ୟ ୱ

Numbers:
୦ ୧ ୨ ୩ ୪ ୫ ୬ ୭ ୮ ୯

Prerequisite

Before printing odia characters and numbers one has to install odia library. One can install odia library using pip command.

pip install odia

Printing odia characters using Python

One can print the odia vowels using odia.vowels() and using odia.consonants() can print odia consonants.
Example:




# Python program to print odia characters
  
# Import odia library
import odia
  
# Print vowels
print(odia.vowels)
  
# print consonants
print(odia.consonants)


Output:

[‘ଅ’, ‘ଆ’, ‘ଇ’, ‘ଈ’, ‘ଉ’, ‘ଊ’, ‘ଋ’, ‘ୠ’, ‘ଏ’, ‘ଐ’, ‘ଓ’, ‘ଔ’]
[‘କ’, ‘ଖ’, ‘ଗ’, ‘ଘ’, ‘ଙ’, ‘ଚ’, ‘ଛ’, ‘ଜ’, ‘ଝ’, ‘ଞ’, ‘ଟ’, ‘ଠ’, ‘ଡ’, ‘ଢ’, ‘ଣ’, ‘ତ’, ‘ଥ’, ‘ଦ’, ‘ଧ’, ‘ନ’, ‘ପ’, ‘ଫ’, ‘ବ’, ‘ଭ’, ‘ମ’, ‘ଯ’, ‘ୟ’, ‘ର’, ‘ଳ’, ‘ଲ’, ‘ଵ’, ‘ଶ’, ‘ଷ’, ‘ସ’, ‘ହ’, ‘କ୍ଷ’, ‘ଜ୍ଞ’]

Printing odia numbers using Python
One can print the odia numbers using odia.numbers().
Example:




# Python program to print odia numbers
  
# Import odia library
import odia
  
# Print numbers
print(odia.numbers)


Output:

[‘୦’, ‘୧’, ‘୨’, ‘୩’, ‘୪’, ‘୫’, ‘୬’, ‘୭’, ‘୮’, ‘୯’]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS