Solidity - 字符串中的无效字符

Solidity - Invalid character in string

我正在研究 Solidity ERC20 智能合约,它需要来自拉丁国家的措辞。 我正在在线使用 Remix ETH IDE

如何在编译器不警告我的情况下添加特殊字符?

目前:

string public responsavel = "Estado de SÃO PAULO Coçar";

此错误为:ParserError:Invalid character in string.

基本上它不喜欢 çÃ,但我需要这些以及未来的 éô 字符等。

提前致谢

您可以使用 UTF-8 序列

string public responsavel = "Estado de S\xC3\x83O PAULO Co\xC3\xA7ar";