toUnicode static method

String toUnicode(
  1. int? charCode
)

Returns an Unicode representation of the character code.

If charCode is null then an empty String is returned.

Example:

    print(toUnicode(48));
    => \u0030

Implementation

static String toUnicode(int? charCode) => Transform.toUnicode(charCode);