1

I am trying to convert the string, representing a Unicode code point, Ex. '03A9', into the corresponding unicode character, Ex. Ω (Greek Omega, U+03A9). The code point is meant to be able to vary so I cannot hard code the value. Is there any way this can be done?

Londala
  • 95
  • 5

1 Answers1

2

Try:-

>> chr(int("03A9",  base=16)) 
Vasu Deo.S
  • 1,820
  • 1
  • 11
  • 23