This is the fun part from my tips and trick about create an inverted text on your facebook or twitter status. The only important part is in the following html script that will generate inverted text while you write the text on it. Once the inverted text has been generated, you can copy and paste the inverted text to your facebook or twitter, and you will get a unique writing style. Well, if you are a beginner in this html script you will see funny part of this. But if you are an expert for this, that’s not makes much sense for you. I just want to share the script instead for fun. Just follow the following instruction :
1. Open your Notepad
2. Copy and paste the HTML script below to your Notepad
3. Save it as HTML file. i.e : invertedscript.html , make sure when you save it you have to set the “Save as type” to “All files”.
4. Open your html file you just saved via browser, and you will see 2 text area. The top text area for the input text, and the bottom text area will be the output of inverted text.
5. Have a nice try!
Example :
“this is an inverted text”
output
“ʇxǝʇ pǝʇɹǝʌuı uɐ sı sıɥʇ”
<!– Script Begin –>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
<title>Genereate Inverted Text</title>
<style type=”text/css”>
textarea { font-family: “Arial Unicode MS”, terbalik }
</style>
<script language=”JavaScript”>
function flip() {
var result = flipString(document.f.original.value.toLowerCase());
document.f.flipped.value = result;
}
function flipString(aString) {
var last = aString.length – 1;
var result = new Array(aString.length)
for (var i = last; i >= 0; –i) {
var c = aString.charAt(i)
var r = flipTable[c]
result[last - i] = r != undefined ? r : c
}
return result.join(”)
}
var flipTable = {
a : ‘u0250′,
b : ‘q’,
c : ‘u0254′,
d : ‘p’,
e : ‘u01DD’,
f : ‘u025F’,
g : ‘u0183′,
h : ‘u0265′,
i : ‘u0131′,
j : ‘u027E’,
k : ‘u029E’,
//l : ‘u0283′,
m : ‘u026F’,
n : ‘u’,
r : ‘u0279′,
t : ‘u0287′,
v : ‘u028C’,
w : ‘u028D’,
y : ‘u028E’,
‘.’ : ‘u02D9′,
‘[' : ']‘,
‘(‘ : ‘)’,
‘{‘ : ‘}’,
‘?’ : ‘u00BF’,
‘!’ : ‘u00A1′,
“’” : ‘,’,
‘<’ : ‘>’,
‘_’ : ‘u203E’,
‘\’ : ‘/’,
‘;’ : ‘u061B’,
‘u203F’ : ‘u2040′,
‘u2045′ : ‘u2046′,
‘u2234′ : ‘u2235′
}
for (i in flipTable) {
flipTable[flipTable[i]] = i
}
</script>
</head>
<body linkifytime=”0″ linkified=”0″ linkifying=”false”>
<h1>How to create inverted text </h1>
<form name=”f”>
Real Text: <br>
<textarea rows=”6″ cols=”50″ name=”original” onKeyUp=”flip()”></textarea>
<br>
Inverted Text: <br>
<textarea rows=”6″ cols=”50″ name=”flipped”></textarea>
</form>
Powered by <a href=”http://www.howtoarchives.com/”>”How To” Collection</a>
</body>
</html>
<!– Script End –>







that is cool. i will try that inverted letters in my comments in facebook
its not working..please try again..