$('#emailsubmit').click(function(){
var data = CKEDITOR.instances.message.getData();
data=data.replace(/\"/g,'"');
data=data.replace(/ /g,' ');
data=data.replace(/©/g,'©');
$('#message_text').val(data);
});
This is the jquery function for replacing the special character code by special character.And I set it manually and I want set automatically ,how this could be done ?