Hi, How to create a Unicode string in Python
2 Likes
- Can you try
string_var_name.encode("utf-8")
orstring_var_name.decode("utf-8")
- More examples are available here Unicode HOWTO — Python 3.13.1 documentation
Hope it helps
3 Likes