I need to write CSS to assemble an icon font using the flaticon site . I am developing using MAC from 10.10 and cannot find any way to get a unique Unicode value that I need to insert into my CSS
.font-icon-pencil:before {
content: "\e038";
}
How can I read the contents of a font file to get the icon codes in this custom font?
source
share