Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get the unicode icon value from a custom font

I need to write a CSS for an icon font build using the site flaticon. I develop using a MAC with 10.10 and can't find any way to retrieve a single character Unicode value that I need to insert inside my CSS

.font-icon-pencil:before {
    content: "\e038";
}

How can I read the contents of a font file, to get the icon codes within that custom-made font?

like image 708
al404IT Avatar asked Dec 02 '14 10:12

al404IT


1 Answers

https://fontdrop.info : Very useful website where you can see all the unicode codes at once

enter image description here

like image 73
warfish Avatar answered Oct 21 '22 21:10

warfish