In a situation where we have a dictionary mapping and want to use the mapping to replace a particular string we can use the below code to do the same.
Have a look at below code:
import re
my_dict = {
"\u0c1C" : "ja",
"\u0c15" : "ka"
}
string = "కరజ"
for unicode, roman in my_dict.items():
string = string.replace(unicode, roman)
print(string
)
The above code will replace the string from the dictionary. Note that the dictionary has unicode code points that are mapped to specific values. This code will be useful for natural language processing when we deal with unicode range points.