I have tried to run this code
val c = 'a' //unicode for a
val d = '\141' //octal for a
val e = '"'
val f = '\'
But pops up an error when it tries to declare d variable
octal escape literals are unsupported: use \u0061 instead
val d = '\141' //octal for a