How to print ★ symbol on SSRS report

While Crystal reports can handle this, we are transitioning to SSRS and we need to display it on our work travelers to comply with our suppliers. Are there alternatives to display a black star on SSRS, that can still be pulled from a text field (image not possible)?

I haven’t been able to find unicode options other than this ★ (U+2605).

When the report prints, the empty square indicating “no symbol” is displayed.

can you use an asterisk and keep it simple?

1 Like

Is this a static or dynamic field? If it’s static, can you copy the symbol and paste?

Most likely, the initial issue is that the font you are using doesnt have a character for that symbol.

1 Like

Your font needs to be Segoe UI Symbol
image

Then it works fine

image

2 Likes

Have you tried the CharW function?

=   ChrW(9733) + "  This Line has a star!"

Edit

fixed function name and entered unicode value as decimal

image

Gives you the “square” when you run it.

image

But switching to Print Layout shows

image

One last thing … There is an issue where the rendered document will display the star, but if you copy and paste that text to another document, it loses it.

Wow, thank you everyone for the swift responses! I believe Jose’s will work best for us as the star is embedded among other text.

@Chris_Conn recommends you save it as a .jpg then you can embed the image in the report wherever a star is needed. :stuck_out_tongue: Chris!! Where have you been, busy man!

1 Like

Oh just hanging out…

1 Like

3 Likes