Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6376 - StringUtf8 literal text contains a non-US-ASCII character

6376   StringUtf8 literal text contains a non-US-ASCII character

Cause

This error occurs if you attempt to include non-US-ASCII characters in the definition of a StringUtf8 literal, as shown in the following code fragment example.

str8 := @"Copyright ©";        //  correct is   str8 := @"Copyright ©";

Action

Replace the non-US-ASCII characters with appropriate character entities or escaped decimal or hexadecimal Unicode code points.