Created
September 30, 2014 15:35
-
-
Save dinocarl/44eb0fe99d946394d5e1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.test { | |
content: "\83"; | |
} | |
.underthehood { | |
content: '"\\"'; | |
content: "\"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment