Created
November 28, 2016 01:49
-
-
Save Andrews54757/cab20e450cd81efb4e5459042f3d0ed4 to your computer and use it in GitHub Desktop.
ANSI code getter
This file contains 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
var stdin = process.stdin; | |
stdin.setRawMode(true); | |
stdin.resume() | |
stdin.setEncoding('utf8'); | |
stdin.on('data',function(key) { | |
console.log(toUnicode(key)); | |
if (key == '\u0003') { process.exit(); } | |
}) | |
function toUnicode(theString) { | |
var unicodeString = ''; | |
for (var i=0; i < theString.length; i++) { | |
var theUnicode = theString.charCodeAt(i).toString(16).toUpperCase(); | |
while (theUnicode.length < 4) { | |
theUnicode = '0' + theUnicode; | |
} | |
theUnicode = '\\u' + theUnicode; | |
unicodeString += theUnicode; | |
} | |
return unicodeString; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment