mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			713 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			713 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| 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";
 | |
|     }
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // compileToEwasm: also
 | |
| // ----
 | |
| // 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"
 |