Status: New
Owner: ----

New issue 2303 by [email protected]: korean language is broken...
http://code.google.com/p/v8/issues/detail?id=2303

There is following js code

function test()
{
return "가나다라마바사"; // "가나다라마바사" is just a korean language.
}

test();

Following is to compile and run js code.

Handle<Script> script = Script::Compile(source);

Handle<Value> result = script->Run();

String::AsciiValue ascii(result);
printf("%s\n", *ascii);

ascii is not "가나다라마바사". How can I get korean language normally?

String::Utf8Value has the same result.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to