[Bug] Error with Syntax highlighting when using string with "€"

Hello together,

the coloring and displaying of the syntax while using a expression like this is not working correclty:

{{15.5 + “€”}}

image

Its working but i got a bit confused that the code got replaced wrong and had no green highlight.

Self-Hosted with Docker
Version: 1.31.2

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hi @Bastian_Orth!

That’s interesting. I’ll share this with our engineering team to get their thoughts, but in the interim you can use the hexadecimal code to ensure syntax highlighting functions as desired.

{{15.5 + "\u20AC" }}

image

I hope this helps for now. Happy building!

1 Like

As @Ludwig said, just convert it into “Unicode escape sequence” i usually doing it with ChatGPT. All special characters should be treated same way with n8n expression. including Emojis.

2 Likes

Thanks for the hints.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.