Skip to content

fromCharCode

fromCharCode(code) → string · String

Create a string from a Unicode character code (code point).

  • code (required): integer code point
utlx
fromCharCode(65)                         // "A"
fromCharCode(8364)                       // "€"
{
  char: fromCharCode($input.code)
}

Released under AGPL-3.0.