Skip to content

Instantly share code, notes, and snippets.

@dinocarl
Created September 30, 2014 15:22
Show Gist options
  • Save dinocarl/8e05413c220a5f6e42d9 to your computer and use it in GitHub Desktop.
Save dinocarl/8e05413c220a5f6e42d9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@function char-from-code($iso-char) {
$escapeworkaround: "\"\\#{$iso-char}\"";
@return unquote($escapeworkaround);
}
.test {
content: char-from-code(83);
}
@mixin icon ($name, $code) {
$withslash: "\"\\#{$code}\"";
.#{$name}:before {
content: unquote($withslash);
}
}
@include icon('test', '4556');
.test {
content: "\83";
}
.test:before {
content: "\4556";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment