Int value to Unicode character

I have int value V = 49 (DEC). How to convert it to Unicode char = \u0031 inside my rule?

var char ch = V as char

But…
(182 as char).toString.getBytes().toString = [-74]
Why?