Play Games

Search This Blog

Saturday, August 24, 2019

How to display heart symbol in visualforce page salesforce


How to display heart symbol in visualforce page salesforce

We can use the ❤ ASCII code to display heart symbol.

Sample VF Code:
<apex:page >
    <html>
    <head>
    </head>
    <body>
    <br/> 
     <span style="font-size:1000%;color:red;">&#10084;</span>
    </body>
    </html>
</apex:page>

Output:

No comments:

Post a Comment