In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Convert from English to Chinese Character

evinothk
7 - Meteor

Hello

 

I want to know how to  convert a text in English to Chinese Character?

 

For Example - The word INVOICE- how to get equivalent Chinese Character?

1 REPLY 1
afv2688
16 - Nebula
16 - Nebula

Hello  @evinothk ,

 

Alteryx does not offer an inside method for translating words or paragraphs natively but you could do it easily by using a translator api for it. For example, you could use the deepl api which is free to request the conversion directly:

 

Example Request

POST /v2/translate?auth_key=[yourAuthKey]> HTTP/1.0
Host: api-free.deepl.com
User-Agent: YourApp
Accept: */*
Content-Length: [length]
Content-Type: application/x-www-form-urlencoded

auth_key=[yourAuthKey]&text=Hello, world&target_lang=DE

 

Regards

 

 

 

Labels
Top Solution Authors