It is simple to convert CJK’s character in utf8 format with python:
print("你".encode("utf8"))
b'xe4xbdxa0'
The character 你
(means you in English) ,whose utf8 encoding is xe4xbdxa0
,How can get the result with VBA?
It is simple to convert CJK’s character in utf8 format with python:
print("你".encode("utf8"))
b'xe4xbdxa0'
The character 你
(means you in English) ,whose utf8 encoding is xe4xbdxa0
,How can get the result with VBA?