Converts a Number
to a String
with its hexadecimal value.
hex()
converts a number to a string with its hexadecimal number value. Hexadecimal (hex) numbers are base-16, which means there are 16 unique digits. Hex extends the numbers 0–9 with the letters A–F. For example, the number 11
(eleven) in base-10 is written as the letter B
in hex.
The first parameter, n
, is the number to convert. For example, hex(20)
, returns the string '00000014'
. If an array is passed, as in hex([1, 10, 100])
, an array of hexadecimal strings is returned.
The second parameter, digits
, is optional. If a number is passed, as in hex(20, 2)
, it sets the number of hexadecimal digits to display. For example, calling hex(20, 2)
returns the string '14'
.
उदाहरण
सिंटैक्स
hex(n, [digits])
hex(ns, [digits])
पैरामीटर्स
value to convert.
number of digits to include.
values to convert.
Returns
संबंधित संदर्भ
boolean
किसी संख्या या स्ट्रिंग को उसके बूलियन प्रतिनिधित्व में परिवर्तित करता है। किसी संख्या के लिए, कोई भी गैर-शून्य मान (सकारात्मक या नकारात्मक) सत्य का मूल्यांकन करता है, जबकि शून्य का मूल्यांकन गलत होता है। एक स्ट्रिंग के लिए, "सही" मान सत्य का मूल्यांकन करता है, जबकि कोई अन्य मान गलत का मूल्यांकन करता है। जब संख्या या स्ट्रिंग मानों की एक सरणी पास की जाती है, तो समान लंबाई के बूलियन की एक सरणी वापस आ जाती है। .
byte
Converts a Boolean, String, or Number to its byte value.
char
Converts a Number or String to a single-character String.
float
Converts a String to a floating point (decimal) Number.