Created
December 10, 2011 17:49
-
-
Save yuxel/1455747 to your computer and use it in GitHub Desktop.
utf9
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
/* bu calismayacaktir */ | |
@charset "ISO-8859-1"; | |
#sonsuzdöngü {border:1px solid red; content: "burayı utf-8 karakterlerle değiştiriyorum üğçıİ"} |
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
@charset "UTF-8"; | |
#sonsuzdöngü {border:1px solid red; content: "burayı utf-8 karakterlerle değiştiriyorum üğçıİ"} |
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
<!DOCTYPE html> | |
<html lang="tr"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>utf-8</title> | |
<link rel="stylesheet" href="foo.css" type="text/css" /> | |
</head> | |
<body> | |
<div id="sonsuzdöngü"> <!-- ö ve ü karakterleri var --> | |
burası css ile değişecek | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment