Congratulations to all the winners of April 2013, they have won INR 3400 cash and INR 20147 worth prizes !
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 21955 |  Welcome, Guest!   Register  Login
 Home > Forums > C# > How to write program for Swastik Symbol? ...
Hariinakoti

How to write program for Swastik Symbol?

Replies: 3 | Posted by: Hariinakoti on 8/9/2012 | Category: C# Forums | Views: 401 | Status: [Member] | Points: 10  


Hi ,
How to write program for Swastik Symbol in .net?

Thanks & Regards
Hari


Reply | Reply with attachment | Alert Moderator

 Responses below this adGet hundreds of .NET Tips and Tricks videos

 Replies

Sakthi.Singaravel
Sakthi.Singaravel  
Posted on: 8/9/2012 9:55:41 PM
Level: Silver | Status: [Member] | Points: 25

in ms word type 5350 and select it. now press Alt+X......
copy and paste it to .net..

Regards,
Singaravel M

Hariinakoti, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Hariinakoti
Hariinakoti  
Posted on: 8/10/2012 8:11:40 AM
Level: Starter | Status: [Member] | Points: 25

@Sakthi.
no need to write any code?

Thanks & Regards
Hari

Hariinakoti, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Satyapriyanayak
Satyapriyanayak  
Posted on: 1/24/2013 5:15:39 AM
Level: Bronze | Status: [Member] | Points: 25

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Swastika_symbol
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
char swastika = '\u5350';
MessageBox.Show(swastika.ToString());
}
}
}

Hariinakoti, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Reply - Please login to reply


Click here to login & reply

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/18/2013 6:21:19 AM