Reputation: 2549
I have this issue, I have a font-set without documentation (icons as a font). I want to use them but I have to somehow know what are specific codes for particular symbols. Is there a way how can I retrieve it?
For example to use it as in the below example:
.icon-box {
&:before {
content: "\e088";
}
}
EDIT
We have the following files: *.eot / *.svg / *.ttf / *.woff
Upvotes: 0
Views: 657
Reputation: 201538
When you have an icon font without documentation, you can
Upvotes: 1