What Are The Css Specifications For Character Encoding Of Stylesheets?
Answer»
First it checks for Unicode BYTE, next @charset declaration and then RUBY string encoding.
Next if nothing is SET, then it considers charset encoding as UTF-8.
Determine character encoding explicitly by USING @charset declaration. Just use "@charset encoding NAME" at the beginning of the stylesheet and SASS will assume that this is the given character encoding.
If output file of SASS contains non ASCII characters, then it will use the @charset declaration.