StringCodeFrom - method of the Pm object
Description:
Returns the character associated with the specified
Unicode code (or with entered code
ASCII, if the code is less than 128)
Syntax:
String StringCodeFrom(Long nCode)
Parameters:
nCode | (Long) Number of Unicode code that identifies a character. Range from 0 to 65535. |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var s = Pm.StringCodeFrom(65);
// Returns A
s = Pm.StringCodeFrom(97);
// Returns a
s = Pm.StringCodeFrom(62);
// Returns >
s = Pm.StringCodeFrom(34);
// Returns "
Dim s
s = Pm.StringCodeFrom(65)
' Returns A
s = Pm.StringCodeFrom(97)
' Returns a
s = Pm.StringCodeFrom(62)
' Returns >
s = Pm.StringCodeFrom(34)
' Returns "