Home > OS >  Bash Script - Map ASCII Characters to Corresponding Unicode Characters in Defined Strings
Bash Script - Map ASCII Characters to Corresponding Unicode Characters in Defined Strings

Time:10-19

I'm trying to map a fixed set of ASCII characters to a fixed set of Unicode characters. I.e., for each digit 0-9, I want to get the circled digit equivalent.

mapFrom="0123456789"
mapTo="           
  • Related