In Javascript I can type '\u00A3' to get a character using its char code. I can do this programatically to with String.fromCharCode(parseInt('00A3', 16)).
But I can't find a way to do the same for a control character. I can type them in my source code but I want a way to generate them in code.