Problem Statement:
The goal of this blog post is to share a quick tip on SQL Server Reporting Services (SSRS): How to add Trademark TM special symbol in Text?
Solution:
In SSRS, you can put following code in the Expressions:
[code language=”SQL”]
="Text"& ChrW(8482) &" Dashboard"
[/code]