Jaseci-Labs/jaclang

[FEATURE] Support Emoji Rendering in Jac Language

Closed this issue · 0 comments

Jac encounters rendering issues with emojis, resulting in garbled characters or UnicodeDecodeError when printing.
We need to address this to ensure emojis are displayed correctly in strings and console output, enhancing user experience and code integration.

with entry{
    print("Hello, World!😀"); 
    #current output is Hello, World!ðŸËâ¬
    # expected output is Hello, World!😀



    print('Hello, World!🌍');
    #current it generate UnicodeDecodeError 
    #expected output is Hello, World!🌍
}

image