I'm building PDF's, and I need to print a string with special characters. For this I am constructing the string as follows (using iTextSharp
):
PdfPCell teste = new PdfPCell(new Phrase("<O meu texto> '\u20ac'", fontetexto));
Now what matters, my string is "<O meu texto> '\u20ac'"
, where '\u20ac'
has €
. I just want to print a password type point, as the following image shows:
I'm tired of looking for lists with special characters for C # / ASP MVC and I can not find any characters like / , [, ]
for example. How can I build the string with special characters?