1 2 3 4 5 6 7 8 9
contract test { function f() public pure returns (string memory) { return "hello world"; } function g() public pure returns (string memory) { return unicode"hello world"; } } // ----