Web Functions
Decodes & Encodes URLs. Returns Data from XML Content. Converting RGB to HEX and Back.
- CONTRAST_COLOR_HEX
Returns contrast color by given HEX color code
CONTRAST_COLOR_HEX("#48a868")Try this examplecolor (string)HEX color code - CONTRAST_COLOR_RGB
Returns contrast color by given RGB
CONTRAST_COLOR_RGB(10,20,30)Try this examplered (number)Number of red 0-255green (number)Number of green 0-255 - DECODEURI
Decodes URL-encoded string
DECODEURI("my=apples&are=green+and+red")Try this examplestr (string)The URI to be decoded - DECODEURL
Decodes URL-encoded string
DECODEURL("my=apples&are=green+and+red")Try this examplestr (string)The string to be decoded. - ENCODEURI
URL-encodes string
ENCODEURI("my=apples&are=green and red")Try this examplestr (string)The URI to be encoded. - ENCODEURL
URL-encodes string
ENCODEURL("my=apples&are=green and red")Try this examplestr (string)The string to be encoded. - HEX_TO_RGB
Transforms HEX color code to RGB. (#ffffff = 255,255,255)
HEX_TO_RGB("#ffffff")Try this examplehex (string)Hex color code, starting with #, length 6 characters - HTTP_NAME_TO_STATUS_CODE
Returns HTTP status code by name
HTTP_NAME_TO_STATUS_CODE("OK")Try this examplename (string)Status code name, e.g "OK", "Forbidden" etc - HTTP_STATUS_CODE_NAME
Returns HTTP status code name by code
HTTP_STATUS_CODE_NAME(200)Try this examplecode (number)Status code, e.g. 403, 200 etc - HYPERLINK
Creates a hyperlink in HTML format
HYPERLINK("https://antify.app/","Antify")Try this exampleurl (string)The full URL of the link location enclosed in quotation marks, or a variable containing such a URL.link_label (string)Optional - url by default - The text to display in the link - KEYCODE_BY_NAME
Returns JavaScript Key Code number by keyboard key name
KEYCODE_BY_NAME("space")Try this examplename (string)Keyboard key name - KEYCODE_TO_NAME
Returns keyboard key name by JavaScript Key Code number
KEYCODE_TO_NAME(9)Try this examplekeycode (number)JS keycode number - RAWURLDECODE
Decode URL-encoded strings
RAWURLDECODE("foo%20bar%40baz")Try this examplestr (string)The URL to be decoded. - RAWURLENCODE
URL-encode according to RFC 3986
RAWURLENCODE("foo @+%/")Try this examplestr (string)The URL to be encoded. - RGB_TO_HEX
Transforms RGB color to HEX. (255,255,255 = #ffffff)
RGB_TO_HEX(255,255,255)Try this examplered (number)Number of red 0-255green (number)Number of green 0-255 - URLDECODE
Decodes URL-encoded string
URLDECODE("my=apples&are=green+and+red")Try this examplestr (string)The string to be decoded. - URLENCODE
URL-encodes string
URLENCODE("my=apples&are=green and red")Try this examplestr (string)The string to be encoded.