Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6377 - StringUtf8 literal entity name is missing a trailing semicolon

6377   StringUtf8 literal entity name is missing a trailing semicolon

This error occurs if you omit a trailing semicolon from a character entity in the definition of a StringUtf8 literal, as shown in the following code fragment example.

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

Action

Add the missing semicolon at the end of the character entity.