2

I don't want to use CSS, I just want to plainly insert a tick symbol from the character map.

cjm2671
  • 18,348
  • 31
  • 102
  • 161

3 Answers3

9

You can copy the following symbol and paste it to your Buttons value.

like this

<input type="button" value="✓ Test" />
dknaack
  • 60,192
  • 27
  • 155
  • 202
2

If you want ✓ symbol then simply use &#10003; html code in span. It will work in most of the browser.

Ranjit Singh
  • 3,715
  • 1
  • 21
  • 35
0

If you are using Font Awesome, just add <i class="icon-check-sign"></i> icon-check-sign

Mandlaness
  • 31
  • 4