I am using google's css framework materialize which is really nice.
This framework has its own select element which dynamically changes to ul.
I am also using the fontawesome icons css framework and my idea is to put an icon in the select as follows
<select name="note[type]">
<option value="1"><i class="fa fa-car"></i>Car</option>
</select>
But it does not display the icon on the other hand if i write: 
instead of the <i>
tag it gets displayed correctly (note that is not the actual code of the car icon).
So my question is: I fill the icons dynamically from the database, is there a way that from the icon class such as fa-car
you get the unicode character via php/javascript?
Thanks and Regards