I have a form and I want that form's input fields should accept only UTF-8 character.I have no idea how can i achieve this.Following is my html form .Any help !! Thanks in advance..
<form action="" method="post" id="myform">
<fieldset id="address">
<div class="required">
<label for="firstName">
<span class="required-indicator">* </span>
<span>First Name</span>
</label>
<input class="input-text required" id="firstName" type="text" name="billto_firstname" value="" maxlength="50">
</div>
<div class="required">
<label for="lastName">
<span class="required-indicator">* </span>
<span>Last Name</span>
</label>
<input class="input-text required" id="lastName" type="text" name="billto_lastname" value="" maxlength="50">
</div>
<div class="required">
<label for="address1">
<span class="required-indicator">* </span>
<span>Address 1</span>
</label>
<input class="required" id="address1" type="text" name="billto_address1" value="" maxlength="50">
</div>
</fieldset>
<fieldset>
<div class="row-button">
<button class="continue-button" type="submit" name="submit-form" onclick="this.submit()" value="Continue"><span>Continue </span></button>
</div>
</fieldset>
</form>