I don't want to use CSS, I just want to plainly insert a tick symbol from the character map.
Asked
Active
Viewed 1.9k times
3 Answers
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
-
2Make sure your page is saved and served as UTF-8, or another encoding that includes the tick character. – Paul D. Waite Nov 15 '11 at 15:08
-
2
If you want ✓ symbol then simply use ✓
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