2020-07-13 17:23:42 +00:00
|
|
|
contract C {
|
|
|
|
function oneByteUTF8() public pure returns (string memory) {
|
|
|
|
return "aaa\u0024aaa"; // usdollar
|
|
|
|
}
|
|
|
|
|
|
|
|
function twoBytesUTF8() public pure returns (string memory) {
|
|
|
|
return "aaa\u00A2aaa"; // cent
|
|
|
|
}
|
|
|
|
|
|
|
|
function threeBytesUTF8() public pure returns (string memory) {
|
|
|
|
return "aaa\u20ACaaa"; // euro
|
|
|
|
}
|
|
|
|
|
|
|
|
function combined() public pure returns (string memory) {
|
|
|
|
return "\u0024\u00A2\u20AC";
|
|
|
|
}
|
|
|
|
}
|
2020-07-20 13:06:45 +00:00
|
|
|
// ====
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2020-07-13 17:23:42 +00:00
|
|
|
// ----
|
|
|
|
// oneByteUTF8() -> 0x20, 7, "aaa$aaa"
|
|
|
|
// twoBytesUTF8() -> 0x20, 8, "aaa\xc2\xa2aaa"
|
|
|
|
// threeBytesUTF8() -> 0x20, 9, "aaa\xe2\x82\xacaaa"
|
|
|
|
// combined() -> 0x20, 6, "$\xc2\xa2\xe2\x82\xac"
|