contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = "\n\r\'\"\\";
return escapeCharacters;
}
// ----