Skip to content

Instantly share code, notes, and snippets.

@dinocarl
Created September 30, 2014 15:35
Show Gist options
  • Save dinocarl/44eb0fe99d946394d5e1 to your computer and use it in GitHub Desktop.
Save dinocarl/44eb0fe99d946394d5e1 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) {
@return unquote('\"\\#{$iso-char}\"');
}
.test {
content: char-from-code(83);
}
// further exploration of this issue
$quotedform: '\"\\\"';
$unquotedform: unquote($quotedform);
.underthehood {
content: $quotedform;
content: $unquotedform;
}
.test {
content: "\83";
}
.underthehood {
content: '"\\"';
content: "\";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment