APIs & Integrations

Not applicable

Illegal unicode escape

I am trying to compile a java project but I get this error :java illegal Unicode Escape
https://imgur.com/a/XpU2D
https://imgur.com/a/6GPdb

0 Upvotes
1 Reply 1
Derek_Gervais
HubSpot Alumni
HubSpot Alumni

Illegal unicode escape

Hi @Basilis_greek_creato,

Looks like it might be treating the \u in \utils as the beginning of an escaped unicode character. You could probably get around that by adding a space in between the \ and the u, as recommended in this stack overflow topic:

Comment Illegal Unicode Sequences

java, unicode, commenting

0 Upvotes