Convert from English to Chinese Character
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
evinothk
7 - Meteor
‎11-29-2021
02:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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?
Labels:
- Labels:
- Workflow
1 REPLY 1
16 - Nebula
‎11-29-2021
02:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
