Angular: Empty Fiddle
http://angularjs.org/
HTML
<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="MyCtrl">
{{name}}
</div>
JavaScript
var myApp = angular.module('myApp',[]);
//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});
function MyCtrl($scope) {
var str ='Hello \u0153';
var rawStr = String.raw`Hello \u0153`;
//replace single backslash with 'some', but since unicode is already converted to the corresponding character, backslash is no more present in the string
$scope.name = rawStr;
console.log($scope.name);
$scope.name = str.replace(/\\/,'some');
console.log($scope.name);
//$scope.name = str.replace('>','some');
}