num2swu function

String num2swu(
  1. int num
)

Implementation

String num2swu(int num) {
  return String.fromCharCode(num - 250 + 0x1D80C);
}