If you want to achieve this, you can make use of ng-bind. Here is an example code snippet for your reference.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8>
<title>Sample</title>
<script src="//code.angularjs.org/snapshot/angular.min.js"></script>
<script>
angular.module('bindExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.name = 'OVERVIEW'+localStorage.getItem("shape");
}]);
</script>
</head>
<body ng-app="bindExample">
<div ng-controller="ExampleController">
<span ng-bind="name">OVERVIEW</span>
</div>
</body>
</html>