A: 

I'm not clear on what exactly you're trying to do; maybe something like this?

// set the default value of yourTextField
yourTextField.defaultValue = '\u00AE';

// or set the actual value of yourTextField
yourTextField.Value = '\u00AE';
LukeH
i was not using Unicode characters , i overlooked this and was tryin with as in html , got it now
kantu