You need to sign in to do that
Don't have an account?

Special characters in Visualforce
I am trying to display '©' on visualforce.I am using outputtext. Its showing garbage values. I tried using escape = false, still cannot see exact symbol on visualforce page.
Is there any other tag which I can use to display special character ?
Is there any other tag which I can use to display special character ?
All Answers
! <apex:outputtext value='!' />
In your controller format the string value to something like this:
public String crMsg = '! Superduper Firm';
Then in VF:
<apex:outputtext value='{!crMsg}' />