Skip to content

Instantly share code, notes, and snippets.

@masapico
Created May 24, 2012 02:16
Show Gist options
  • Select an option

  • Save masapico/2779054 to your computer and use it in GitHub Desktop.

Select an option

Save masapico/2779054 to your computer and use it in GitHub Desktop.
JavaScript unicode codepoint....
var util = require("util");
util.puts("\u0041"); // "A"
var codePoint = "A".charCodeAt(0);
util.puts(codePoint.toString(16)); // "41"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment