when my message contains English & Chinese & Japanese ,I want to translate to Chinese ,but it doesn't work, hope you help me ,thx - microsoft-translator

my message for test is:
{"message":"你好吗how are you社会の残りの部分",}
after translate into Chinese what I get is:
{Data":{"messageLanguage":"ja","translateLast":"你好嗎霍 are you 社會的其餘部分"}}

Related

Norwegian characters not rendering in a Quarto Book

I am trying to render a Quarto book from RStudio and the Norwegian letters (Å,å,Ø,ø, Æ,æ) do not render correctly. The book is here. Does anyone have any ideas how to make the letters render correctly (all the text in the book will eventually be written in Norwegian).
In the -quarto.yml I have put "lang: no" and my locale is set to Norwegian Bokmål.

How to change JSON non-english non-text to "proper" non-english letters?

enter image description here
I scraped a non-English tweet, and I got a JSON file.
But the problem is that it is all written as this weird code.
\uc774\uc7ac\uba85 \ub300\ud45c\ub2d8\ud83d\udc99\n\ubd80\uc0b0 \uc88c\uccad\ub144 \uc601\uc0c1 \uaf2d \ub2e4\uc2dc \ubd10\uc8fc\uc138\uc694\ud83e\udef6\
How can I transfer this to actual non-English texts?

Save ios smiley in database mysql

i have a small problem, in fact in one of my application, user can add a comment and if he activate the smiley keyBoard he can insert a smiley but in database it saved something like this ' ŸŽðŸ¶ðŸ‘', and in iphone it appear like this  , its normal :) but have you a solution to retrieve this smiley in my app ( encode ,decode .. ) ?
thank you .
The characters you're describing here are from the Emoji character set of UTF-8. Here's the documentation you need, along with a tutorial for a related encoding problem.

how can I use special characters in the facebook wall post?

I'm using the Graph API to make a post in the users wall. My post is in spanish and I haven't been able to post characters like á, é, ¡. I have tried using htmlspecialcharacters() and htmlentities() but they don't work. I get something like �Hazte t� tambi�n miembro. Could you please help me?
Try utf8 encoding your text string.
In PHP:
$encodedString = utf8_encode($theString);
JavaScript function found here:
http://farhadi.ir/downloads/utf8.js

html ascii code "not well formed" error

I'm working on a webpage in spanish an english, so I have to use special characters like á, é, etc.
For this i took this info of codes: http://www.ascii.cl/htmlcodes.htm
and I wrote a:
<h3>Energ&#237a;</h3>
but on the error console it says this: not well-formed I had it with no ; but then I put it, but the error is still there, any ideas?
Thanks!
You need to flip the semicolon and the "a":
<h3>Energía</h3>