Collections:
HEX() - Calculate HEX representation
How to calculate the hexadecimal representation of a given string or integer using the HEX() function?
✍: FYIcenter.com
HEX(in) is a MySQL built-in function that
calculates the hexadecimal representation of a given string or integer.
For example:
SELECT HEX('FYI'), HEX(255);
-- +------------+----------+
-- | HEX('FYI') | HEX(255) |
-- +------------+----------+
-- | 465949 | FF |
-- +------------+----------+
Reference information of the HEX() function:
HEX(in): hex For a string argument, HEX() returns a hexadecimal string representation where each byte of each character in input string is converted to two hexadecimal digits. For a numeric argument, HEX() returns a hexadecimal string representation of the input treated as a longlong (BIGINT) number. This is equivalent to CONV(in, 10, 16) Arguments, return value and availability: in: Required. The input string or integer. hex: Return value. The hexadecimal string representation of the input. Available since MySQL 5.7.
Related MySQL functions:
⇒ INSERT() - Insert and Replace Substring
⇐ FROM_BASE64() - Base64 Decoding
2023-11-13, 1339🔥, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Get a List of All Tables with "sys.tables" View in SQL Server? If you want to see the table y...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...